@import url('star.css?v=7');
/* firstpack-v2 — home only. Loads after base.css; ADDS, never restyles chrome.
   PRESSROOM palette: paper ground, ink scrim, press-blue + kraft-board panels,
   foil gold nowhere here (hot-stamping only). No italics, no rounded corners. */

/* ---- mechanic 2: film hero, words on the film ---- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.6s var(--ease);
}

.hero-media video.playing {
  opacity: 1;
}

/* graded so paper type holds at any frame of the loop */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 21, 27, .78) 0%, rgba(16, 21, 27, .46) 48%, rgba(16, 21, 27, .2) 100%),
    linear-gradient(180deg, rgba(16, 21, 27, .55) 0%, transparent 34%, rgba(16, 21, 27, .5) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--paper);
  padding: 0 var(--pad);
  margin-left: min(8vw, 7rem);
  max-width: 52rem;
}

.hero-copy .eyebrow {
  opacity: .78;
  margin-bottom: clamp(1.25rem, .8rem + 1.4vw, 2.25rem);
}

/* longer v3 headline ("We make paper bags," is the widest authored line) — sized
   so all three <br> lines hold on one line each from 320 to 1440 (no wrap-orphans). */
.hero-copy h1 {
  font-size: clamp(1.35rem, 0.78rem + 2.95vw, 3.5rem);
}

/* ---- mechanic 4: gem-box editorial on a 12-col grid ---- */
.ed {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, .5rem + 1.5vw, 2rem);
  padding-block: var(--sec);
}

/* two columns — art (eyebrow + scroll) 1–4 · text (headline + prose) 5–13. Wrapping them
   keeps the scroll's height out of the headline row's track sizing; under 1000px the
   wrappers go display:contents and the pieces re-order eyebrow → headline → art → prose. */
.ed-col--art { grid-column: 1 / 5; }
.ed-col--text { grid-column: 5 / 13; }

.ed-brow {
  padding-top: .5em;
  opacity: .55;
}

.ed-body {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  margin-top: clamp(3rem, 2rem + 4vw, 6rem);
}

.ed-prose {
  max-width: 34rem;
  display: grid;
  gap: 1.25rem;
}

.ed-prose p {
  font-size: .9375rem;
}

.ed-prose .lede {
  font-size: 1.0625rem;
  line-height: 1.55;
}

.ed-prose .cn {
  letter-spacing: .04em;
  opacity: .9;
}

/* ---- gem-box scroll art (Charlie 2026-08-24 "add some chinese art"). The painting is
   content, not ornament: Wu Changshuo's 1912 ink magnolia — the wood of the jeweller's
   case — hung as a scroll under the eyebrow, the proverb + its Han Feizi source set
   top-to-bottom in brush script beside it, a cinnabar 一鸣 seal at the foot of the column.
   Flat and square like everything else on the site: hairline only, no shadow, no radius.
   --cinnabar is scoped here — the only red on the page besides the logo mark. ---- */
.ed-art {
  --cinnabar: #b8322a;
  margin: clamp(2.25rem, 1.75rem + 1.6vw, 3rem) 0 0;   /* hangs just under the eyebrow */
  max-width: 19.5rem;   /* 240px painting at 1440: scroll foot overhangs the prose by ~170px, not 230 */
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(1rem, .6rem + 1.2vw, 1.5rem);
  row-gap: .8rem;
}

.ed-scroll {
  grid-column: 1;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.ed-inscr {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding-top: .35rem;
}

.ed-callig {
  font-family: "Ma Shan Zheng", "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 1.5rem + 1.4vw, 2.75rem);
  line-height: 1;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: var(--ink);
}

.ed-source {
  font-family: "Noto Sans SC", Archivo, sans-serif;
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .2em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  opacity: .55;
}

.ed-seal {
  margin-top: auto;   /* foot of the column, like a colophon seal */
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--cinnabar);
  color: var(--paper);
  font-family: "Ma Shan Zheng", "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: .06em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.ed-art-cap {
  grid-column: 1;
  display: grid;
  gap: .4rem;
  font-size: .8125rem;
  line-height: 1.45;
}

