/* ============================================================
   Eat 3 Cuts 吃三样 — direction 2a, "Hot from the hook"
   Bone / Seal / Ink / Vellum / Graphite.
   Newsreader for everything editorial, IBM Plex Mono for
   anything factual, Noto Serif SC set at the same weight
   class as the English display.
   ============================================================ */

:root {
  /* Palette */
  --bone:     #F7F5F0;   /* 骨 */
  --seal:     #B4342A;   /* 朱砂 */
  --ink:      #14161A;   /* 墨 */
  --vellum:   #E4DCCB;   /* 宣 */
  --graphite: #7A7D82;   /* 铅 */

  --body-ink:      #3D3F43;
  --rule:          #ddd8cc;  /* hairline on bone */
  --rule-vellum:   #cfc5ae;  /* hairline on vellum */

  /* Type */
  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --han:   "Noto Serif SC", var(--serif);
  /* Seal glyph only — semi-cursive brush face, single weight (400). */
  --brush: "Zhi Mang Xing", cursive;

  /* Fluid scale — each clamp caps at the value drawn at 1440 */
  --t-hero:     clamp(3.25rem, 7.8vw,  7rem);      /* 112 */
  --t-hero-zh:  clamp(1.625rem, 3.2vw, 2.875rem);  /*  46 */
  --t-h2:       clamp(2.125rem, 4.3vw, 3.875rem);  /*  62 */
  --t-h2-alt:   clamp(2rem, 3.9vw, 3.5rem);        /*  56 */
  --t-h2-bulk:  clamp(1.875rem, 3.6vw, 3.25rem);   /*  52 */
  --t-quote:    clamp(1.375rem, 2.2vw, 2rem);      /*  32 */
  --t-lede:     clamp(1.1875rem, 1.7vw, 1.5rem);   /*  24 */
  --t-body:     clamp(1.0625rem, 1.45vw, 1.3125rem);/* 21 */
  --t-year:     clamp(1.5rem, 2.5vw, 2.25rem);     /*  36 */
  --wordmark-size: clamp(1.3125rem, 1.8vw, 1.625rem); /* 21 → 26, header/footer mark */

  /* Layout */
  --page:   1440px;
  --gutter: clamp(1.25rem, 3.9vw, 3.5rem);         /*  56 */
  --bleed:  clamp(0px, 11.8vw, 170px);             /* montage overhang */
  --lap:    clamp(0px, 7.8vw, 112px);              /* montage overlap  */
}

/* ── Reset ─────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
h1, h2, h3, p, dd, dl, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 13px;
}
.skip-link:focus { left: 0; }

/* Announced by screen readers, invisible on screen. Used to say "opens in a
   new tab" on external links — WCAG 3.2.5 wants the context change flagged,
   and target="_blank" is not reliably announced on its own (VoiceOver
   sometimes does, NVDA and JAWS generally do not). */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ── Shared bits ───────────────────────────────────────── */

.wrap {
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3rem, 5.4vw, 4.875rem); }

/* Mono eyebrow — the small red caps line above a section */
.eyebrow {
  font-family: var(--mono);
  font-size: clamp(10px, 0.84vw, 12px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--seal);
}

/* The seal: red square, white 三. Part of the mark. */
/* The seal: red square, calligraphic 三 (direction 3c).
   The glyph size is derived from the square rather than hard-coded, so the
   0.80 ratio cannot drift apart across breakpoints. That ratio matters: Zhi
   Mang Xing draws 三 much smaller inside its em box than the engineered
   Noto Serif SC cut did, so carrying over the old 0.60 would leave the glyph
   lost in the square. */
.seal {
  --seal-size: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: var(--seal-size);
  height: var(--seal-size);
  /* Optical correction, and the handoff's "no manual nudge needed" is wrong
     about this one. Zhi Mang Xing's 三 has its ink bounding box 1.375% of the
     square above the centre of its own line box, so geometric centring renders
     the mark high. Pixel-measured off the rendered glyph, not taken from font
     metrics — the reported metrics agreed here, but they disagree elsewhere in
     this stylesheet, so they are not trusted alone.
     Content in a centred grid shifts by HALF the padding, hence 2 x 1.375%.
     Expressed against --seal-size so it holds at every size, and box-sizing is
     border-box so the square does not grow. */
  padding-top: calc(var(--seal-size) * 0.0275);
  background: var(--seal);
  color: var(--bone);
  font-family: var(--brush);
  font-weight: 400;           /* single weight — never synthesise a bold */
  font-size: calc(var(--seal-size) * 0.8);
  line-height: 1;
}

