/* ============================================================
   STUDIO HANABI — gallery editorial storefront
   Crafted by Root to Peak Studio
   ============================================================ */

:root {
  --paper: #F6F1E7;
  --card: #FBF8F2;
  --mat: #FDFBF6;
  --ink: #1B1814;
  --ink-2: #6E675C;
  --verm: #D93A2B;
  --verm-deep: #B32718;
  --gold: #B98A2F;
  --line: rgba(27, 24, 20, 0.16);
  --line-soft: rgba(27, 24, 20, 0.09);
  --frame: #C8BDA5;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Shippori Mincho", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Yu Gothic", sans-serif;
  --wrap: 1320px;
  --gut: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--verm); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--verm);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}

/* ---------- typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--verm);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--plain::before { display: none; }

.v-eyebrow {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* section head: eyebrow + headline left, lede right */
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 28px clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-head h2 {
  font-size: clamp(30px, 4.2vw, 54px);
  margin-top: 18px;
}
.sec-head .lede {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 42ch;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
}

.gold-rule { border: 0; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(185,138,47,0.15)); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.35s var(--spring), color 0.35s var(--spring), border-color 0.35s var(--spring), transform 0.35s var(--spring);
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn--verm {
  background: var(--verm);
  border-color: var(--verm);
  color: #FDF8F0;
}
.btn--verm:hover { background: var(--verm-deep); border-color: var(--verm-deep); color: #FDF8F0; }

.btn--bare {
  border: 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  width: 100%;
  justify-content: space-between;
  background: transparent;
}
.btn--bare:hover { background: transparent; color: var(--verm); transform: none; }
.btn--bare .arr { transition: transform 0.3s var(--spring); }
.btn--bare:hover .arr { transform: translateX(6px); }

/* ---------- seal mark ---------- */

.seal {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-head .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand .seal { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--ink-2);
}

.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.site-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--spring), border-color 0.3s var(--spring);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] {
  color: var(--verm);
  border-bottom-color: var(--verm);
}

.head-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.3s var(--spring), color 0.3s var(--spring);
}
.cart-btn:hover { background: var(--ink); color: var(--paper); }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--verm);
  color: #FDF8F0;
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 2px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-btn span { width: 18px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(94vh, 980px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media video,
.hero-media .hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media .hero-art {
  transform-origin: 60% 40%;
  animation: kenburns 36s var(--ease) infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.16) translate(-2.5%, 2%); }
}
/* when a real hero.mp4 is present + playing, JS adds .hero--video */
.hero--video .hero-art { opacity: 0; transition: opacity 1.4s var(--ease); }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(12deg, rgba(246,241,231,0.5) 0%, rgba(246,241,231,0.2) 30%, rgba(246,241,231,0) 55%),
    linear-gradient(180deg, rgba(246,241,231,0.3) 0%, rgba(246,241,231,0) 22%);
}

.hero-inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  padding-top: clamp(120px, 18vh, 220px);
  padding-bottom: clamp(48px, 8vh, 96px);
}
.hero .v-eyebrow { padding-bottom: 10px; }

.hero-copy {
  max-width: 500px;
  padding: clamp(26px, 3vw, 42px) clamp(24px, 3vw, 44px);
  background: linear-gradient(100deg,
    rgba(246, 241, 231, 0.94) 0%,
    rgba(246, 241, 231, 0.86) 62%,
    rgba(246, 241, 231, 0.55) 100%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(185, 138, 47, 0.4);
  border-left: 2px solid var(--verm);
  border-radius: 2px;
}
.hero-copy h1 {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.14;
  margin: 14px 0 14px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--verm);
}
.hero-copy .lede {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 36ch;
  margin-bottom: 26px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-plate {
  position: absolute;
  right: var(--gut);
  bottom: clamp(48px, 8vh, 96px);
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.92);
  text-shadow: 0 1px 10px rgba(27, 24, 20, 0.55);
  line-height: 2;
  border-right: 2px solid var(--verm);
  padding-right: 14px;
}

/* ---------- matted frame ---------- */