.ed-art-credit {
  font-size: var(--eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .55;
}

.arrow {
  display: inline-flex;
  align-items: center;
  gap: .9em;
  font-size: var(--eyebrow);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* square boxed arrow — the house rule kills press-grammar's circle */
.box {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
  font-size: .8rem;
  letter-spacing: 0;
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}

.arrow:hover .box {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* ---- mechanic 3: 50/50 photo + flat press-blue. The void under the headline
   is the design; do not fill it. ---- */
.sp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 44rem;
}

.sp-img {
  position: relative;
  overflow: hidden;
}

.sp-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-col {
  background: var(--press-blue);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: clamp(2.5rem, 1.5rem + 4vw, 5rem) clamp(1.5rem, 1rem + 3vw, 4.5rem);
}

.sp-col .eyebrow {
  opacity: .72;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}

.sp-foot {
  margin-top: auto;
  padding-top: clamp(4rem, 2rem + 8vw, 9rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}

.sp-foot p {
  max-width: 26rem;
  font-size: .9375rem;
  opacity: .92;
}

/* ---- mechanic 5: portfolio-category cards on a snap rail, die-line motif ---- */
.rail {
  padding-block: var(--sec);
}

.rail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .75rem 2rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.rail-head .eyebrow {
  opacity: .5;
}

.rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: clamp(1rem, .5rem + 1.5vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rail-track::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}

/* die-line motif (signature move 3): a fine dashed cut border inset from the edge,
   with a ⌖ registration mark in the corner. Disciplined — hairline, paper, quiet. */
.dieline::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: .7rem;
  border: 1px dashed rgba(242, 241, 236, .5);
  pointer-events: none;
}

.card .reg {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  font-size: .8rem;
  line-height: 1;
  color: var(--paper);
  opacity: .72;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
  filter: saturate(.92);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(16, 21, 27, .72) 100%);
}

.card:hover img {
  transform: scale(1.045);
  filter: saturate(1);
}

.card-cap {
  position: absolute;
  z-index: 3;
  inset: auto 1.5rem 1.75rem;
  display: grid;
  gap: .7em;
  color: var(--paper);
}

.card-cap .more {
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .64;
  transition: opacity .4s var(--ease);
}

.card:hover .card-cap .more {
  opacity: 1;
}

.rail-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, .5rem + 1.5vw, 1.75rem);
  margin-top: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}

.rail.can-scroll .rail-nav {
  display: flex;
}

.rail-nav .box:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.rail-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.rail-line span {
  display: block;
  height: 100%;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(.18);
  transition: transform .3s var(--ease);
}

/* ---- client logo wall: full-colour, full-opacity (Charlie order #4) ---- */
.lw {
  padding-block: var(--sec);
  border-top: 1px solid var(--line);
}

.lw-brow {
  opacity: .5;
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
}

.lw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: clamp(2rem, 1.4rem + 3vw, 3.25rem) clamp(1.25rem, .75rem + 2.5vw, 2.75rem);
  align-items: center;
}

.lw-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-grid img {
  width: auto;
  height: clamp(3rem, 2.2rem + 2.4vw, 4.25rem);
  max-width: 100%;
  object-fit: contain;
  transition: transform .4s var(--ease);
}

.lw-grid li:hover img {
  transform: scale(1.04);
}

/* (kraft-board CTA band idiom moved to base.css — shared with services) */

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .ed-col { display: contents; }

  .ed-brow {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
  }

  .ed-head,
  .ed-body,
  .ed-art {
    grid-column: 1 / -1;
  }

  .ed-head { order: 1; }
  .ed-art  { order: 2; margin-top: clamp(2.5rem, 2rem + 2vw, 4rem); }
  .ed-body { order: 3; }

  .sp {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sp-img {
    aspect-ratio: 16 / 10;
  }

  .sp-foot {
    padding-top: clamp(2.5rem, 2rem + 4vw, 5rem);
  }

  .rail-track {
    grid-auto-columns: 60vw;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    margin-left: 0;
  }

  .ed-art { max-width: 19rem; }

  .ed-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .rail-track {
    grid-auto-columns: 78vw;
  }
}


/* ---- heritage statement (Charlie order 2026-08-14): the page's loudest type.
   House display idiom (300 caps, .04em) one size class above --display;
   line 2 steps right two columns — hero's stacked-claims echo. ---- */
.herit {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, .5rem + 1.5vw, 2rem);
  row-gap: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
  padding-block: var(--sec);
}

.herit-line {
  grid-column: 1 / 12;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 1.05rem + 5.2vw, 6rem);
}

.herit-line--step { grid-column: 3 / 13; }

.herit-num {
  color: var(--press-blue);
  font-weight: 400;
  font-variant-numeric: lining-nums;
}

@media (max-width: 1000px) {
  .herit-line,
  .herit-line--step { grid-column: 1 / 13; }
}