/* Below ~26px the semi-cursive strokes fill in, so small marks keep the
   engineered cut at its own 0.60 ratio. Nothing on this site is currently
   under 26px — the favicon is drawn geometrically rather than set in type —
   but any smaller seal added later needs this. */
.seal--small {
  font-family: var(--han);
  font-weight: 900;
  font-size: calc(var(--seal-size) * 0.6);
}

/* Reversed variant, for a seal on the vellum ground. Unused so far. */
.seal--reversed {
  background: var(--vellum);
  color: var(--seal);
}

/* Two alignment jobs here, and they need separate containers.
   OUTER: the seal is a square, and the nav facing it is a filled button, so
   both want optical CENTRING on the header's axis.
   INNER: the Latin and the CJK are type, so they want a shared BASELINE.
   Doing both in one container cannot work, because with line-height:1 the text
   box is not the text ink — centring the line box leaves the wordmark riding
   high, and baseline-aligning the square drops it ~2px low.
   It lands exactly because the wordmark is the tallest thing above the
   baseline, which makes .lockup__text's box centre coincide with the
   wordmark's cap-height centre. So centring the group centres the letters. */
.lockup { display: flex; align-items: center; gap: 14px; }
.lockup__text {
  display: flex;
  align-items: baseline;
  gap: 14px;
  /* Optical centring. Centring the box is not the same as centring the
     letters: in Newsreader the line-box centre sits at baseline-0.238em while
     the cap-height centre sits at baseline-0.335em, so a box-centred wordmark
     rides 0.0967em high. This nudges it back onto the axis the seal, the nav
     links and the Order button all share.
     0.0967em = (cap-height - (ascender - descender)) / 2, measured off the font
     itself — RE-DERIVE IT IF THE DISPLAY FONT EVER CHANGES.
     Newsreader is optically sized, so its cap ratio drifts a little with
     font-size and one constant cannot be exact at every size. This is dead-on
     at the 21px clamp floor (every width up to ~1167px, i.e. all phones and
     most laptops) and drifts to 0.65px at the 26px ceiling — a third of the
     error it replaces, and under a CSS pixel.
     `text-box: trim-both cap alphabetic` retires this once Firefox ships it. */
  position: relative;
  top: calc(var(--wordmark-size) * 0.0967);
}
.lockup__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--wordmark-size);
  line-height: 1;
}
.lockup__zh {
  font-family: var(--han);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: .16em;
  /* the trailing letter-spaced gap would otherwise offset the group */
  margin-right: -.16em;
  line-height: 1;
}
.lockup__dot {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--wordmark-size);
  line-height: 1;
}

/* Buttons — square, mono, no radius anywhere in this system */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity .18s ease, background-color .18s ease, color .18s ease;
}
.btn--seal    { background: var(--seal); color: var(--bone); }
.btn--ink     { background: var(--ink);  color: var(--bone); padding: 11px 20px; }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--sm      { padding: 13px 26px; }
.btn--outline.btn--sm { padding: 12px 26px; }

.btn--seal:hover, .btn--ink:hover { opacity: .82; }
.btn--outline:hover { background: var(--ink); color: var(--bone); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn-row--tight { gap: 12px; margin-top: 0; }

/* Section head — English display + Chinese, baseline-aligned */
.head { display: flex; align-items: baseline; flex-wrap: wrap; gap: clamp(14px, 1.7vw, 24px); }
.head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2);
  letter-spacing: -.03em;
  line-height: 1;
}
.head__zh {
  font-family: var(--han);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.625rem);
  letter-spacing: .12em;
  line-height: 1;
}

.lede {
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--body-ink);
  max-width: 47ch;
  margin-top: 10px;
  text-wrap: pretty;
}

/* ── Header ────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
/* Transparent border on BOTH edges so the box stays symmetric — with only the
   bottom one the link's text is centred 0.5px high. Only the bottom shows. */
.site-nav > a:not(.btn) {
  padding-block: 4px;
  border-block: 1px solid transparent;
}
.site-nav > a:not(.btn):hover,
.site-nav > a[aria-current="true"] { border-bottom-color: var(--seal); }

/* Five links plus the Order button need ~930px on one line. Below that the
   nav wraps and the header grows to two rows, so drop the links and keep the
   button — the sections are still reachable by scrolling. Deliberately not
   tied to the 899px layout breakpoint below. */
