:root {
  --paper: #f4f0e7;
  --paper-soft: #faf7f0;
  --ink: #151413;
  --muted: rgba(21, 20, 19, 0.58);
  --line: rgba(21, 20, 19, 0.18);
  --blue: #2f4ee8;
  --serif: "Times New Roman", Times, Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
  --edge: clamp(18px, 3.8vw, 58px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, p, figure { margin-top: 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.journal-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 74px;
  padding: 14px var(--edge);
  border-bottom: 1px solid var(--line);
}
.brand-mark { display: block; width: 112px; height: 34px; color: #002fa7; }
.brand-mark span {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url("../assets/tafa-wordmark-v3-mask.png") center / contain no-repeat;
  mask: url("../assets/tafa-wordmark-v3-mask.png") center / contain no-repeat;
}
.journal-header nav { display: flex; gap: clamp(18px, 2.7vw, 40px); }
.journal-header nav, .journal-footer, .journal-intro > p, .journal-status span, .card-meta, .read-link, .journal-placeholder, .article-meta, .section-label, figcaption, .article-end > p, .article-end a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}
.journal-header a, .journal-footer a, .read-link, .article-end a { position: relative; }
.journal-header a::after, .journal-footer a::after, .read-link::after, .article-end a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}
.journal-header a:hover::after, .journal-header a:focus-visible::after, .journal-footer a:hover::after, .journal-footer a:focus-visible::after, .read-link:hover::after, .read-link:focus-visible::after, .article-end a:hover::after, .article-end a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.journal-intro {
  display: grid;
  min-height: 58svh;
  grid-template-rows: auto 1fr auto;
  padding: clamp(44px, 7vw, 100px) var(--edge) 34px;
  border-bottom: 1px solid var(--line);
}
.journal-intro > p { color: var(--muted); }
.journal-intro h1 {
  align-self: center;
  margin: 0;
  font-size: clamp(58px, 10vw, 138px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}
.journal-status { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; }
.journal-status p { max-width: 440px; margin-bottom: 0; color: var(--muted); font-size: 20px; }
.journal-status span { color: var(--muted); }

.category-navigation {
  display: flex;
  gap: clamp(24px, 5vw, 76px);
  padding: 20px var(--edge);
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  scrollbar-width: none;
}
.category-navigation::-webkit-scrollbar { display: none; }
.category-navigation a { position: relative; white-space: nowrap; }
.category-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}
.category-navigation a:hover::after, .category-navigation a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.featured-story {
  border-bottom: 1px solid var(--line);
}
.featured-image { display: block; overflow: hidden; background: #ede9e1; }
.featured-image img { width: 100%; height: auto; transition: transform 600ms ease; }
.featured-image:hover img { transform: scale(1.012); }
.featured-copy {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr) minmax(240px, 0.62fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: start;
  padding: clamp(32px, 5vw, 72px) var(--edge);
  border-top: 1px solid var(--line);
}
.featured-copy > p:first-child, .section-heading > p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.featured-copy h2 { margin: 0; font-size: clamp(38px, 4.5vw, 64px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.96; }
.featured-copy > div > p { max-width: 390px; margin-bottom: 32px; color: var(--muted); font-size: clamp(16px, 1.35vw, 19px); }
.read-link, .article-end a { display: inline-block; width: max-content; padding-bottom: 5px; color: var(--blue); }
.read-link::after, .article-end a::after { transform: scaleX(1); }

.category-section, .latest-section { padding: clamp(66px, 9vw, 132px) var(--edge); border-bottom: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: minmax(100px, 0.45fr) 1fr; gap: clamp(26px, 7vw, 120px); align-items: start; margin-bottom: clamp(46px, 7vw, 96px); }
.section-heading h2 { margin: 0; font-size: clamp(38px, 4.8vw, 68px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.96; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.category-card { scroll-margin-top: 20px; }
.category-image { display: block; width: 100%; aspect-ratio: 0.82; overflow: hidden; background: #e5e0d6; }
.category-card:nth-child(2) .category-image { background: #d9d7cf; }
.category-card:nth-child(3) .category-image { background: #e9e4da; }
.category-image img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; transition: transform 600ms ease; }
#inspiration .category-image img { padding: 4%; background: #f4f0e7; object-fit: contain; object-position: center; }
a.category-image:hover img { transform: scale(1.02); }
.category-copy { display: grid; min-height: 230px; padding: 18px; grid-template-rows: auto 1fr auto auto; }
.category-copy p, .category-copy span, .category-copy em {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-copy h3 { align-self: center; margin: 32px 0; font-size: clamp(24px, 2.25vw, 34px); font-weight: 400; letter-spacing: -0.025em; line-height: 0.98; }
.category-copy span { margin-bottom: 8px; }
.category-card.is-empty .category-image::after {
  display: grid;
  height: 100%;
  color: var(--muted);
  content: "Image to follow";
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  place-items: center;
  text-transform: uppercase;
}

.stories-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); }
.story-card { max-width: 780px; }
.story-image { display: block; overflow: hidden; background: #ede9e1; }
.story-image img { width: 100%; aspect-ratio: 1.9; object-fit: cover; transition: transform 600ms ease; }
.story-image:hover img { transform: scale(1.015); }
.card-meta { display: flex; justify-content: space-between; gap: 16px; margin: 14px 0 34px; color: var(--muted); }
.card-meta p { margin: 0; }
.story-card h3 { margin-bottom: 15px; font-size: clamp(30px, 3.4vw, 48px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.98; }
.story-card > p { max-width: 460px; margin-bottom: 0; color: var(--muted); font-size: 16px; }
.story-image.is-oracle { background: #f4f0e7; }
.story-image.is-oracle img { padding: 3%; object-fit: contain; }

.article-header { padding: clamp(58px, 9vw, 130px) var(--edge) clamp(50px, 7vw, 100px); }
.article-meta { display: flex; justify-content: space-between; gap: 20px; margin-bottom: clamp(64px, 10vw, 150px); color: var(--muted); }
.article-meta p { margin: 0; }
.article-header h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.article-deck { max-width: 620px; margin: clamp(38px, 5vw, 68px) 0 0 auto; color: var(--muted); font-size: clamp(20px, 2vw, 28px); line-height: 1.18; }
.article-hero { margin: 0; padding: 0 var(--edge) clamp(60px, 9vw, 128px); }
.article-hero img { width: 100%; }
figcaption { margin-top: 11px; color: var(--muted); }

.article-section {
  display: grid;
  grid-template-columns: minmax(120px, 0.48fr) minmax(0, 1fr);
  gap: clamp(30px, 8vw, 140px);
  padding: clamp(64px, 9vw, 130px) var(--edge);
  border-top: 1px solid var(--line);
}
.section-label { color: var(--muted); }
.article-copy { max-width: 790px; }
.article-copy p { color: var(--muted); font-size: clamp(16px, 1.35vw, 19px); }
.article-copy .lead { margin-bottom: 30px; color: var(--ink); font-size: clamp(25px, 2.6vw, 37px); letter-spacing: -0.025em; line-height: 1.1; }
.article-copy h2 { margin-bottom: 32px; font-size: clamp(32px, 3.8vw, 54px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.98; }

.oracle-mark {
  display: grid;
  min-height: min(72svh, 760px);
  margin: 0;
  padding: clamp(58px, 8vw, 110px) var(--edge) 24px;
  border-top: 1px solid var(--line);
  background: #272697;
  place-items: center;
}
.oracle-mark img {
  width: min(330px, 58vw);
  height: auto;
  border-radius: 50%;
}
.oracle-mark figcaption {
  align-self: end;
  justify-self: start;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.7);
}

.article-end {
  display: grid;
  min-height: 68svh;
  align-content: center;
  justify-items: center;
  padding: 80px var(--edge);
  border-top: 1px solid var(--line);
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.article-end > p { margin-bottom: 50px; opacity: 0.72; }
.article-end h2 { margin-bottom: 48px; font-size: clamp(42px, 6.5vw, 92px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.94; }
.article-end a { color: #fff; }
.article-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 34px; }
.journal-footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px var(--edge) 30px; border-top: 1px solid var(--line); color: var(--muted); }

/* Development story: first collection */
.process-story { background: #f1eee6; }
.process-header {
  display: grid;
  min-height: min(82svh, 840px);
  grid-template-rows: auto 1fr auto;
}
.process-header h1 {
  align-self: center;
  max-width: 1320px;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.91;
  text-transform: none;
}
.process-header .article-deck { max-width: 710px; }

.process-opening {
  display: grid;
  grid-template-columns: minmax(120px, 0.48fr) minmax(0, 1fr);
  gap: clamp(30px, 8vw, 140px);
  padding: clamp(80px, 12vw, 180px) var(--edge);
  border-top: 1px solid var(--line);
}
.process-opening-copy { max-width: 890px; }
.process-opening h2 {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 72px);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.process-opening-copy p {
  max-width: 680px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.3;
}

.process-chapter {
  display: grid;
  grid-template-columns: minmax(250px, 0.74fr) minmax(0, 1fr);
  gap: clamp(40px, 9vw, 150px);
  padding: clamp(90px, 12vw, 178px) var(--edge);
  border-top: 1px solid var(--line);
}
.chapter-heading p,
.process-step > header > p,
.spec-section > div > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.chapter-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.chapter-copy { max-width: 680px; padding-top: clamp(52px, 7vw, 100px); }
.chapter-copy p { color: var(--muted); font-size: clamp(16px, 1.35vw, 19px); line-height: 1.4; }
.chapter-copy .lead {
  margin-bottom: 38px;
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  padding: 0 var(--edge) clamp(100px, 14vw, 210px);
}
.image-pair figure,
.fabric-sequence figure,
.sample-grid figure { margin: 0; }
.image-pair img,
.fabric-sequence img,
.sample-grid img { width: 100%; background: #dedbd4; }
.image-pair-design figure:first-child { margin-top: clamp(70px, 10vw, 150px); }

.fabric-sequence {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  padding: 0 var(--edge) clamp(105px, 14vw, 210px);
}
.fabric-sequence .fabric-main { grid-column: 1 / span 7; }
.fabric-sequence > figure:nth-child(2) { grid-column: 9 / span 4; margin-top: 18vw; }
.fabric-sequence > figure:nth-child(3) { grid-column: 4 / span 5; margin-top: 6vw; }

.testing-intro { padding-bottom: clamp(100px, 14vw, 210px); }
.process-step { border-top: 1px solid var(--line); }
.process-step > header {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(260px, 0.8fr) minmax(240px, 0.65fr);
  gap: clamp(24px, 6vw, 100px);
  align-items: start;
  padding: clamp(52px, 7vw, 96px) var(--edge);
}
.process-step > header h3,
.spec-section h3 {
  margin: 0;
  font-size: clamp(32px, 3.7vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.process-step > header > p:last-child {
  max-width: 370px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(15px, 1.25vw, 18px);
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  padding: 0 var(--edge) clamp(110px, 15vw, 220px);
}
.sample-cutting { grid-column: 1 / span 4; margin-top: 13vw !important; }
.sample-draping { grid-column: 5 / span 8; }
.sample-sewing { grid-column: 7 / span 5; margin-top: 5vw !important; }
.detail-review .image-pair { padding-bottom: clamp(110px, 15vw, 220px); }
.detail-review .image-pair figure:last-child { margin-top: 9vw; }

.spec-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: clamp(50px, 10vw, 180px);
  align-items: end;
  min-height: 72svh;
  padding: clamp(90px, 12vw, 180px) var(--edge);
  border-top: 1px solid var(--line);
}
.spec-section > p { max-width: 640px; margin: 0; color: var(--muted); font-size: clamp(18px, 1.65vw, 24px); line-height: 1.38; }
.process-end { background: var(--ink); }

.journal-header {
  min-height: 96px;
  align-items: start;
  padding-top: 18px;
}
.journal-intro {
  min-height: 310px;
  padding-top: 88px;
  padding-bottom: 30px;
}
.journal-intro h1 {
  align-self: end;
  font-family: var(--sans);
  font-size: clamp(28px, 2.7vw, 40px);
  letter-spacing: 0.01em;
  line-height: 1;
}
.journal-status { margin-top: 58px; }
.journal-status p { max-width: 520px; font-size: 17px; }
.category-navigation { padding-top: 15px; padding-bottom: 15px; }
.featured-story { padding: 72px var(--edge) 92px; }
.featured-image {
  width: min(72vw, 920px);
  margin: 0 auto;
}
.featured-copy {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 28px 0 0;
  border-top: 0;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr) minmax(220px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
}
.featured-copy h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: 0;
  line-height: 1.08;
}
.featured-copy > div > p { font-size: 16px; }
.category-section,
.latest-section { padding-top: 82px; padding-bottom: 94px; }
.section-heading { margin-bottom: 54px; }
.section-heading h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: 0;
  line-height: 1.08;
}
.category-grid { gap: 1px; border: 0; background: var(--line); }
.category-card { border: 0; background: var(--paper); }
.category-image { aspect-ratio: 4 / 5; }
.category-copy { min-height: 158px; padding: 14px 0 0; }
.category-copy h3 {
  align-self: start;
  margin: 20px 0 24px;
  font-family: var(--sans);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0;
  line-height: 1.08;
}
.stories-grid { gap: clamp(32px, 5vw, 74px); }
.story-card { max-width: 620px; }
.story-image img { aspect-ratio: 4 / 3; }
.card-meta { margin: 12px 0 24px; }
.story-card h3 {
  font-family: var(--sans);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0;
  line-height: 1.08;
}
.article-header {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-top: 112px;
  padding-bottom: 88px;
}
.article-meta { margin-bottom: 72px; }
.article-header h1,
.process-header h1 {
  max-width: 720px;
  font-family: var(--sans);
  font-size: clamp(34px, 4.1vw, 54px);
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}
.article-deck,
.process-header .article-deck {
  max-width: 500px;
  margin-top: 34px;
  margin-left: 0;
  font-size: 18px;
  line-height: 1.35;
}
.article-hero {
  width: min(72vw, 920px);
  margin: 0 auto;
  padding: 0 0 92px;
}
.article-section,
.process-opening,
.process-chapter {
  width: min(calc(100% - (var(--edge) * 2)), 1040px);
  margin: 0 auto;
  padding: 92px 0;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 560px);
  gap: clamp(38px, 8vw, 120px);
}
.article-copy,
.process-opening-copy,
.chapter-copy { max-width: 560px; }
.article-copy p,
.process-opening-copy p,
.chapter-copy p { font-size: 16px; line-height: 1.5; }
.article-copy .lead,
.chapter-copy .lead {
  margin-bottom: 28px;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.22;
}
.article-copy h2,
.process-opening h2,
.chapter-heading h2 {
  font-size: clamp(26px, 2.7vw, 38px);
  letter-spacing: 0;
  line-height: 1.08;
}
.process-header { min-height: 0; grid-template-rows: auto; }
.process-header h1 { align-self: auto; }
.process-opening-copy p { max-width: 560px; margin-left: 0; }
.process-opening h2 { margin-bottom: 42px; }
.chapter-copy { padding-top: 44px; }
.image-pair,
.fabric-sequence,
.sample-grid {
  width: min(74vw, 1040px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-bottom: 112px;
  padding-left: 0;
}
.image-pair-design figure:first-child { margin-top: 52px; }
.fabric-sequence > figure:nth-child(2) { margin-top: 10vw; }
.fabric-sequence > figure:nth-child(3) { margin-top: 3vw; }
.process-step > header,
.spec-section {
  width: min(calc(100% - (var(--edge) * 2)), 1040px);
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}
.process-step > header { padding-top: 72px; padding-bottom: 58px; }
.process-step > header h3,
.spec-section h3 { font-size: clamp(25px, 2.7vw, 38px); letter-spacing: 0; }
.sample-cutting { margin-top: 7vw !important; }
.sample-sewing { margin-top: 3vw !important; }
.detail-review .image-pair { padding-bottom: 112px; }
.spec-section {
  min-height: 0;
  padding-top: 96px;
  padding-bottom: 112px;
}
.spec-section > p { font-size: 18px; }
.oracle-mark {
  width: min(72vw, 920px);
  min-height: min(62svh, 640px);
  margin: 0 auto 92px;
}
.article-end { min-height: 460px; }
.article-end h2 { font-size: clamp(34px, 4.5vw, 58px); }

@media (max-width: 720px) {
  .journal-header { grid-template-columns: 1fr auto; align-items: center; gap: 14px; min-height: 64px; padding-top: 10px; padding-bottom: 10px; }
  .brand-mark { width: 82px; height: 25px; }
  .journal-header nav { justify-content: flex-end; gap: 12px; }
  .journal-header nav a { font-size: 9px; }
  .journal-intro { min-height: 54svh; padding-top: 44px; }
  .journal-intro h1 { font-size: clamp(48px, 14vw, 66px); }
  .journal-status { grid-template-columns: 1fr; }
  .category-navigation { gap: 25px; }
  .featured-copy { grid-template-columns: 1fr; gap: 32px; }
  .featured-copy h2 { margin: 36px 0 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card#inspiration { grid-column: 1 / -1; }
  .category-copy { min-height: 210px; padding: 14px; }
  .category-copy h3 { font-size: clamp(23px, 6vw, 30px); }
  .stories-grid { grid-template-columns: 1fr; }
  .article-header { padding-top: 62px; }
  .article-meta { margin-bottom: 70px; }
  .article-header h1 { font-size: clamp(42px, 12vw, 58px); }
  .article-deck { margin-left: 0; }
  .article-section { grid-template-columns: 1fr; gap: 32px; }
  .process-header { min-height: min(76svh, 650px); }
  .process-header h1 { font-size: clamp(40px, 11.5vw, 54px); }
  .process-opening,
  .process-chapter { grid-template-columns: 1fr; gap: 38px; }
  .process-opening-copy p { margin-left: 0; }
  .process-chapter { padding-bottom: 92px; }
  .chapter-copy { padding-top: 0; }
  .image-pair { grid-template-columns: 1fr; padding-bottom: 110px; }
  .image-pair-design figure:first-child { margin-top: 0; }
  .image-pair-design figure:last-child,
  .detail-review .image-pair figure:last-child { width: 78%; margin-top: 40px; margin-left: auto; }
  .fabric-sequence { grid-template-columns: repeat(6, minmax(0, 1fr)); padding-bottom: 110px; }
  .fabric-sequence .fabric-main { grid-column: 1 / span 5; }
  .fabric-sequence > figure:nth-child(2) { grid-column: 3 / span 4; margin-top: 36px; }
  .fabric-sequence > figure:nth-child(3) { grid-column: 1 / span 5; margin-top: 36px; }
  .process-step > header { grid-template-columns: 1fr; gap: 18px; }
  .process-step > header h3 { margin-bottom: 16px; }
  .sample-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); padding-bottom: 110px; }
  .sample-cutting { grid-column: 1 / span 4; margin-top: 0 !important; }
  .sample-draping { grid-column: 1 / span 6; margin-top: 40px !important; }
  .sample-sewing { grid-column: 3 / span 4; margin-top: 40px !important; }
  .spec-section { grid-template-columns: 1fr; gap: 52px; min-height: 62svh; }
  .journal-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .journal-intro { min-height: 250px; padding-top: 54px; }
  .journal-intro h1 { font-size: 30px; }
  .journal-status { margin-top: 44px; }
  .journal-status p { font-size: 16px; }
  .featured-story { padding: 42px var(--edge) 64px; }
  .featured-image { width: 100%; }
  .featured-copy { padding-top: 20px; }
  .featured-copy h2 { margin: 12px 0 4px; font-size: 24px; }
  .category-section,
  .latest-section { padding-top: 60px; padding-bottom: 66px; }
  .category-grid { grid-template-columns: 1fr; gap: 42px; background: transparent; }
  .category-card#inspiration { grid-column: auto; }
  .category-image { aspect-ratio: 4 / 3; }
  .category-copy { min-height: 138px; }
  .stories-grid { gap: 64px; }
  .story-card h3 { font-size: 24px; }
  .article-header { padding-top: 62px; padding-bottom: 62px; }
  .article-meta { margin-bottom: 52px; }
  .article-header h1,
  .process-header h1 { font-size: 34px; line-height: 1.06; }
  .article-deck,
  .process-header .article-deck { font-size: 17px; }
  .article-hero { width: auto; padding: 0 var(--edge) 72px; }
  .article-section,
  .process-opening,
  .process-chapter {
    width: auto;
    margin: 0 var(--edge);
    padding: 72px 0;
    gap: 30px;
  }
  .article-copy h2,
  .process-opening h2,
  .chapter-heading h2 { font-size: 28px; }
  .chapter-copy { padding-top: 0; }
  .image-pair,
  .fabric-sequence,
  .sample-grid { width: auto; margin: 0 var(--edge); padding-bottom: 84px; }
  .process-step > header,
  .spec-section { width: auto; margin: 0 var(--edge); }
  .oracle-mark { width: auto; min-height: 520px; margin: 0 var(--edge) 72px; }
  .article-end { min-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 1ms !important; transition-duration: 1ms !important; }
}
