/* ==========================================================================
   拾印 SHĪYÌN — Dark Luxury Stylesheet
   Coal-black & brushed brass. Cormorant + Noto Serif SC. Roman numerals.
   Slow ease curves. Centered editorial. Maison brand book typography.
   ========================================================================== */

:root {
  /* ----- canvas ----- */
  --bg:           #161310;
  --bg-2:         #1c1814;
  --bg-3:         #231e18;
  --bg-spot:      #2a2418;
  --bg-paper:     #f4ede0;          /* used very rarely, e.g. plaque */

  /* ----- ink ----- */
  --text:         #d6cdba;
  --text-bright:  #f0e8d2;
  --text-dim:     #998d72;
  --text-faint:   #5a533f;

  /* ----- brass family (single accent) ----- */
  --gold:         #c9a961;
  --gold-bright:  #e3c483;
  --gold-deep:    #8b7340;
  --gold-glow:    rgba(201, 169, 97, 0.18);

  /* ----- rules ----- */
  --rule:         rgba(201, 169, 97, 0.13);
  --rule-strong:  rgba(201, 169, 97, 0.32);
  --rule-bright:  rgba(227, 196, 131, 0.5);

  /* ----- type ----- */
  --serif:  'Cormorant Garamond', 'Noto Serif SC', 'Songti SC', 'STSong', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  --mono:   'JetBrains Mono', 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace;

  /* ----- timing ----- */
  --ease-out:   cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --wrap: 1320px;

  /* ----- legacy aliases for inline styles in shop/product/order ----- */
  --ink:          var(--text-bright);
  --ink-2:        var(--text);
  --ink-3:        var(--text-dim);
  --paper:        var(--bg);
  --paper-2:      var(--bg-2);
  --paper-3:      var(--bg-3);
  --mute:         var(--text-dim);
  --accent:       var(--gold);
  --accent-deep:  var(--gold-deep);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
dl, dt, dd { margin: 0; padding: 0; }

/* ----- base ----- */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  font-feature-settings: "liga" 1, "calt" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  /* faint warm vignette */
  background-image:
    radial-gradient(ellipse at top, rgba(201, 169, 97, 0.04), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(201, 169, 97, 0.03), transparent 50%);
}

::selection { background: var(--gold); color: var(--bg); }
::-moz-selection { background: var(--gold); color: var(--bg); }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border: 3px solid var(--bg-2); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--bg); padding: 8px 16px; z-index: 99999;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 36px;
}
.hairline { height: 1px; background: var(--rule); }

/* tabular numerals where numbers belong */
.kicker, .issue-bar, .colophon, .price, .feature__no, .section-head__num,
.foot__bottom, .feature__foot, .stock, .price-old, .lookup__hint code {
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   MASTHEAD
   ========================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 19, 16, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
}
.masthead__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 22px 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}
.brand__seal {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  letter-spacing: 0;
  transition: all 0.6s var(--ease-out);
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.brand:hover .brand__seal {
  box-shadow: 0 0 0 4px var(--gold-glow);
  background: rgba(201, 169, 97, 0.06);
}
.brand__word {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand__word strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text-bright);
  font-style: italic;
}
.brand__word em {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.primary-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-self: center;
}
.primary-nav a {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 8px 0;
  transition: color 0.5s var(--ease-out);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 2px;
  height: 1px; background: var(--gold);
  transition: left .55s var(--ease-out), right .55s var(--ease-out);
}
.primary-nav a:hover { color: var(--gold-bright); }
.primary-nav a:hover::after { left: 0; right: 0; }

.masthead__aux {
  display: flex; gap: 22px; align-items: center; justify-self: end;
}
.aux-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 0;
  transition: color 0.4s ease;
}
.aux-link:hover { color: var(--gold); }
.aux-link__lab { font-size: 11px; letter-spacing: .22em; }
.aux-arrow { font-family: var(--serif); font-size: 14px; font-style: italic; transition: transform .4s var(--ease-out); }
.aux-link:hover .aux-arrow { transform: translateX(3px); }

.aux-link--strong {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 11px 20px;
  letter-spacing: 0.22em;
  font-size: 11px;
  transition: all .55s var(--ease-out);
}
.aux-link--strong:hover {
  background: var(--gold);
  color: var(--bg);
  letter-spacing: 0.28em;
  box-shadow: 0 0 24px var(--gold-glow);
}

