:root {
  --paper: #f2efe8;
  --ink: #171714;
  --muted: #6d6962;
  --line: rgba(23, 23, 20, .17);
  --aubergine: #2b2427;
  --aubergine-soft: #95898a;
  --sand: #c7baa2;
  --stone: #9d998f;
  --cream: #e5ddcb;
  --sage: #8e9488;
  --clay: #9b705d;
  --gutter: clamp(20px, 4vw, 68px);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.site-header {
  min-height: 92px;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(242, 239, 232, .94);
  backdrop-filter: blur(14px);
}
.wordmark {
  grid-column: 2;
  justify-self: center;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
  letter-spacing: .13em;
}
.nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  gap: 25px;
}
.nav a, .header-cta {
  font-family: var(--sans);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}
.header-cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.hero {
  min-height: 780px;
  padding: clamp(76px, 8vw, 132px) var(--gutter) clamp(86px, 9vw, 142px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: clamp(54px, 7vw, 118px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .19em;
  font-weight: 700;
}
.hero h1, .section-heading h2, .why-copy h2, .identity h2, .entre h2, .final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(62px, 6.1vw, 102px);
  line-height: .92;
}
.hero h1 em, .identity h2 em { font-weight: 400; }
.hero-dek {
  max-width: 520px;
  margin: 32px 0 0;
  font-size: clamp(19px, 1.4vw, 23px);
  line-height: 1.4;
}
.signup {
  margin-top: 42px;
  display: flex;
  max-width: 590px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
}
.signup input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 17px 4px 14px;
  font: inherit;
  outline: none;
}
.signup input::placeholder { color: #77746b; }
.signup button {
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 0 22px;
}
.microcopy {
  color: var(--muted);
  margin-top: 11px;
  font-family: var(--sans);
  font-size: 11px;
}

.hero-art {
  min-height: 610px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 28px repeat(10, 1fr);
  gap: 10px;
  align-self: stretch;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.issue-label {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .16em;
}
.art-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(30, 27, 20, .055);
}
.art-card::before, .discovery-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(255,255,255,.32), transparent 23%),
    linear-gradient(145deg, transparent 53%, rgba(0,0,0,.09));
}
.art-card span, .art-card b {
  position: absolute;
  z-index: 2;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .14em;
}
.art-card span { left: 12px; top: 10px; }
.art-card b { right: 12px; bottom: 10px; }
.card-a { grid-column: 1 / 8; grid-row: 2 / 7; background: var(--sand); }
.card-b { grid-column: 8 / 13; grid-row: 2 / 5; background: var(--sage); }
.card-c { grid-column: 8 / 11; grid-row: 5 / 8; background: var(--clay); }
.card-d { grid-column: 1 / 6; grid-row: 7 / 12; background: var(--cream); }
.card-e { grid-column: 6 / 13; grid-row: 8 / 12; background: var(--stone); }