.frame {
  background: var(--mat);
  border: 1px solid var(--frame);
  padding: clamp(16px, 8%, 40px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 44px -24px rgba(27, 24, 20, 0.38),
    0 6px 14px -8px rgba(27, 24, 20, 0.22);
  transition: transform 0.5s var(--spring), box-shadow 0.5s var(--spring);
}
.frame-mat {
  box-shadow:
    inset 0 0 0 1px rgba(27, 24, 20, 0.12),
    inset 0 2px 6px rgba(27, 24, 20, 0.16);
}
.frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.frame--wide img { aspect-ratio: 8 / 5; }

a:hover > .frame,
.card:hover .frame {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 40px 64px -28px rgba(27, 24, 20, 0.44),
    0 10px 20px -10px rgba(27, 24, 20, 0.25);
}

/* gallery plate label */
.plate {
  margin-top: 22px;
  border-top: 1px solid var(--gold);
  padding-top: 14px;
}
.plate-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.plate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.plate-meta .price { color: var(--ink); }

/* ---------- featured collection (index) ---------- */

.featured { padding: clamp(80px, 11vw, 150px) 0 clamp(40px, 6vw, 80px); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.feat-a { grid-column: 1 / span 5; }
.feat-b { grid-column: 7 / span 6; margin-top: clamp(60px, 8vw, 130px); }
.feat-c { grid-column: 2 / span 4; margin-top: clamp(-40px, -3vw, -20px); }
.feat-d { grid-column: 8 / span 4; margin-top: clamp(30px, 4vw, 70px); }
.card { position: relative; }
.card > a { display: block; }
.card .btn--bare { margin-top: 12px; }

/* ---------- series band ---------- */

.series { padding: clamp(70px, 10vw, 130px) 0; }
.series-band {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 380px;
}
.series-cell {
  position: relative;
  padding: clamp(36px, 4vw, 64px) clamp(24px, 3vw, 48px);
  border-left: 1px solid rgba(246, 241, 231, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  transition: background 0.45s var(--ease);
}
.series-cell:first-child { border-left: 0; }
.series-cell:hover { background: rgba(246, 241, 231, 0.05); }
.series-cell .num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.3em;
}
.series-cell h3 { font-size: clamp(24px, 2.4vw, 34px); margin: 14px 0 12px; }
.series-cell p { color: rgba(246, 241, 231, 0.62); font-size: 14px; max-width: 34ch; }
.series-cell .count {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.5);
}
.series-cell .go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  border-top: 1px solid rgba(246, 241, 231, 0.25);
  padding-top: 16px;
}
.series-cell .go .arr { color: var(--verm); transition: transform 0.3s var(--spring); }
.series-cell:hover .go .arr { transform: translateX(6px); }

/* ---------- artist statement ---------- */

.artist { padding: clamp(80px, 11vw, 150px) 0; }
.artist-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.artist-portrait { position: relative; max-width: 440px; }
.artist-portrait .seal-float {
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: 56px;
  height: 56px;
  box-shadow: 0 10px 24px -10px rgba(27, 24, 20, 0.4);
}
.artist-copy blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.5;
  margin: 22px 0 26px;
}
.artist-copy blockquote strong { color: var(--verm); font-weight: 600; }
.artist-copy p { color: var(--ink-2); font-size: 15px; max-width: 56ch; }
.artist-sig {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.artist-sig .name { font-family: var(--serif); font-size: 18px; }
.artist-sig .role {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ---------- process ---------- */

.process { padding: 0 0 clamp(80px, 11vw, 150px); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.step {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold);
  padding: clamp(24px, 2.6vw, 38px);
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--spring);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -26px rgba(27, 24, 20, 0.35);
}
.step .k {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--verm);
  letter-spacing: 0.2em;
}
.step h3 { font-size: 21px; margin: 12px 0 10px; }
.step p { font-size: 13.5px; color: var(--ink-2); }
.step .plate-meta { margin-top: 18px; border-top: 1px solid var(--line-soft); padding-top: 12px; }

/* ---------- press ---------- */

.press {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--card);
  padding: clamp(50px, 7vw, 90px) 0;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}