@media (max-width: 1023px) {
  .site-nav > a:not(.btn) { display: none; }
}

@media (max-width: 899px) {
  .site-header__inner { padding-block: 14px; }
  .lockup, .lockup__text { gap: 10px; }
  .lockup__name, .lockup__zh { white-space: nowrap; }
  /* 26px is the documented floor for the brush face; the 0.80 ratio follows */
  .seal { --seal-size: 26px; }
}

/* At phone width the comp keeps the header to the mark alone — the
   order CTA sits in the hero, two thumb-lengths down. */
@media (max-width: 599px) {
  .site-nav { display: none; }
}

/* ── Hero ──────────────────────────────────────────────── */

/* DOM order is copy → image → actions, which is exactly the mobile
   stack. On desktop the actions are pulled back up into column 1
   under the copy, and the photo spans both rows. */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__copy    { grid-area: 1 / 1 / 2 / 2; align-self: end; }
.hero__actions { grid-area: 2 / 1 / 3 / 2; align-self: start; }
.hero__image   { grid-area: 1 / 2 / 3 / 3; }

.hero__copy,
.hero__actions {
  /* Line the text column up with .wrap on wide screens */
  padding-left: max(var(--gutter), calc((100vw - var(--page)) / 2 + var(--gutter)));
  padding-right: clamp(1.25rem, 2.8vw, 2.5rem);
}
.hero__copy    { padding-top: clamp(2rem, 5.6vw, 5rem); }
.hero__actions { padding-bottom: clamp(2rem, 5.6vw, 5rem); }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: .9;
  letter-spacing: -.04em;
  margin-top: clamp(16px, 1.9vw, 28px);
}
.hero__zh {
  font-family: var(--han);
  font-weight: 400;
  font-size: var(--t-hero-zh);
  letter-spacing: .16em;
  color: var(--seal);
  margin-top: clamp(12px, 1.4vw, 20px);
  line-height: 1.2;
}
.hero__lede {
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--body-ink);
  max-width: 480px;
  margin-top: clamp(16px, 1.8vw, 26px);
  text-wrap: pretty;
}

.hero__image {
  position: relative;
  overflow: hidden;
  /* 690 in the comp, but let it stretch if the copy column runs taller */
  min-height: min(690px, 78vh);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.09) translateY(-1.2%);
}
/* Melt the left edge of the photo into the bone field */
.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--bone) 0%,
    rgba(247,245,240,.72) 5%,
    rgba(247,245,240,.20) 12%,
    rgba(247,245,240,0) 20%);
}

@media (max-width: 899px) {
  /* Straight stack, in DOM order: copy → photo → full-width CTAs */
  .hero { display: block; }
  .hero__copy, .hero__actions { padding-inline: var(--gutter); }
  .hero__copy { padding-block: 30px 22px; }
  .hero__lede { max-width: none; }
  /* 260px at 390 as drawn; same width-tracking so the platters keep their
     depth across the tablet range */
  .hero__image { height: clamp(260px, 66.7vw, 440px); min-height: 0; }
  .hero__image img { object-position: 50% 50%; }
  .hero__fade { display: none; }

  .hero__actions { margin-top: 0; padding-block: 20px; }
}

/* Phone only: CTAs go full-width and stack */
@media (max-width: 599px) {
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { text-align: center; padding: 17px; }
}

/* ── The Three ─────────────────────────────────────────── */

.the-three {
  padding-bottom: clamp(3rem, 4.9vw, 4.375rem);
  /* The montage is meant to run off both edges and be cut off there.
     `clip` (not `hidden`) so this never becomes a scroll container. */
  overflow-x: hidden;
  overflow-x: clip;
}
.the-three .lede { margin-bottom: clamp(24px, 3vw, 44px); }

/* Three photos bleeding past the column, overlapped and
   feathered into each other. */