/* ==========================================================================
   ISSUE BAR (Reference plate)
   ========================================================================== */
.issue-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}
.issue-bar__row {
  display: flex;
  justify-content: center;
  gap: 56px;
  align-items: center;
  padding: 14px 36px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.issue-bar__cell {
  display: inline-flex; align-items: baseline; gap: 8px;
  position: relative;
}
.issue-bar__cell:not(:last-child)::after {
  content: "◆";
  position: absolute;
  right: -32px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 6px;
}
.issue-bar__cell em {
  font-style: italic;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--text);
  text-transform: none;
}
.issue-bar__cell b { color: var(--gold); font-weight: 500; }
.issue-bar__cell--end { color: var(--gold); }

/* ==========================================================================
   COVER (Maison cover)
   ========================================================================== */
.cover {
  padding: 120px 0 96px;
  position: relative;
  text-align: left;
}
.cover__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 0 32px;
  align-items: start;
}
.cover__copy { grid-column: 1 / span 8; padding-right: 40px; }
.cover__note { grid-column: 9 / span 4; padding-top: 32px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 36px 0;
}
.kicker__rule {
  width: 64px; height: 1px; background: var(--gold); display: inline-block;
}

.cover__head {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 44px 0;
  color: var(--text-bright);
}
.cover__head .ink {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 30px var(--gold-glow);
}
.cover__head .ink::after { display: none; }
.cover__head br + .ink { margin-left: 0; }

.cover__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  max-width: 56ch;
  margin: 0 0 48px 0;
  letter-spacing: 0.005em;
}
.dropcap {
  float: left;
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  font-size: 88px;
  line-height: 0.8;
  margin: 8px 14px 0 0;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.cover__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.6s var(--ease-out);
  cursor: pointer;
}
.btn__arrow { font-family: var(--serif); font-size: 16px; font-style: italic; transition: transform .55s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  letter-spacing: 0.38em;
  box-shadow: 0 0 30px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-bright);
  border-color: var(--rule-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  letter-spacing: 0.38em;
}

/* ----- cover index list (栏目索引) ----- */
.cover__index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.cover__index li {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-bright);
  position: relative;
  transition: color .5s var(--ease-out);
}
.cover__index li:last-child { border-right: 0; padding-right: 0; }
.cover__index li:not(:first-child) { padding-left: 22px; }
.cover__index li:hover { color: var(--gold); }
.cover__index li span {
  font-family: var(--sans);
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}
.cover__index li em {
  font-style: italic;
  font-family: var(--serif);
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0;
  margin-top: 6px;
}

/* ----- editor's note card ----- */
.card-note {
  position: relative;
  border-top: 1px solid var(--gold);
  padding: 28px 0 28px;
}
.card-note::before {
  content: "◆";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 12px;
  font-size: 11px;
  color: var(--gold);
}
.card-note[data-term]::before { content: "◆"; }

.card-note__lab {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px 0;
  text-align: center;
}
.card-note__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 26px 0;
  font-weight: 400;
  color: var(--text-bright);
  text-align: center;
}
.card-note p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 14px 0;
}
.card-note p em { color: var(--gold); font-style: italic; font-weight: 500; }
.card-note__sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 22px !important;
  text-align: center;
}
.card-note__seal {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 96px; height: 96px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  background: rgba(201, 169, 97, 0.04);
  transition: all .8s var(--ease-out);
}
.card-note:hover .card-note__seal {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 0 30px var(--gold-glow);
}
.card-note__seal span:first-child { font-size: 22px; letter-spacing: 0.18em; font-style: italic; }
.card-note__seal span:last-child {
  font-family: var(--sans);
  font-style: normal;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  margin-top: 3px;
  color: var(--gold);
}

/* ==========================================================================
   STRIP (Categories)
   ========================================================================== */
.strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}
.strip__list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.strip__list li {
  border-right: 1px solid var(--rule);
}
.strip__list li:last-child { border-right: 0; }
.strip__list a {
  display: flex; align-items: baseline; justify-content: center;
  gap: 12px;
  padding: 28px 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text-bright);
  transition: all .5s var(--ease-out);
}
.strip__list a i {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.strip__list a:hover { color: var(--gold); background: rgba(201, 169, 97, 0.04); }

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  padding: 120px 0 40px;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 56px;
  position: relative;
}
.section-head__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 100px;
  line-height: 0.85;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  align-self: end;
  color: var(--text-bright);
}
.section-head__sub {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
  align-self: end;
  padding-bottom: 10px;
  position: absolute;
  left: 280px;
  bottom: 18px;
}
.section-head__more {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  align-self: end;
  margin-bottom: 18px;
  transition: color .4s ease, transform .4s var(--ease-out);
  position: relative;
  padding-bottom: 4px;
}
.section-head__more::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px; background: var(--gold);
  transform-origin: right;
  transition: transform .55s var(--ease-out);
}
.section-head__more:hover { color: var(--gold-bright); transform: translateX(3px); }

/* ==========================================================================
   FEATURED GRID — atelier lineup
   ========================================================================== */
.featured { padding-bottom: 96px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
}
.feature-grid > .feature--lead {
  grid-column: span 3;
  grid-row: span 2;
  border-right: 1px solid var(--rule);
  padding-right: 36px;
}
.feature-grid > .feature:not(.feature--lead) {
  grid-column: span 2;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature-grid > .feature:nth-last-child(-n+3) { border-bottom: 0; }
.feature-grid > .feature:last-child { border-right: 0; }
.feature-grid > .feature:nth-child(4) { border-right: 1px solid var(--rule); }

.feature {
  padding: 32px 32px;
  position: relative;
  cursor: pointer;
  transition: background .8s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.feature:first-child { padding-left: 0; }
.feature:hover { background: var(--bg-2); }

.feature__no {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: inline-block;
}
.feature__cat {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 16px 0;
}
.feature__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px 0;
  color: var(--text-bright);
}
.feature--lead .feature__title { font-size: 56px; line-height: 1.05; margin-bottom: 24px; }
.feature__title em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.4em;
  color: var(--gold);
  letter-spacing: 0.32em;
  margin-top: 12px;
  text-transform: uppercase;
}
.feature--lead .feature__title em { font-size: 0.22em; margin-top: 18px; }

.feature__desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 28px 0;
  flex: 1;
  font-style: italic;
}
.feature--lead .feature__desc { font-size: 18px; max-width: 50ch; }

.feature__foot {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.price {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--serif);
  color: var(--gold);
}
.price i { font-style: italic; font-size: 14px; color: var(--text-dim); margin-right: 2px; }
.price b { font-weight: 500; font-size: 32px; line-height: 1; letter-spacing: -0.01em; }
.price em { font-style: italic; font-size: 13px; color: var(--text-dim); margin-left: 4px; }
.feature--lead .price b { font-size: 44px; }

.price-old {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.stock {
  margin-left: auto;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.feature__link {
  display: inline-flex; gap: 8px; align-items: baseline;
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  align-self: flex-start;
  position: relative;
  padding-bottom: 4px;
  transition: color .4s ease;
}
.feature__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px; background: var(--gold);
  transform-origin: right;
  transition: transform .55s var(--ease-out);
}
.feature__link:hover { color: var(--gold-bright); }
.feature__link:hover::after { transform: scaleX(0); }
.feature__link span { font-size: 18px; transition: transform .4s var(--ease-out); }
.feature__link:hover span { transform: translateX(5px); }

/* ==========================================================================
   COLOPHON STATS
   ========================================================================== */
.colophon {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  background: var(--bg-2);
}
.colophon__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0 36px;
}
.colophon dl {
  padding: 36px 22px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
}
.colophon dl:first-child { padding-left: 0; }
.colophon dl:last-child { border-right: 0; padding-right: 0; }
.colophon dt {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.colophon dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}
.colophon dd b { font-weight: 500; color: var(--gold); }

/* ==========================================================================
   DISPATCH (Maison's letters)
   ========================================================================== */
.dispatch { padding-bottom: 96px; }
.dispatch__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.dispatch__col {
  padding: 0 32px 0 32px;
  border-right: 1px solid var(--rule);
}
.dispatch__col:first-child { padding-left: 0; }
.dispatch__col:last-child { border-right: 0; padding-right: 0; }
.dispatch__date {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px 0;
}
.dispatch__col h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 18px 0;
  color: var(--text-bright);
}
.dispatch__col p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}