.quote blockquote::before { content: "\201C"; color: var(--verm); margin-right: 2px; }
.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ---------- email band ---------- */

.email-band {
  background: var(--verm);
  color: #FDF8F0;
  padding: clamp(60px, 8vw, 110px) 0;
}
.email-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.email-band .eyebrow { color: #FDF8F0; }
.email-band .eyebrow::before { background: rgba(253, 248, 240, 0.5); }
.email-band h2 { font-size: clamp(28px, 3.6vw, 46px); margin-top: 16px; }
.email-band p { color: rgba(253, 248, 240, 0.8); font-size: 14px; margin-top: 14px; max-width: 44ch; }
.email-form { display: flex; flex-wrap: wrap; gap: 0; }
.email-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid rgba(253, 248, 240, 0.55);
  border-right: 0;
  border-radius: 2px 0 0 2px;
  padding: 16px 18px;
  color: #FDF8F0;
  font-family: var(--sans);
  font-size: 14px;
}
.email-form input::placeholder { color: rgba(253, 248, 240, 0.6); }
.email-form button {
  border-radius: 0 2px 2px 0;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  padding: 16px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s var(--spring);
}
.email-form button:hover { background: #000; }
.email-note { font-size: 11px; margin-top: 12px; color: rgba(253, 248, 240, 0.65); }

/* ---------- footer ---------- */

.site-foot {
  background: var(--ink);
  color: rgba(246, 241, 231, 0.72);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr));
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(246, 241, 231, 0.14);
}
.site-foot .brand-name { color: var(--paper); }
.site-foot .brand-name small { color: rgba(246, 241, 231, 0.5); }
.foot-blurb { font-size: 13px; margin-top: 18px; max-width: 34ch; }
.foot-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { font-size: 13px; transition: color 0.3s var(--spring); }
.foot-col a:hover { color: var(--paper); }
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 28px;
  font-size: 11.5px;
  color: rgba(246, 241, 231, 0.5);
}
.foot-legal a { color: rgba(246, 241, 231, 0.8); border-bottom: 1px solid var(--gold); }
.foot-legal a:hover { color: var(--paper); }

/* ---------- shop page ---------- */

.page-head { padding: clamp(60px, 8vw, 110px) 0 clamp(30px, 4vw, 56px); }
.page-head h1 { font-size: clamp(36px, 5.4vw, 72px); margin-top: 18px; }
.page-head .lede { color: var(--ink-2); max-width: 56ch; margin-top: 16px; font-size: 15px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.filter-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-right: 6px;
}
.chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.3s var(--spring), border-color 0.3s var(--spring), background 0.3s var(--spring);
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip[aria-pressed="true"] {
  color: var(--verm);
  border-color: var(--verm);
  background: rgba(217, 58, 43, 0.06);
}
.filter-count { margin-left: auto; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4.5vw, 64px) clamp(24px, 3.5vw, 48px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.shop-grid .card:nth-child(3n+2) { transform: translateY(clamp(20px, 3vw, 44px)); }

.empty-note {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--ink-2);
  font-family: var(--serif);
  font-size: 20px;
}

/* ---------- product page ---------- */

.crumbs {
  padding: 26px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.crumbs li + li::before { content: "\2044"; margin-right: 10px; color: var(--gold); }
.crumbs a:hover { color: var(--verm); }

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(36px, 5vw, 70px) 0 clamp(80px, 10vw, 140px);
  align-items: start;
}
.pdp-visual { position: sticky; top: 110px; }
.pdp-visual .wall {
  background:
    linear-gradient(180deg, rgba(27,24,20,0.05), rgba(27,24,20,0) 32%),
    var(--card);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 5vw, 72px);
}
.pdp-visual .frame { max-width: 520px; margin: 0 auto; }
.pdp-plate {
  max-width: 520px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  border-top: 1px solid var(--gold);
  padding-top: 14px;
}