.montage {
  display: flex;
  /* the content column, then overhang by --bleed on each side */
  width: calc(
    min(100% - var(--gutter) * 2, var(--page) - var(--gutter) * 2)
    + var(--bleed) * 2
  );
  /* auto margins collapse once the box is wider than its container,
     so centre it off the midline instead */
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: clamp(24px, 2.8vw, 40px);
}
.montage img, .montage__c { min-width: 0; }
.montage__a {
  flex: 1.25 1 0;
  height: clamp(240px, 32vw, 460px);
  object-fit: cover;
  object-position: 62% 50%;
  transform: scaleX(-1);
}
.montage__b {
  flex: 1 1 0;
  height: clamp(240px, 32vw, 460px);
  object-fit: cover;
  margin-left: calc(var(--lap) * -1);
  --feather: linear-gradient(90deg,
    rgba(0,0,0,0) 0px, rgba(0,0,0,.34) 18px, rgba(0,0,0,.72) 38px,
    rgba(0,0,0,.94) 56px, rgba(0,0,0,1) 68px,
    rgba(0,0,0,1) calc(100% - 56px), rgba(0,0,0,.94) calc(100% - 44px),
    rgba(0,0,0,.72) calc(100% - 26px), rgba(0,0,0,.34) calc(100% - 12px),
    rgba(0,0,0,0) 100%);
  mask-image: var(--feather);
  -webkit-mask-image: var(--feather);
}
.montage__c {
  flex: 1 1 0;
  margin-left: calc(var(--lap) * -1);
  --feather: linear-gradient(90deg,
    rgba(0,0,0,0) 0px, rgba(0,0,0,.04) 21px, rgba(0,0,0,.16) 42px,
    rgba(0,0,0,.42) 67px, rgba(0,0,0,.78) 91px, rgba(0,0,0,1) 112px);
  mask-image: var(--feather);
  -webkit-mask-image: var(--feather);
}
.montage__c img {
  width: 100%;
  height: clamp(240px, 32vw, 460px);
  object-fit: cover;
  object-position: 88% 50%;
}

.cuts {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: start;
}
/* .cut__head holds the (mobile-only) thumbnail beside .cut__id;
   .cut__id baseline-locks the numeral to the name. */
.cut__head {
  display: flex;
  align-items: center;
  gap: 14px;
  /* the rule belongs to the column, so it stays full width even when
     the mono measure below is capped */
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.cut__id { display: flex; align-items: baseline; gap: 14px; }
.cut__num {
  font-family: var(--han);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  color: var(--seal);
  line-height: 1;
}
.cut--lead .cut__num { font-size: clamp(1.375rem, 2.1vw, 1.875rem); }
.cut__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
}
.cut--lead .cut__name { font-size: clamp(1.6875rem, 2.6vw, 2.375rem); }
.cut__zh {
  font-family: var(--han);
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.45vw, 1.3125rem);
  letter-spacing: .12em;
}
.cut__note {
  font-family: var(--mono);
  font-size: clamp(11px, 0.84vw, 12px);
  line-height: 1.8;
  color: var(--body-ink);
  margin-top: 14px;
  /* keeps the mono measure readable once the cuts go single-column;
     no effect on desktop, where the columns are already narrower */
  max-width: 72ch;
}
.cut__img, .cut__thumb { display: none; }

@media (max-width: 899px) {
  .montage { display: none; }              /* per-cut photos take over */
  .cuts { grid-template-columns: 1fr; gap: 20px; }

  .cut__img {
    display: block;
    width: calc(100% + var(--gutter) * 2);
    max-width: none;              /* beat the `img { max-width: 100% }` reset */
    margin-left: calc(var(--gutter) * -1);
    /* 210px at 390 as drawn, but the height has to track the width or the
       bird flattens into a strip by the top of the tablet range */
    height: clamp(210px, 54vw, 400px);
    object-fit: cover;
    transform: scaleX(-1);
  }
  .cut--lead { display: flex; flex-direction: column; }
  .cut--lead .cut__img { order: -1; margin-bottom: 14px; }

  /* Flushed right so 一 二 三 stay in one vertical column down the page —
     the numerals are the spine of the section, not the photos. */
  .cut__thumb {
    display: block;
    margin-left: auto;
    width: 104px;
    height: 104px;
    flex: 0 0 auto;
    object-fit: cover;
  }
}

/* Full-width link bar */
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid var(--ink);
  padding: clamp(16px, 1.9vw, 26px) clamp(16px, 2.2vw, 32px);
  margin-top: clamp(20px, 2.4vw, 34px);
  transition: background-color .18s ease, color .18s ease;
}
.bar:hover { background: var(--ink); color: var(--bone); }
.bar:hover .bar__cta { color: var(--bone); }
.bar__label { display: flex; align-items: baseline; gap: clamp(12px, 1.4vw, 20px); }
.bar__title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.25rem, 2.4vw, 2.125rem); }
.bar__zh { font-family: var(--han); font-weight: 400; font-size: clamp(1rem, 1.8vw, 1.625rem); letter-spacing: .14em; }
.bar__cta {
  font-family: var(--mono);
  font-size: clamp(11px, 0.84vw, 12px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--seal);
  transition: color .18s ease;
}