/* ==========================================================================
   ORDER LOOKUP
   ========================================================================== */
.lookup {
  border-top: 1px solid var(--rule-strong);
  background: var(--bg-2);
  padding: 96px 0 120px;
  position: relative;
}
.lookup__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.lookup__copy .section-head__num {
  font-size: 88px;
  display: block;
  margin-bottom: 16px;
}
.lookup__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 28px 0;
  color: var(--text-bright);
}
.lookup__copy p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
  max-width: 38ch;
  margin: 0 0 14px 0;
}
.lookup__hint {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 28px !important;
  letter-spacing: 0.18em;
}
.lookup__hint code {
  background: var(--bg);
  padding: 6px 10px;
  border: 1px solid var(--rule-strong);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.lookup__form {
  border-top: 1px solid var(--gold);
  padding-top: 36px;
}
.lookup__form label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.lookup__field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: stretch;
}
.lookup__field input {
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--text-bright);
  transition: all .55s var(--ease-out);
  caret-color: var(--gold);
}
.lookup__field input::placeholder { color: var(--text-faint); letter-spacing: 0.06em; }
.lookup__field input:focus {
  outline: 0;
  border-color: var(--gold);
  background: var(--bg-3);
  box-shadow: 0 0 30px var(--gold-glow);
}
.lookup__field .btn { padding: 18px 28px; }

.lookup__msg {
  margin: 22px 0 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  min-height: 1.4em;
}
.lookup__msg.is-ok { color: var(--gold); }
.lookup__msg.is-warn { color: #d68b65; }

.lookup__foot {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--text-dim);
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.lookup__foot a { color: var(--gold); border-bottom: 1px solid var(--rule-strong); }
.lookup__foot a:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ==========================================================================
   FOOT (Maison colophon)
   ========================================================================== */
.foot {
  background: var(--bg);
  color: var(--text);
  padding: 110px 0 40px;
  position: relative;
  border-top: 1px solid var(--gold);
}
.foot::before {
  content: "◆";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 16px;
  color: var(--gold);
  font-size: 12px;
}

.foot__grid {
  display: grid;
  grid-template-columns: 5fr 2fr 2fr 2fr;
  gap: 64px;
  position: relative;
}
.foot__brand h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.01em;
  margin: 0 0 22px 0;
  color: var(--text-bright);
}
.foot__brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 38ch;
  margin: 0;
}
.foot__seal {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  margin: 0 0 28px 0;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  width: 76px; height: 76px;
  text-align: center;
  border-radius: 50%;
  padding: 0;
  transform: none;
  background: rgba(201, 169, 97, 0.04);
}

.foot h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px 0;
}
.foot ul li { margin-bottom: 14px; }
.foot ul a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  transition: color .4s ease, padding-left .5s var(--ease-out);
  display: inline-block;
}
.foot ul a:hover { color: var(--gold); padding-left: 8px; }

.foot__rule { margin: 72px auto 28px; }
.foot__rule .hairline { background: var(--rule); }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.foot__set { color: var(--text-dim); font-style: italic; font-family: var(--serif); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */
.page-head {
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--gold);
}
.page-head__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: end;
}
.page-head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text-bright);
}
.page-head__sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px 0;
}
.page-head__count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 18px 0;
}
.page-head__count b { font-style: italic; font-weight: 500; color: var(--gold); }

.shop {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  padding: 64px 0 110px;
}
.shop__aside h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 22px 0;
}
.shop__cat {
  border-top: 1px solid var(--gold);
  margin-bottom: 44px;
}
.shop__cat li {
  border-bottom: 1px solid var(--rule);
}
.shop__cat a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  transition: all .5s var(--ease-out);
}
.shop__cat a span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.18em;
}
.shop__cat a:hover { color: var(--gold); padding-left: 8px; }
.shop__cat li.is-current a { color: var(--gold-bright); font-weight: 500; padding-left: 8px; }
.shop__cat li.is-current a::before { content: "◆"; color: var(--gold); margin-right: 10px; font-size: 8px; vertical-align: middle; }