.pdp-info .series-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--verm);
}
.pdp-info h1 { font-size: clamp(32px, 4vw, 52px); margin: 14px 0 8px; }
.pdp-info .edition {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pdp-price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  margin: 22px 0 6px;
}
.pdp-price small { font-size: 13px; font-family: var(--sans); color: var(--ink-2); font-weight: 400; letter-spacing: 0.08em; }
.pdp-desc { color: var(--ink-2); font-size: 15px; margin: 18px 0 28px; max-width: 54ch; }

.variants { margin-bottom: 28px; }
.variants legend, .variants .filter-label { margin-bottom: 12px; display: block; }
.variants fieldset { border: 0; }
.size-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.size-opt {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 18px;
  background: transparent;
  text-align: left;
  transition: border-color 0.3s var(--spring), background 0.3s var(--spring);
}
.size-opt:hover { border-color: var(--ink); }
.size-opt[aria-pressed="true"] {
  border-color: var(--verm);
  background: rgba(217, 58, 43, 0.06);
}
.size-opt .s {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.size-opt .p { display: block; font-size: 12px; color: var(--ink-2); margin-top: 3px; }
.size-opt[aria-pressed="true"] .s { color: var(--verm); }

.pdp-buy { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.pdp-buy .btn { flex: 1 1 240px; }
.pdp-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  margin-bottom: 34px;
}

.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-top: 14px; }
.spec-table caption {
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.spec-table th {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  width: 42%;
}

.related { padding-bottom: clamp(80px, 10vw, 140px); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
}

/* ---------- cart drawer ---------- */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27, 24, 20, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 90;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(430px, 94vw);
  background: var(--paper);
  border-left: 1px solid var(--gold);
  z-index: 100;
  clip-path: inset(0 0 0 100%);
  visibility: hidden;
  transition: clip-path 0.5s var(--ease), visibility 0s linear 0.5s;
  display: flex;
  flex-direction: column;
}
.drawer.open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path 0.5s var(--ease);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 20px; letter-spacing: 0.1em; text-transform: uppercase; }
.drawer-close {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  width: 38px;
  height: 38px;
  font-size: 16px;
  line-height: 1;
  color: var(--ink);
  transition: border-color 0.3s var(--spring), color 0.3s var(--spring);
}
.drawer-close:hover { border-color: var(--verm); color: var(--verm); }

.drawer-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.cart-line .thumb {
  background: var(--mat);
  border: 1px solid var(--frame);
  padding: 7px;
}
.cart-line .thumb img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.cart-line .t { font-family: var(--serif); font-size: 15px; line-height: 1.35; }
.cart-line .m { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-top: 3px; }
.qty-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  color: var(--ink);
  transition: border-color 0.25s var(--spring), color 0.25s var(--spring);
}
.qty-btn:hover { border-color: var(--verm); color: var(--verm); }
.qty-num { min-width: 18px; text-align: center; font-size: 13px; font-weight: 700; }
.line-right { text-align: right; display: grid; gap: 8px; justify-items: end; }
.line-price { font-family: var(--serif); font-size: 16px; }
.line-remove {
  background: transparent;
  border: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 0 0 2px;
  transition: color 0.25s var(--spring), border-color 0.25s var(--spring);
}
.line-remove:hover { color: var(--verm); border-color: var(--verm); }

.cart-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--ink-2);
}
.cart-empty .serif { font-size: 22px; display: block; margin-bottom: 10px; color: var(--ink); }

.drawer-foot { border-top: 1px solid var(--line); padding: 22px 26px 26px; }
.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.subtotal-row .l { font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-2); }
.subtotal-row .v { font-family: var(--serif); font-size: 26px; }
.drawer-foot .note { font-size: 11px; color: var(--ink-2); margin-bottom: 16px; }
.drawer-foot .btn { width: 100%; }