/* ── Ordering strip ────────────────────────────────────── */

.strip { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-block: 30px;
}
.strip__text { font-size: var(--t-lede); line-height: 1.4; max-width: 34ch; }

@media (max-width: 899px) {
  .strip { background: var(--vellum); border-color: var(--rule-vellum); }
  .strip__inner { display: block; padding-block: 22px; }
  .strip__text { max-width: none; margin-bottom: 14px; }
}

/* Phone only: Oddle takes the full row, the aggregators share the next */
@media (max-width: 599px) {
  .strip .btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .strip .btn-row .btn { text-align: center; padding: 13px 8px; }
  .strip .btn-row .btn--seal { grid-column: 1 / -1; padding: 14px 8px; }
}

/* ── Split (The Roasting) ──────────────────────────────── */

/* Same trick as the hero: DOM order is head → photo → body, which is
   the mobile stack the comp draws. On desktop the body rejoins the
   head in column 1 and the photo spans both rows. */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: 0;
}
.split--vellum { background: var(--vellum); }

.split__copy { grid-area: 1 / 1 / 2 / 2; align-self: end; }
.split__rest { grid-area: 2 / 1 / 3 / 2; align-self: start; }
.split__image { grid-area: 1 / 2 / 3 / 3; }

.split__copy, .split__rest {
  padding-left: max(var(--gutter), calc((100vw - var(--page)) / 2 + var(--gutter)));
  padding-right: clamp(1.25rem, 3.9vw, 3.5rem);
}
.split__copy { padding-top: clamp(2rem, 5.4vw, 4.875rem); }
.split__rest { padding-bottom: clamp(2rem, 5.4vw, 4.875rem); }
.split__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2-alt);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-top: clamp(14px, 1.7vw, 24px);
}
.split__body {
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--body-ink);
  margin-top: clamp(14px, 1.5vw, 22px);
  text-wrap: pretty;
}
.split__image { position: relative; overflow: hidden; align-self: stretch; min-height: 100%; }
.split__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.12);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(22px, 2.5vw, 36px);
  border-top: 1px solid var(--rule-vellum);
}
.fact { flex: 1 1 190px; padding: 18px 20px 0 0; }
.fact + .fact { padding-left: 20px; border-left: 1px solid var(--rule-vellum); }
.fact dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--seal);
}
.fact dd {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.45vw, 1.3125rem);
  line-height: 1.3;
  margin-top: 6px;
}

@media (max-width: 899px) {
  .split { display: block; }
  .split__copy, .split__rest { padding-inline: var(--gutter); }
  .split__copy { padding-block: 30px 0; }
  .split__rest { padding-block: 14px 30px; }

  .split__image { position: static; min-height: 0; margin: 16px var(--gutter) 0; }
  .split__image img {
    position: static;
    /* 180px at 390 as drawn, scaling with the column for the same reason */
    height: clamp(180px, 46vw, 380px);
    transform: none;
    object-position: 50% 45%;
  }

  .facts { margin-top: 22px; }
  .fact { padding-right: 0; }
  .fact + .fact { border-left: 0; padding-left: 0; padding-top: 14px; }
}

/* ── Accolades ─────────────────────────────────────────── */

.accolades .head { margin-bottom: clamp(20px, 2.4vw, 34px); }

.praise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.praise li { padding: 24px 28px; border-bottom: 1px solid var(--rule); }
.praise li:nth-child(3n+1) { padding-left: 0; }
.praise li:nth-child(3n)   { padding-right: 0; }
.praise li:not(:nth-child(3n)) { border-right: 1px solid var(--rule); }
.praise li:nth-last-child(-n+3) { border-bottom: 0; }

.praise__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-quote);
  line-height: 1.15;
  text-wrap: pretty;
}
.praise__src {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 8px;
}