.shop__sort {
  display: flex; gap: 18px; align-items: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.shop__sort button {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all .4s ease;
}
.shop__sort button.is-active { color: var(--gold); border-color: var(--gold); }
.shop__sort button:hover { color: var(--gold-bright); }

.shop__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--gold);
}
.shop__item {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: background .8s var(--ease-out);
}
.shop__item:nth-child(2n) { border-right: 0; }
.shop__item:hover { background: var(--bg-2); }
.shop__item:hover .shop__item-arrow { transform: translateX(6px); color: var(--gold); }
.shop__item-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.shop__item-no {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.shop__item-cat {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.shop__item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text-bright);
}
.shop__item h3 em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.36em;
  color: var(--gold);
  letter-spacing: 0.32em;
  margin-top: 10px;
  text-transform: uppercase;
}
.shop__item-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.shop__item-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-top: 4px;
}
.shop__item-arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--text-dim);
  transition: color .5s ease, transform .55s var(--ease-out);
}

/* ==========================================================================
   PRODUCT
   ========================================================================== */
.product {
  padding: 64px 0 110px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}
.product__head {
  border-top: 1px solid var(--gold);
  padding-top: 36px;
}
.product__no {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px 0;
}
.product__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 84px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 18px 0;
  color: var(--text-bright);
}
.product__title em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.18em;
  color: var(--gold);
  letter-spacing: 0.32em;
  margin-top: 18px;
  text-transform: uppercase;
}
.product__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.75;
  color: var(--text);
  margin: 36px 0;
  max-width: 56ch;
}
.product__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  margin: 44px 0 18px;
  color: var(--text-bright);
}
.product__body p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.95;
  color: var(--text);
  margin: 0 0 16px 0;
}
.product__body p strong { color: var(--gold); font-style: italic; font-weight: 500; }
.product__body ul { margin: 0 0 16px 0; padding-left: 0; }
.product__body ul li {
  position: relative;
  padding-left: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 8px;
}
.product__body ul li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 0.55em;
  color: var(--gold);
  font-size: 9px;
}
.product__body ul li strong { color: var(--gold); font-weight: 500; font-style: italic; }