.manifesto {
  background: var(--aubergine);
  color: var(--paper);
  padding: clamp(78px, 9vw, 148px) var(--gutter);
  font-family: var(--serif);
  font-size: clamp(42px, 6.2vw, 100px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.manifesto p { margin: 0; }
.manifesto p + p { margin-top: 8px; text-align: right; }
.manifesto span {
  color: var(--aubergine-soft);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.manifesto strong { font-weight: 400; font-style: italic; }

.edit { padding: clamp(90px, 9vw, 150px) var(--gutter); }
.section-heading {
  display: grid;
  grid-template-columns: .7fr 1fr 1.1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}
.section-heading .eyebrow { margin: 0 0 12px; align-self: start; }
.section-heading h2 { margin: 0; font-size: clamp(50px, 5vw, 82px); line-height: .95; }
.section-heading > p:last-child {
  margin: 0;
  max-width: 480px;
  font-size: 18px;
  line-height: 1.48;
}
.discoveries {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1fr;
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}
.discovery:nth-child(2) { margin-top: 84px; }
.discovery-art { position: relative; height: 430px; overflow: hidden; }
.art-one { background: linear-gradient(120deg, #b7a78a 0 42%, #766f62 42% 45%, #d3c9b8 45%); }
.art-two { background: linear-gradient(155deg, #5f665c 0 32%, #a9a491 32% 65%, #d6cfc0 65%); }
.art-three { background: linear-gradient(135deg, #d6cbb6 0 27%, #9b6f58 27% 60%, #5f574d 60%); }
.discovery-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 13px 0 10px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .13em;
}
.discovery h3 {
  font-size: clamp(28px, 2.3vw, 38px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 23px 0 14px;
}
.discovery p {
  color: #4f4d47;
  max-width: 95%;
  font-size: 16px;
  line-height: 1.55;
}
.discovery a, .text-cta {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.sample-note {
  margin: 46px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

.why-five {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 720px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(280px, 38vw, 610px);
  line-height: .75;
  letter-spacing: -.1em;
  background: #d8cfbd;
  overflow: hidden;
}
.why-copy { padding: clamp(70px, 8vw, 130px) var(--gutter); align-self: center; }
.why-copy h2 { margin: 0 0 26px; font-size: clamp(60px, 7vw, 112px); line-height: .8; }
.why-lead {
  font-size: clamp(26px, 2.8vw, 46px);
  line-height: 1.08;
  max-width: 600px;
  margin: 0 0 30px;
}
.why-copy > p:not(.eyebrow):not(.why-lead) {
  max-width: 590px;
  font-size: 17px;
  line-height: 1.62;
}
.why-proof { margin-top: 28px; font-style: italic; }

.identity { padding: clamp(95px, 11vw, 180px) var(--gutter); }
.identity > h2 {
  max-width: 1030px;
  font-size: clamp(44px, 5.8vw, 90px);
  line-height: .99;
  margin: 0;
}
.identity-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.identity-grid div { padding: 24px 34px 20px 0; min-height: 165px; border-right: 1px solid var(--line); }
.identity-grid div:not(:first-child) { padding-left: 34px; }
.identity-grid div:last-child { border-right: 0; }
.identity-grid span { font-family: var(--sans); font-size: 9px; letter-spacing: .15em; }
.identity-grid p { font-size: 19px; max-width: 310px; line-height: 1.45; }

.entre { padding: 0 var(--gutter) clamp(90px, 10vw, 160px); }
.entre-card {
  background: var(--aubergine);
  color: var(--paper);
  padding: clamp(56px, 6.5vw, 98px) clamp(58px, 7vw, 108px);
}
.entre h2 {
  font-size: clamp(52px, 6.5vw, 98px);
  line-height: .86;
  margin: 0 0 28px;
}
.entre-card > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.5;
}
.brand-progression {
  margin: 60px 0 28px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(242,239,232,.28);
}
.brand-progression div { padding: 24px 24px 18px 0; border-right: 1px solid rgba(242,239,232,.28); }
.brand-progression div:not(:first-child) { padding-left: 24px; }
.brand-progression div:last-child { border-right: 0; }
.brand-progression small {
  display: block;
  color: #b2a9aa;
  font-family: var(--sans);
  letter-spacing: .14em;
  font-size: 9px;
  margin-bottom: 12px;
}
.brand-progression strong { display: block; font-weight: 400; font-size: 19px; }
.text-cta.light { color: var(--paper); }

.final-cta { text-align: center; padding: clamp(110px, 13vw, 200px) var(--gutter); }
.final-cta h2 { max-width: 940px; margin: 0 auto; font-size: clamp(54px, 7vw, 112px); line-height: .94; }
.final-cta .signup { margin-left: auto; margin-right: auto; }

footer {
  min-height: 130px;
  border-top: 1px solid var(--line);
  padding: 28px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
footer .wordmark { grid-column: 1; justify-self: start; font-size: 24px; }
footer p {
  margin: 0;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
footer p:last-child { justify-self: end; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--aubergine);
  color: white;
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 11px;
  transition: .2s ease;
  z-index: 40;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .site-header { min-height: 76px; }
  .nav { display: none; }
  .wordmark { font-size: 27px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { min-height: 530px; margin-top: 18px; padding-left: 0; border-left: 0; }
  .section-heading { grid-template-columns: 1fr; }
  .discoveries { grid-template-columns: 1fr; gap: 64px; }
  .discovery:nth-child(2) { margin-top: 0; }
  .discovery-art { height: min(105vw, 590px); }
  .why-five { grid-template-columns: 1fr; }
  .why-number { min-height: 420px; }
  .identity-grid, .brand-progression { grid-template-columns: 1fr; }
  .identity-grid div, .brand-progression div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; }
  .brand-progression div { border-bottom-color: rgba(242,239,232,.28); }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer .wordmark { grid-column: 1; }
  footer p:last-child { justify-self: start; }
}

@media (max-width: 560px) {
  .site-header { grid-template-columns: 1fr auto 1fr; padding-left: 18px; padding-right: 18px; }
  .header-cta { font-size: 8px; }
  .wordmark { font-size: 23px; }
  .hero { padding-top: 65px; }
  .hero h1 { font-size: 52px; }
  .hero-dek { font-size: 18px; }
  .hero-art { min-height: 430px; gap: 7px; }
  .signup { display: grid; grid-template-columns: 1fr; border-bottom: 0; gap: 8px; }
  .signup input { border-bottom: 1px solid var(--ink); }
  .signup button { background: var(--ink); color: var(--paper); padding: 15px 14px; }
  .manifesto { font-size: 45px; }
  .why-number { min-height: 330px; font-size: 330px; }
  .entre-card { margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); }
}

/* V3 refinements */
.hero h1 > span,
.hero h1 > em {
  display: block;
}
.hero h1 > em {
  margin-top: .08em;
}

.section-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
}
.section-title-block {
  min-width: 0;
}
.section-title-block .eyebrow {
  margin-bottom: 18px;
}
.section-heading h2 {
  max-width: 760px;
}
.section-heading > p:last-child {
  justify-self: end;
  align-self: end;
}

.why-lead span {
  display: block;
}
.why-lead span + span {
  margin-top: .18em;
}

.collection-preview {
  padding: clamp(88px, 9vw, 145px) var(--gutter);
  border-top: 1px solid var(--line);
}
.collection-preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  padding-bottom: 48px;
}
.collection-preview h2,
.collection-page h1,
.collection-page h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.collection-preview h2 {
  margin: 0;
  font-size: clamp(48px, 5.7vw, 88px);
  line-height: .95;
}
.collection-preview-copy {
  justify-self: end;
  max-width: 390px;
}
.collection-preview-copy p {
  margin: 0 0 18px;
  font-size: 19px;
}
.issue-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.issue-tile {
  min-height: 250px;
  padding: 28px 28px 24px 0;
  text-decoration: none;
  display: grid;
  grid-template-rows: 1fr auto auto;
  border-right: 1px solid var(--line);
}
.issue-tile:not(:first-child) {
  padding-left: 28px;
}
.issue-tile:last-child {
  border-right: 0;
}
.issue-no {
  font-family: var(--serif);
  font-size: clamp(72px, 7vw, 114px);
  line-height: .8;
  letter-spacing: -.06em;
}
.issue-categories,
.issue-link {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.issue-categories {
  color: var(--muted);
  margin-bottom: 14px;
}
.issue-link {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.issue-tile:hover .issue-no,
.issue-tile:focus-visible .issue-no {
  font-style: italic;
}

.collection-page {
  padding: clamp(82px, 9vw, 140px) var(--gutter) clamp(110px, 12vw, 180px);
}
.collection-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: end;
  padding-bottom: clamp(66px, 7vw, 110px);
  border-bottom: 1px solid var(--line);
}
.collection-page h1 {
  margin: 0;
  font-size: clamp(72px, 8.5vw, 138px);
  line-height: .82;
}
.collection-intro {
  margin: 0;
  max-width: 490px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.archive-issue {
  min-height: 420px;
  padding: 44px 44px 38px 0;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  text-decoration: none;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 34px;
  align-items: start;
}
.archive-issue:nth-child(even) {
  border-right: 0;
  padding-left: 44px;
}
.archive-number {
  font-family: var(--serif);
  font-size: clamp(78px, 8vw, 128px);
  line-height: .75;
  letter-spacing: -.07em;
}
.archive-content {
  min-width: 0;
}
.archive-art {
  height: 220px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.archive-issue:nth-child(2) .archive-art { background: var(--sage); }
.archive-issue:nth-child(3) .archive-art { background: var(--clay); }
.archive-issue:nth-child(4) .archive-art { background: var(--cream); }
.archive-issue:nth-child(5) .archive-art { background: var(--stone); }
.archive-issue:nth-child(6) .archive-art { background: #b4a79b; }
.archive-issue:nth-child(7) .archive-art { background: #a4aa9b; }
.archive-issue:nth-child(8) .archive-art { background: #c6b6a3; }
.archive-art::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(23, 23, 20, .25);
}
.archive-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
}
.archive-issue h2 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
}
.archive-issue p {
  margin: 0 0 18px;
  max-width: 440px;
  color: #4f4d47;
  font-size: 16px;
}
.archive-open {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.collection-note {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-rows: auto auto;
    row-gap: 14px;
    padding-bottom: 14px;
  }
  .nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
    justify-content: center;
    gap: clamp(14px, 4vw, 28px);
    overflow-x: auto;
    white-space: nowrap;
  }
  .nav a { font-size: 8px; }
  .wordmark { grid-row: 1; }
  .header-cta { grid-row: 1; }
  .section-heading,
  .collection-preview-head,
  .collection-page-head {
    grid-template-columns: 1fr;
  }
  .section-heading > p:last-child,
  .collection-preview-copy {
    justify-self: start;
  }
  .issue-strip,
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .issue-tile,
  .issue-tile:not(:first-child) {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 190px;
  }
  .issue-tile:last-child { border-bottom: 0; }
  .archive-issue,
  .archive-issue:nth-child(even) {
    border-right: 0;
    padding: 38px 0;
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 560px) {
  .site-header { min-height: 108px; }
  .nav { justify-content: flex-start; }
  .hero h1 > em { margin-top: .14em; }
  .collection-preview-head { padding-bottom: 34px; }
  .archive-issue,
  .archive-issue:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .archive-number { font-size: 78px; }
}

@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
    gap: clamp(42px, 5vw, 84px);
  }
  .hero h1 {
    font-size: clamp(58px, 4.8vw, 78px);
  }
  .hero h1 > span {
    white-space: nowrap;
  }
  .why-five {
    grid-template-columns: .8fr 1.2fr;
  }
  .why-lead {
    font-size: clamp(27px, 2.3vw, 34px);
    max-width: 720px;
  }
  .why-lead span {
    white-space: nowrap;
  }
}

/* V4: Sunday Edit naming and affiliate ready Collection */
@media (min-width: 901px) {
  .hero h1 {
    font-size: clamp(72px, 5.75vw, 96px);
    max-width: 820px;
  }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 58px; }
}

/* Homepage Collection is intentionally only a doorway to the archive. */
.collection-preview-head {
  padding-bottom: 0;
}

.collection-catalog .collection-page-head {
  margin-bottom: 0;
}
.category-nav {
  position: sticky;
  top: 92px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 232, .96);
  backdrop-filter: blur(12px);
}
.category-nav a {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.category-nav a:last-child { border-right: 0; }
.category-nav a:hover,
.category-nav a:focus-visible { font-style: italic; }

.collection-category {
  padding: clamp(78px, 8vw, 126px) 0 clamp(88px, 9vw, 142px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 170px;
}
.category-head {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(260px, .65fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 48px;
}
.category-index {
  margin: 0;
  align-self: start;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .15em;
}
.category-head h2 {
  margin: 0;
  font-size: clamp(58px, 6.3vw, 104px);
  line-height: .88;
}
.category-head > p:last-child {
  margin: 0;
  max-width: 390px;
  justify-self: end;
  font-size: 18px;
  line-height: 1.45;
}
.collection-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}
.collection-item { min-width: 0; }
.item-image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
  background: var(--sand);
}
.item-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(255,255,255,.35), transparent 25%), linear-gradient(145deg, transparent 55%, rgba(0,0,0,.08));
  transition: transform .45s ease;
}
.collection-item:hover .item-image::after { transform: scale(1.035); }
.item-kicker {
  margin: 15px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.collection-item h3 {
  margin: 12px 0 9px;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.025em;
}
.item-note {
  margin: 0;
  color: #56534d;
  font-size: 14px;
  line-height: 1.5;
}
.item-link {
  display: inline-block;
  margin-top: 13px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.object-1 { background: linear-gradient(135deg,#b8aa91 0 54%,#817970 54%); }
.object-2 { background: linear-gradient(158deg,#d5c9b5 0 43%,#8f8170 43% 67%,#b8b09f 67%); }
.object-3 { background: linear-gradient(120deg,#9fa096 0 40%,#d5ccbc 40%); }
.object-4 { background: linear-gradient(145deg,#a87d67 0 36%,#d6cbb9 36% 72%,#67655e 72%); }
.read-1 { background: linear-gradient(90deg,#c6b59e 0 28%,#e1d8c8 28% 72%,#726d64 72%); }
.read-2 { background: linear-gradient(145deg,#81857d 0 37%,#c6c0ae 37% 70%,#9d735f 70%); }
.read-3 { background: linear-gradient(110deg,#dfd5c4 0 49%,#6e6860 49% 55%,#b39f84 55%); }
.read-4 { background: linear-gradient(155deg,#a67461 0 32%,#d2c8b8 32% 68%,#777b73 68%); }
.wear-1 { background: linear-gradient(145deg,#6a655e 0 43%,#bbb09d 43% 72%,#d5cbbb 72%); }
.wear-2 { background: linear-gradient(120deg,#9d8a78 0 40%,#d8cdbb 40% 62%,#7c8179 62%); }
.wear-3 { background: linear-gradient(160deg,#c7b9a2 0 58%,#716b62 58%); }
.wear-4 { background: linear-gradient(135deg,#8d6e5f 0 34%,#c9c0b0 34% 66%,#858b81 66%); }
.home-1 { background: linear-gradient(120deg,#b7a78a 0 42%,#766f62 42% 45%,#d3c9b8 45%); }
.home-2 { background: linear-gradient(145deg,#dad0be 0 40%,#969488 40% 65%,#b6a28a 65%); }
.home-3 { background: linear-gradient(125deg,#8e9488 0 46%,#d7ccba 46%); }
.home-4 { background: linear-gradient(150deg,#c3af95 0 35%,#77716a 35% 63%,#ded5c5 63%); }
.place-1 { background: linear-gradient(155deg,#5f665c 0 32%,#a9a491 32% 65%,#d6cfc0 65%); }
.place-2 { background: linear-gradient(115deg,#d4c8b7 0 44%,#9b705d 44% 70%,#777a72 70%); }
.place-3 { background: linear-gradient(145deg,#a8a99e 0 38%,#d8cfbf 38% 72%,#8b6f60 72%); }
.place-4 { background: linear-gradient(130deg,#c8b79d 0 50%,#69665f 50%); }

@media (max-width: 1000px) {
  .category-nav { top: 108px; grid-template-columns: repeat(5, minmax(130px, 1fr)); overflow-x: auto; }
  .collection-items { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 58px; }
  .category-head { grid-template-columns: 70px 1fr; }
  .category-head > p:last-child { grid-column: 2; justify-self: start; }
}
@media (max-width: 560px) {
  .category-nav { top: 108px; justify-content: start; }
  .category-nav a { min-width: 126px; min-height: 52px; }
  .collection-category { scroll-margin-top: 164px; }
  .category-head { grid-template-columns: 1fr; gap: 14px; }
  .category-head > p:last-child { grid-column: 1; }
  .collection-items { grid-template-columns: 1fr 1fr; gap: 34px 14px; }
  .collection-item h3 { font-size: 22px; }
  .item-note { font-size: 13px; }
}


/* Five discovery comparison layout: three above, two more generous cards below. */
@media (min-width: 901px) {
  .discoveries {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 76px;
  }
  .discovery-1 { grid-column: 1 / span 2; }
  .discovery-2 { grid-column: 3 / span 2; margin-top: 84px; }
  .discovery-3 { grid-column: 5 / span 2; }
  .discovery-4 { grid-column: 1 / span 3; }
  .discovery-5 { grid-column: 4 / span 3; }
  .discovery-wide .discovery-art { height: 520px; }
  .discovery-wide h3 { max-width: 560px; }
  .identity > h2 {
    max-width: 950px;
    font-size: clamp(38px, 4.7vw, 72px);
    line-height: 1.02;
  }
}

.art-four { background: linear-gradient(145deg, #c8b9aa 0 38%, #776b61 38% 60%, #d8d0c5 60%); }
.art-five { background: linear-gradient(120deg, #aaa897 0 28%, #d5c9b8 28% 64%, #817569 64%); }

@media (max-width: 900px) {
  .discovery-4, .discovery-5 { margin-top: 0; }
  .identity > h2 {
    font-size: clamp(38px, 8.5vw, 60px);
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  .identity > h2 { font-size: 40px; }
}


/* Clean hero comparison: let the weekly promise lead, then reveal all five once in This Week’s Edit. */
.hero {
  min-height: clamp(620px, 72vh, 820px);
  display: flex;
  align-items: center;
  padding-top: clamp(92px, 10vw, 160px);
  padding-bottom: clamp(105px, 11vw, 175px);
}
.hero-copy {
  width: min(100%, 1020px);
}
@media (min-width: 901px) {
  .hero {
    display: flex;
  }
  .hero h1 {
    max-width: 980px;
    font-size: clamp(78px, 7vw, 116px);
  }
  .hero-dek {
    margin-top: 38px;
  }
  .signup {
    margin-top: 58px;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    display: block;
  }
}
@media (max-width: 560px) {
  .hero {
    padding-top: 78px;
    padding-bottom: 92px;
  }
  .hero h1 {
    font-size: 58px;
  }
}

/* Centered hero final: keep the opening quiet and ceremonial while the rest of the site stays editorial. */
.hero {
  justify-content: center;
  text-align: center;
}
.hero-copy {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  margin-inline: auto;
}
.hero-dek {
  margin-left: auto;
  margin-right: auto;
}
.hero .signup {
  width: min(100%, 760px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero .microcopy {
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    text-align: center;
  }
  .hero-copy {
    align-items: center;
  }
}

/* ============================================================
   WordPress production integration
   ============================================================ */
body.admin-bar .site-header { top: 32px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
}
.skip-link:focus { top: 16px; }
img { max-width: 100%; height: auto; }

/* Featured images replace the static color fields when supplied in WordPress. */
.discovery-art img,
.item-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.discovery-art::before { z-index: 1; }
.discovery > a.discovery-title-link { text-decoration: none; border-bottom: 0; margin-top: 0; font-family: inherit; font-size: inherit; letter-spacing: 0; text-transform: none; padding-bottom: 0; }
.discovery > a.discovery-title-link:hover h3,
.collection-item > a.collection-title-link:hover h3 { font-style: italic; }
.collection-title-link { color: inherit; text-decoration: none; }

/* Force typographic north-east arrow on iOS instead of the emoji glyph. */
.trouve-arrow-link::after {
  content: "\2197\FE0E";
  display: inline-block;
  margin-left: .34em;
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

/* Newsletter feedback. */
.signup-status {
  min-height: 1.3em;
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
}
.final-cta .signup-status { text-align: center; }

/* Generic WordPress pages/posts retain Trouvé's new visual system. */
.wp-page-hero {
  padding: clamp(78px, 9vw, 140px) var(--gutter) clamp(54px, 6vw, 92px);
  border-bottom: 1px solid var(--line);
}
.wp-page-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 8vw, 128px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.05em;
}
.wp-content {
  width: min(calc(100% - (2 * var(--gutter))), 820px);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) 0 clamp(90px, 10vw, 150px);
}
.wp-content p,
.wp-content li { font-size: 18px; line-height: 1.72; }
.wp-content h2,
.wp-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.03em;
}
.wp-content h2 { margin: 2.2em 0 .55em; font-size: clamp(34px, 4vw, 52px); }
.wp-content h3 { margin: 1.8em 0 .5em; font-size: clamp(26px, 3vw, 36px); }
.wp-content a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-featured-image { margin: 0 0 48px; }

/* Discovery single. */
.discovery-single-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  padding: clamp(76px, 8vw, 132px) var(--gutter) clamp(56px, 6vw, 92px);
  border-bottom: 1px solid var(--line);
}
.discovery-single-head h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.05em;
}
.discovery-single-meta {
  justify-self: end;
  width: 100%;
  max-width: 360px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.discovery-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
  gap: clamp(46px, 8vw, 120px);
  padding: clamp(64px, 7vw, 110px) var(--gutter) clamp(96px, 11vw, 170px);
  align-items: start;
}
.discovery-single-image { margin: 0; }
.discovery-single-image img { width: 100%; max-height: 900px; object-fit: cover; }
.discovery-single-copy p { margin-top: 0; font-size: 18px; line-height: 1.72; color: #4f4d47; }
.discovery-outbound { margin-top: 28px; }

/* Collection: real WordPress images instead of mock color blocks. */
.item-image.has-image::after { z-index: 1; }
.collection-empty {
  padding: 60px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-style: italic;
}

/* Footer legal links are kept hard-coded by design. */
.footer-legal-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer-legal-links a { text-decoration: none; }
.footer-legal-links a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .discovery-single-head,
  .discovery-single-layout { grid-template-columns: 1fr; }
  .discovery-single-meta { justify-self: start; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; padding-top: 36px; padding-bottom: 36px; }
  footer .wordmark { grid-column: 1; justify-self: center; }
}
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
@media (max-width: 560px) {
  .wp-content { width: calc(100% - 40px); }
  .discovery-single-head,
  .discovery-single-layout { padding-left: 20px; padding-right: 20px; }
  .discovery-single-head h1 { font-size: 52px; }
}



/* WP discovery featured-image links */
.discoveries .discovery > a.discovery-art {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
  letter-spacing: normal;
  text-transform: none;
}

.discoveries .discovery > a.discovery-art img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}



/* The Long Look: Trouvé long form editorial */
.long-look-preview {
  padding: clamp(90px, 10vw, 158px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.long-look-preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  padding-bottom: 48px;
}
.long-look-preview h2,
.long-look-page h1,
.long-look-page h2,
.article-page h1,
.article-page h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.long-look-preview h2 {
  margin: 0;
  font-size: clamp(50px, 5.8vw, 90px);
  line-height: .95;
}
.long-look-preview-intro {
  justify-self: end;
  max-width: 430px;
}
.long-look-preview-intro p {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.5;
}
.long-look-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.long-look-teaser {
  min-height: 330px;
  padding: 30px 34px 28px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.long-look-teaser:not(:first-child) { padding-left: 34px; }
.long-look-teaser:last-child { border-right: 0; }
.article-meta {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.long-look-teaser h3,
.article-card h3 {
  margin: 50px 0 14px;
  font-size: clamp(29px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.03em;
}
.long-look-teaser h3 a,
.article-card h3 a,
.featured-article h2 a { text-decoration: none; }
.long-look-teaser > p:not(.article-meta),
.article-card > p:not(.article-meta) {
  margin: 0;
  color: #55514b;
  font-size: 15px;
  line-height: 1.55;
}
.article-read {
  width: fit-content;
  margin-top: auto;
  padding-top: 30px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.long-look-page {
  padding: clamp(82px, 9vw, 140px) var(--gutter) clamp(110px, 12vw, 180px);
}
.long-look-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: end;
  padding-bottom: clamp(66px, 7vw, 110px);
  border-bottom: 1px solid var(--line);
}
.long-look-page h1 {
  margin: 0;
  font-size: clamp(72px, 8.5vw, 138px);
  line-height: .82;
}
.long-look-intro {
  margin: 0;
  max-width: 500px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.38;
}
.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
  padding: clamp(80px, 8vw, 126px) 0;
  border-bottom: 1px solid var(--line);
}
.featured-article-art {
  min-height: 560px;
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #b9ad99 0 34%, #6e6c64 34% 38%, #d8cebd 38% 72%, #8c7568 72%);
}
.featured-article-art::after,
.article-art::after,
.article-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 23%, rgba(255,255,255,.35), transparent 23%), linear-gradient(145deg, transparent 54%, rgba(0,0,0,.08));
}
.featured-article h2 {
  margin: 28px 0 22px;
  font-size: clamp(45px, 5vw, 76px);
  line-height: .97;
}
.featured-article-copy > p:not(.article-meta) {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.55;
}
.article-index { padding-top: clamp(85px, 9vw, 145px); }
.article-index-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  padding-bottom: 48px;
}
.article-index-head h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(50px, 5.8vw, 88px);
  line-height: .96;
}
.article-index-head > p {
  margin: 0;
  max-width: 420px;
  justify-self: end;
  font-size: 18px;
  line-height: 1.5;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 78px;
}
.article-card { display: flex; flex-direction: column; min-width: 0; }
.article-art {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  overflow: hidden;
}
.article-card h3 { margin-top: 24px; }
.article-card .article-read { padding-top: 24px; }
.article-art-1 { background: linear-gradient(135deg,#b9aa92 0 48%,#7f776d 48% 55%,#d6cdbc 55%); }
.article-art-2 { background: linear-gradient(145deg,#8e9488 0 38%,#d8cebd 38% 72%,#9b705d 72%); }
.article-art-3 { background: linear-gradient(125deg,#d3c6b4 0 42%,#65675f 42% 65%,#b79f88 65%); }
.article-art-4 { background: linear-gradient(155deg,#756c63 0 36%,#c9baa6 36% 69%,#969990 69%); }
.article-art-5 { background: linear-gradient(110deg,#d8cfbf 0 38%,#9d735f 38% 43%,#7b7e75 43% 70%,#c1b39e 70%); }
.article-art-6 { background: linear-gradient(140deg,#a5a89e 0 35%,#d8cdbb 35% 68%,#806f64 68%); }
.long-look-signup { margin-top: clamp(95px, 11vw, 175px); border-top: 1px solid var(--line); }
.long-look-signup h2 { font-size: clamp(48px, 6vw, 88px); }

.article-page { padding: 0 var(--gutter) clamp(100px, 10vw, 160px); }
.article-page article { max-width: 1180px; margin: 0 auto; }
.article-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 155px) 0 clamp(68px, 7vw, 110px);
  text-align: center;
}
.article-hero .eyebrow a { text-decoration: none; }
.article-hero .article-meta { margin-bottom: 24px; }
.article-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 112px);
  line-height: .92;
}
.article-standfirst {
  max-width: 760px;
  margin: 36px auto 0;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.45;
}
.article-hero-image {
  position: relative;
  min-height: min(65vw, 720px);
  background: linear-gradient(135deg,#b9ad99 0 34%,#6e6c64 34% 38%,#d8cebd 38% 72%,#8c7568 72%);
}
.article-body {
  max-width: 720px;
  margin: clamp(70px, 8vw, 120px) auto 0;
  font-size: 19px;
  line-height: 1.72;
}
.article-body p { margin: 0 0 30px; }
.article-body h2 {
  margin: 72px 0 26px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}
.article-body blockquote {
  margin: 60px -90px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(31px, 3.5vw, 48px);
  font-style: italic;
  line-height: 1.18;
}
.article-body a { text-underline-offset: 3px; }
.article-drop::first-letter {
  float: left;
  margin: .04em .12em 0 0;
  font-size: 4.2em;
  line-height: .78;
}
.article-end {
  max-width: 720px;
  margin: 88px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.article-end .eyebrow { margin-bottom: 12px; }

@media (max-width: 1100px) and (min-width: 901px) {
  .nav { gap: 16px; }
  .nav a { font-size: 9px; }
}
@media (max-width: 900px) {
  .long-look-preview-head,
  .long-look-page-head,
  .featured-article,
  .article-index-head { grid-template-columns: 1fr; }
  .long-look-preview-intro,
  .article-index-head > p { justify-self: start; }
  .long-look-teasers,
  .article-grid { grid-template-columns: 1fr; }
  .long-look-teaser,
  .long-look-teaser:not(:first-child) {
    min-height: 250px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .long-look-teaser:last-child { border-bottom: 0; }
  .long-look-teaser h3 { margin-top: 34px; }
  .featured-article-art { min-height: 500px; }
  .article-grid { row-gap: 64px; }
  .article-body blockquote { margin-left: 0; margin-right: 0; }
}
@media (max-width: 560px) {
  .long-look-page { padding-top: 68px; }
  .featured-article-art { min-height: 360px; }
  .featured-article h2 { font-size: 44px; }
  .article-hero h1 { font-size: 54px; }
  .article-body { font-size: 18px; }
  .article-body blockquote { font-size: 31px; }
}

/* WordPress image integration */
.featured-article-art img,
.article-art img,
.article-hero-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article-art,
.article-art,
.article-hero-image {
  position: relative;
}

.featured-article-art::after,
.article-art::after,
.article-hero-image::after {
  pointer-events: none;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: .04em .12em 0 0;
  font-size: 4.2em;
  line-height: .78;
}

.opinion-pagination {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.opinion-pagination .page-numbers {
  text-decoration: none;
}

.opinion-pagination .current {
  border-bottom: 1px solid currentColor;
}