.timeline { margin-top: clamp(32px, 4vw, 58px); }
.timeline .eyebrow { margin-bottom: clamp(16px, 1.7vw, 24px); }
.timeline__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink);
}
.timeline__list li { padding: 22px 20px; }
.timeline__list li:first-child { padding-left: 0; }
.timeline__list li:last-child  { padding-right: 0; }
.timeline__list li:not(:last-child) { border-right: 1px solid var(--rule); }
.timeline__year {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-year);
  line-height: 1;
}
.is-now .timeline__year { color: var(--seal); }
.timeline__note {
  display: block;
  font-family: var(--mono);
  font-size: clamp(9px, 0.77vw, 11px);
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--body-ink);
  margin-top: 8px;
}

@media (max-width: 899px) {
  .praise { grid-template-columns: 1fr; }
  .praise li { padding: 14px 0; border-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .praise li:last-child { border-bottom: 0; }
  .praise__quote { font-size: clamp(1.3125rem, 5.6vw, 1.5rem); }

  .timeline__list { grid-template-columns: repeat(3, 1fr); }
  .timeline__list li { padding: 14px 10px; }
  .timeline__list li:nth-child(3n) { border-right: 0; }
  .timeline__list li:nth-child(n+4) { border-top: 1px solid var(--rule); }
}

/* ── Bulk orders ───────────────────────────────────────── */

.bulk { background: var(--vellum); }
.bulk__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
}
.bulk__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2-bulk);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-top: clamp(12px, 1.4vw, 20px);
}
.bulk__body {
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--body-ink);
  max-width: 480px;
  margin-top: clamp(12px, 1.4vw, 20px);
  text-wrap: pretty;
}
.bulk__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bulk__images img { width: 100%; height: clamp(200px, 23.6vw, 340px); object-fit: cover; }
/* Same photograph as the hero. This slot is portrait, so the crop is a tall
   slice rather than the hero's wide one — pulled left so the big pipa duck
   platter carries it instead of the teapot. */
.bulk__images-detail { object-position: 24% center; }

@media (max-width: 899px) {
  .bulk__inner { grid-template-columns: 1fr; }
  .bulk__images { order: -1; }
  .bulk__images img { height: 150px; }
  .bulk__body { max-width: none; }
  .bulk .btn-row { margin-top: 20px; }
}
@media (max-width: 599px) {
  .bulk .btn-row .btn,
  .visit .btn-row .btn { flex: 1 1 100%; text-align: center; }
}

/* ── Find us ───────────────────────────────────────────── */

.visit .lede { margin-bottom: 0; }

/* Same hairline-fact treatment as The Roasting, but ruled for the bone
   ground rather than vellum. The unqualified `.fact + .fact` rule above
   would otherwise paint a vellum divider in here. */
.visit__facts {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(22px, 2.5vw, 36px);
  border-top: 1px solid var(--ink);
}
.visit__facts .fact { flex: 1 1 210px; padding: 22px 24px 22px 0; }
.visit__facts .fact + .fact {
  padding-left: 24px;
  border-left: 1px solid var(--rule);
}
.visit__facts .fact dd a { border-bottom: 1px solid var(--rule); }
.visit__facts .fact dd a:hover { color: var(--seal); border-bottom-color: var(--seal); }

@media (max-width: 899px) {
  .visit__facts .fact { padding-right: 0; }
  .visit__facts .fact + .fact { border-left: 0; padding-left: 0; }
}

/* ── Footer ────────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--rule); }
.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-block: clamp(28px, 3.6vw, 52px);
}
/* the dot already does the separating, so the gaps can close up */
.lockup--footer { gap: 10px; margin-bottom: 14px; }
.lockup--footer .lockup__text { gap: 10px; }
.site-footer__address {
  font-family: var(--mono);
  font-size: clamp(11px, 0.84vw, 12px);
  line-height: 1.9;
  text-transform: uppercase;
  color: var(--body-ink);
}
.site-footer__address a:hover { color: var(--seal); }
/* the address is a map link — give it an affordance, it reads as plain text otherwise */
.site-footer__map { border-bottom: 1px solid var(--rule); }
.site-footer__map:hover { border-bottom-color: var(--seal); }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.8vw, 26px);
  font-family: var(--mono);
  font-size: clamp(11px, 0.84vw, 12px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--seal);
}
.site-footer__links a { padding-block: 2px; border-bottom: 1px solid transparent; }
.site-footer__links a:hover { border-bottom-color: var(--seal); }

@media (max-width: 899px) {
  .site-footer__inner { display: block; }
  .site-footer__links { margin-top: 14px; }
}

/* ── Print ─────────────────────────────────────────────── */

@media print {
  .site-header, .btn-row, .bar, .strip .btn-row { display: none; }
  body { background: #fff; }
}