.product__buy {
  position: sticky;
  top: 110px;
  border: 1px solid var(--gold);
  padding: 36px 32px 30px;
  background: var(--bg-2);
  position: relative;
}
.product__buy::before {
  content: "◆ PURCHASE";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  padding: 0 16px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.product__buy-no {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 12px 0;
  text-align: center;
}
.product__buy-price {
  display: flex; align-items: baseline; justify-content: center; gap: 10px; padding: 14px 0 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.product__buy-price b {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.product__buy-price i {
  font-style: italic;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-dim);
}
.product__buy-price em {
  font-style: italic;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--text-dim);
}
.product__buy-spec {
  display: flex; flex-direction: column; gap: 16px;
  margin: 0 0 30px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
}
.product__buy-spec dt {
  font-family: var(--sans);
  font-weight: 400;
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.product__buy-spec dd { color: var(--text-bright); }
.product__buy-spec dd b { font-weight: 500; color: var(--gold); }

.product__opt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.product__opt label {
  border: 1px solid var(--rule-strong);
  background: var(--bg);
  padding: 14px 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  transition: all .55s var(--ease-out);
  color: var(--text);
}
.product__opt label small {
  font-family: var(--sans); font-style: normal; font-size: 10px; color: var(--text-dim); letter-spacing: 0.18em;
}
.product__opt input { position: absolute; opacity: 0; pointer-events: none; }
.product__opt input:checked + label {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
  color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}
.product__opt input:focus-visible + label { outline: 1px dashed var(--gold); outline-offset: 2px; }

.product__buy .btn { width: 100%; justify-content: center; padding: 18px; }
.product__buy-note {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

/* ==========================================================================
   ORDER PAGE
   ========================================================================== */
.order-page {
  padding: 96px 0 144px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.order-page__copy h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 100px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 32px 0;
  color: var(--text-bright);
}
.order-page__copy p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 14px 0;
  max-width: 36ch;
}

.order-result {
  margin-top: 36px;
  border: 1px solid var(--gold);
  padding: 32px 32px 28px;
  background: rgba(201, 169, 97, 0.04);
  font-family: var(--serif);
  display: none;
  position: relative;
}
.order-result::before {
  content: "◆ RECORD";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 16px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
}
.order-result.is-show { display: block; animation: lxFadeIn 1.2s var(--ease-out); }
@keyframes lxFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.order-result h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--gold);
}
.order-result__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 28px;
  margin-top: 24px;
  font-size: 16px;
  color: var(--text);
}
.order-result__row dt {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-dim);
  align-self: center;
}
.order-result__row dd { color: var(--text-bright); font-weight: 400; font-style: italic; }
.order-result__row dd code {
  font-family: var(--mono);
  font-style: normal;
  font-size: 15px;
  background: var(--bg);
  padding: 6px 10px;
  color: var(--gold);
  border: 1px solid var(--rule-strong);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .masthead__row { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .cover { padding: 64px 0 80px; }
  .cover__copy, .cover__note { grid-column: 1 / -1; padding: 0; }
  .cover__note { margin-top: 56px; }
  .cover__head { font-size: clamp(48px, 12vw, 96px); }
  .cover__index { grid-template-columns: repeat(2, 1fr); }
  .cover__index li:nth-child(2) { border-right: 0; }
  .cover__index li:nth-child(1), .cover__index li:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .strip__list { grid-template-columns: repeat(2, 1fr); }
  .strip__list li { border-bottom: 1px solid var(--rule); }
  .strip__list li:nth-child(odd) { border-right: 1px solid var(--rule); }
  .strip__list li:nth-child(even) { border-right: 0; }

  .section-head { grid-template-columns: auto 1fr; gap: 22px; padding: 64px 0 32px; }
  .section-head__num { font-size: 64px; }
  .section-head__title { font-size: 36px; }
  .section-head__sub { display: none; }
  .section-head__more { grid-column: 1 / -1; margin-top: 12px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid > .feature--lead, .feature-grid > .feature:not(.feature--lead) {
    grid-column: 1 / -1; border-right: 0;
  }
  .feature { padding: 36px 0; border-bottom: 1px solid var(--rule); }
  .feature:first-child { padding-left: 0; padding-right: 0; }

  .colophon__row { grid-template-columns: repeat(2, 1fr); }
  .colophon dl { padding: 24px 16px; }
  .colophon dl:nth-child(2n) { border-right: 0; }
  .colophon dl { border-bottom: 1px solid var(--rule); }

  .dispatch__grid { grid-template-columns: 1fr; gap: 36px; }
  .dispatch__col { padding: 0; border-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 36px; }
  .dispatch__col:last-child { border-bottom: 0; }

  .lookup__grid { grid-template-columns: 1fr; gap: 40px; }
  .lookup__title { font-size: 56px; }

  .foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .shop { grid-template-columns: 1fr; gap: 40px; }
  .shop__list { grid-template-columns: 1fr; }
  .shop__item { border-right: 0; }

  .product { grid-template-columns: 1fr; gap: 48px; }
  .product__buy { position: static; }
  .product__title { font-size: 56px; }

  .order-page { grid-template-columns: 1fr; gap: 40px; }
  .order-page__copy h1 { font-size: 64px; }

  .page-head h1 { font-size: 64px; }
  .page-head__row { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 24px; }
  .masthead__row { padding: 16px 24px; gap: 12px; }
  .masthead__aux .aux-link:not(.aux-link--strong) { display: none; }
  .brand__word em { display: none; }

  .issue-bar__row { padding: 10px 24px; gap: 22px; flex-wrap: wrap; font-size: 9px; letter-spacing: 0.22em; }
  .issue-bar__cell:not(:last-child)::after { display: none; }
  .issue-bar__cell--end { display: none; }

  .cover__head { font-size: clamp(40px, 14vw, 68px); }
  .cover__lead { font-size: 18px; }
  .dropcap { font-size: 64px; }

  .section-head__num { font-size: 48px; }
  .section-head__title { font-size: 28px; }

  .feature--lead .feature__title { font-size: 36px; }
  .feature__title { font-size: 22px; }

  .lookup__title, .order-page__copy h1 { font-size: 44px; }
  .lookup__field { grid-template-columns: 1fr; }

  .product__title { font-size: 44px; }
  .product__opt { grid-template-columns: 1fr; }

  .page-head h1 { font-size: 44px; }
}