/* ---------- demo modal ---------- */

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(27, 24, 20, 0.55);
}
.demo-modal.open { display: flex; }
.demo-card {
  background: var(--paper);
  border: 1px solid var(--gold);
  max-width: 460px;
  width: 100%;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
}
.demo-card .seal { margin: 0 auto 20px; width: 52px; height: 52px; }
.demo-card h2 { font-size: 26px; margin-bottom: 14px; }
.demo-card p { color: var(--ink-2); font-size: 14px; margin-bottom: 10px; }
.demo-card .sig { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--verm); margin: 18px 0 24px; }
.demo-card .btn { width: 100%; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 26px;
  border-radius: 2px;
  border-left: 3px solid var(--verm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 130;
  visibility: hidden;
  transition: transform 0.5s var(--spring), visibility 0s linear 0.5s;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.show {
  transform: translate(-50%, 0);
  visibility: visible;
  transition: transform 0.5s var(--spring);
}

/* ---------- reveals ---------- */

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .feat-a { grid-column: 1 / span 6; }
  .feat-b { grid-column: 7 / span 6; margin-top: 80px; }
  .feat-c { grid-column: 1 / span 6; margin-top: 0; }
  .feat-d { grid-column: 7 / span 6; margin-top: 50px; }
  .shop-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid .card:nth-child(3n+2) { transform: none; }
  .shop-grid .card:nth-child(2n) { transform: translateY(clamp(20px, 3vw, 40px)); }
  .pdp { grid-template-columns: 1fr; }
  .pdp-visual { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr; gap: 34px; }
  .series-grid { grid-template-columns: 1fr; }
  .series-cell { border-left: 0; border-top: 1px solid rgba(246, 241, 231, 0.14); }
  .series-cell:first-child { border-top: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-btn { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 86vw);
    background: var(--paper);
    border-left: 1px solid var(--gold);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 110px 34px 40px;
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    transition: clip-path 0.45s var(--ease), visibility 0s linear 0.45s;
    z-index: 70;
    box-shadow: -30px 0 60px -30px rgba(27, 24, 20, 0.4);
  }
  .site-nav.open {
    clip-path: inset(0 0 0 0);
    visibility: visible;
    transition: clip-path 0.45s var(--ease);
  }
  .site-nav a { font-size: 15px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .cart-btn .cart-label { display: none; }
  .cart-btn { padding: 10px 12px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero .v-eyebrow { writing-mode: horizontal-tb; letter-spacing: 0.32em; }
  .hero-plate { display: none; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(246,241,231,0.4) 0%, rgba(246,241,231,0.12) 45%, rgba(246,241,231,0.5) 100%);
  }
  .hero-copy { padding: 24px 22px; }

  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .sec-head .lede { border-bottom: 0; border-top: 1px solid var(--gold); padding: 12px 0 0; }

  .feat-grid { grid-template-columns: 1fr; gap: 44px; }
  .feat-a, .feat-b, .feat-c, .feat-d { grid-column: 1 / -1; margin-top: 0; }

  .artist-grid { grid-template-columns: 1fr; }
  .artist-portrait { max-width: 340px; }
  .process-grid { grid-template-columns: 1fr; }
  .shop-grid, .related-grid { grid-template-columns: 1fr; }
  .shop-grid .card:nth-child(2n) { transform: none; }
  .email-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; gap: 12px; }
  .email-form input { border-right: 1px solid rgba(253, 248, 240, 0.55); border-radius: 2px; }
  .email-form button { border-radius: 2px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .filters { gap: 14px; }
  .filter-count { margin-left: 0; width: 100%; }
}

/* ---------- mobile hero: stacked film band + copy below ---------- */

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    display: block;
  }
  /* video becomes a wide band in normal flow at the top */
  .hero-media {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 9;
    
    border-bottom: 1px solid var(--gold);
  }
  /* soft ivory seam blending the film into the page ground */
  .hero-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 24%;
    background: linear-gradient(180deg, rgba(246, 241, 231, 0) 0%, rgba(246, 241, 231, 0.45) 100%);
    pointer-events: none;
  }
  .hero-scrim { display: none; }
  /* copy sits below the film on the solid ivory ground */
  .hero-inner {
    padding-top: 34px;
    padding-bottom: 48px;
    gap: 18px;
  }
  .hero .v-eyebrow { padding-bottom: 0; }
  .hero-copy {
    max-width: none;
    padding: 4px 0 4px 20px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    border-left: 2px solid var(--verm);
    border-radius: 0;
  }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media .hero-art { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
