:root {
  --black: #0b0b0b;
  --ink: #111111;
  --white: #ffffff;
  --warm: #f4f1eb;
  --soft: #efefed;
  --muted: #666662;
  --line: #d8d8d4;
  --accent: #d71920;
  --max: 1600px;
  --page: clamp(20px, 3.6vw, 64px);
  --section: clamp(82px, 9vw, 150px);
  --header-main: 74px;
  --header-nav: 45px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-layer-open { overflow: hidden; }
::selection { background: var(--accent); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
figure { margin: 0; }
.site-frame { min-height: 100vh; overflow: clip; }
.site-main { min-height: 65vh; }
.page-width { width: min(var(--max), calc(100% - (var(--page) * 2))); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.screen-reader-text:focus,
.skip-link:focus {
  top: 12px; left: 12px; z-index: 2000;
  width: auto; height: auto; clip: auto;
  padding: 12px 16px; margin: 0;
  background: var(--black); color: var(--white);
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.admin-bar .site-header { top: 32px; }
.masthead {
  width: min(var(--max), calc(100% - (var(--page) * 2)));
  height: var(--header-main);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-trigger,
.icon-button,
.drawer-close,
.search-overlay button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-trigger {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-trigger__icon { width: 24px; height: 12px; position: relative; }
.nav-trigger__icon i {
  position: absolute; left: 0;
  width: 24px; height: 1px;
  background: currentColor;
}
.nav-trigger__icon i:first-child { top: 2px; }
.nav-trigger__icon i:last-child { top: 9px; width: 17px; }
.site-brand { grid-column: 2; justify-self: center; line-height: 1; }
.site-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.065em;
  white-space: nowrap;
}
.site-wordmark span { font-weight: 400; letter-spacing: -.045em; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo-link img { width: auto; max-width: min(310px, 29vw); max-height: 54px; object-fit: contain; }
.masthead-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}
.issue-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; }
.icon-button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.45; }
.category-strip {
  min-height: var(--header-nav);
  border-top: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-menu,
.category-strip .menu {
  width: min(var(--max), calc(100% - (var(--page) * 2)));
  min-width: max-content;
  min-height: var(--header-nav);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 66px);
}
.category-menu li,
.category-strip .menu li { margin: 0; padding: 0; }
.category-menu a,
.category-strip .menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-nav);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.category-menu a::after,
.category-strip .menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right .28s var(--ease);
}
.category-menu a:hover::after,
.category-menu .current-menu-item > a::after,
.category-menu .current-menu-ancestor > a::after,
.category-strip .menu a:hover::after { right: 0; }
.category-strip .sub-menu { display: none !important; }
.reading-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; pointer-events: none; }
.reading-progress span { display: block; width: 0; height: 100%; background: var(--accent); }

/* Drawer */
.site-drawer,
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s;
}
.site-drawer.is-open,
.search-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.58);
}
.drawer-panel {
  position: relative;
  width: min(860px, 88vw);
  height: 100%;
  margin-left: 0;
  background: var(--white);
  transform: translateX(-102%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.site-drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-head {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 74px;
  padding: 0 clamp(22px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.drawer-brand { font-size: 15px; font-weight: 900; letter-spacing: -.04em; }
.drawer-close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.drawer-close i { position: relative; width: 20px; height: 20px; }
.drawer-close i::before,
.drawer-close i::after {
  content: "";
  position: absolute;
  top: 9px; left: 0;
  width: 20px; height: 1px;
  background: currentColor;
}
.drawer-close i::before { transform: rotate(45deg); }
.drawer-close i::after { transform: rotate(-45deg); }
.drawer-body {
  min-height: calc(100% - 74px);
  padding: clamp(36px, 7vw, 92px) clamp(22px, 4vw, 56px) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(210px, .55fr);
  gap: clamp(50px, 8vw, 110px);
}
.drawer-menu,
.drawer-navigation .menu { margin: 0; padding: 0; list-style: none; counter-reset: menu; }
.drawer-menu > li,
.drawer-navigation .menu > li {
  position: relative;
  border-top: 1px solid var(--line);
  counter-increment: menu;
}
.drawer-menu > li:last-child,
.drawer-navigation .menu > li:last-child { border-bottom: 1px solid var(--line); }
.drawer-menu > li > a,
.drawer-navigation .menu > li > a {
  display: flex;
  align-items: center;
  min-height: clamp(68px, 7.5vw, 94px);
  padding: 12px 52px 12px 0;
  font-size: clamp(31px, 4vw, 57px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.055em;
  transition: color .2s, padding .3s var(--ease);
}
.drawer-menu > li > a::before,
.drawer-navigation .menu > li > a::before {
  content: counter(menu, decimal-leading-zero);
  width: 38px;
  flex: 0 0 38px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
}
.drawer-menu > li:hover > a,
.drawer-navigation .menu > li:hover > a { color: var(--accent); padding-left: 6px; }
.drawer-menu .current-menu-item > a,
.drawer-menu .current-menu-ancestor > a { color: var(--accent); }
.submenu-toggle {
  position: absolute;
  top: 16px; right: 0;
  width: 42px; height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.submenu-toggle > span[aria-hidden="true"]::before,
.submenu-toggle > span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  top: 20px; left: 11px;
  width: 20px; height: 1px;
  background: currentColor;
  transition: transform .25s;
}
.submenu-toggle > span[aria-hidden="true"]::after { transform: rotate(90deg); }
.submenu-toggle[aria-expanded="true"] > span[aria-hidden="true"]::after { transform: rotate(0); }
.drawer-menu .sub-menu,
.drawer-navigation .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0 0 0 38px;
  list-style: none;
  transition: max-height .45s var(--ease), opacity .25s, padding .3s;
}
.drawer-menu li.is-expanded > .sub-menu,
.drawer-navigation li.is-expanded > .sub-menu {
  max-height: 680px;
  opacity: 1;
  padding-bottom: 22px;
}
.drawer-menu .sub-menu a,
.drawer-navigation .sub-menu a {
  display: inline-block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.drawer-menu .sub-menu a:hover,
.drawer-navigation .sub-menu a:hover { color: var(--accent); }
.drawer-aside {
  align-self: end;
  border-top: 1px solid var(--black);
  padding-top: 18px;
}
.drawer-aside > p:not(.mini-label) { margin: 18px 0 32px; color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.35; }
.drawer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.drawer-links a { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* Search */
.search-overlay { background: var(--black); color: var(--white); }
.search-overlay__bar {
  min-height: 74px;
  padding: 0 var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.search-overlay__bar button { color: var(--white); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.search-overlay__body {
  width: min(1080px, calc(100% - (var(--page) * 2)));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(70px, 13vh, 160px) 0 70px;
}
.mini-label,
.section-number,
.footer-label,
.footer-kicker {
  display: inline-block;
  margin: 0;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.search-overlay h2 {
  max-width: 900px;
  margin: 20px 0 55px;
  font-size: clamp(50px, 8vw, 120px);
  line-height: .86;
  letter-spacing: -.07em;
}
.search-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 26px; align-items: end; }
.search-form label { display: block; }
.search-field {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  outline: 0;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -.035em;
}
.search-field::placeholder { color: rgba(255,255,255,.42); }
.archive-header__note .search-field { color: var(--black); font-size: 20px; border-bottom-width: 1px; }
.archive-header__note .search-field::placeholder { color: var(--muted); }
.search-submit {
  min-height: 54px;
  padding: 0 0 0 10px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.search-suggestions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.search-suggestions a,
.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px 3px;
  border: 1px solid currentColor;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.search-suggestions a { color: rgba(255,255,255,.72); }
.search-suggestions a:hover { color: var(--white); }

/* Shared headings */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(42px, 6vw, 88px);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: min(420px, 48vw); }
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.button-link--light { color: var(--white); }
.section-head {
  margin-bottom: clamp(38px, 5vw, 70px);
  padding-top: 16px;
  border-top: 2px solid var(--black);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-head > div { display: flex; align-items: baseline; gap: 20px; }
.section-head h2 { margin: 0; font-size: clamp(38px, 5vw, 76px); line-height: .92; letter-spacing: -.06em; }
.section-head > a { margin-bottom: 6px; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.section-head > a:hover { color: var(--accent); }

/* Home */
.home-intro { padding-top: clamp(46px, 6vw, 82px); padding-bottom: clamp(34px, 5vw, 62px); }
.home-intro__issue { margin-bottom: clamp(28px, 4vw, 52px); display: flex; justify-content: space-between; gap: 20px; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.home-intro h1 { max-width: 1320px; margin: 0; font-size: clamp(54px, 9vw, 148px); line-height: .78; font-weight: 900; letter-spacing: -.08em; }
.lead-layout {
  padding-bottom: var(--section);
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(320px, .72fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.lead-story--main { min-width: 0; }
.lead-story__media { display: block; overflow: hidden; background: var(--soft); }
.lead-story__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease); }
.lead-story:hover .lead-story__media img { transform: scale(1.025); }
.lead-story__content { padding-top: 22px; }
.story-card__tags { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.lead-story h2 { max-width: 1100px; margin: 17px 0 16px; font-size: clamp(46px, 6vw, 94px); line-height: .89; font-weight: 800; letter-spacing: -.07em; }
.lead-story__content > p { max-width: 780px; margin: 0 0 20px; color: var(--muted); font-family: var(--serif); font-size: clamp(17px, 1.5vw, 23px); line-height: 1.35; }
.story-card__meta {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.lead-rail { display: grid; gap: clamp(38px, 5vw, 70px); }
.lead-rail .story-card { padding-bottom: clamp(34px, 4vw, 56px); border-bottom: 1px solid var(--line); }
.ticker { overflow: hidden; background: var(--accent); color: var(--white); }
.ticker > div {
  width: max-content;
  min-height: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  animation: ticker-move 28s linear infinite;
}
.ticker i { font-style: normal; }
@keyframes ticker-move { to { transform: translateX(-18%); } }
.section-block { padding-block: var(--section); }
.story-grid { display: grid; gap: clamp(42px, 5vw, 76px) clamp(20px, 2.8vw, 46px); }
.story-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.story-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-card { min-width: 0; }
.story-card__media { display: block; overflow: hidden; background: var(--soft); }
.story-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .65s var(--ease), filter .35s; }
.story-card--portrait .story-card__media img,
.story-card--feature .story-card__media img { aspect-ratio: 4/5; }
.story-card:hover .story-card__media img { transform: scale(1.025); }
.story-card__content { padding-top: 18px; }
.story-card h3 { margin: 14px 0 13px; font-size: clamp(24px, 2.25vw, 38px); line-height: .98; font-weight: 800; letter-spacing: -.052em; }
.story-card h3 a:hover { color: var(--accent); }
.story-card__content > p { margin: 0 0 18px; color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 1.4; }
.story-card--wide h3 { font-size: clamp(29px, 3vw, 48px); }
.spotlight { min-height: min(880px, 90vh); display: grid; grid-template-columns: 1.15fr .85fr; background: var(--black); color: var(--white); }
.spotlight__media { min-height: 640px; overflow: hidden; }
.spotlight__media a, .spotlight__media img { height: 100%; }
.spotlight__media img { width: 100%; object-fit: cover; filter: saturate(.85); }
.spotlight__content { padding: clamp(50px, 7vw, 120px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.spotlight h2 { margin: 30px 0 24px; font-size: clamp(48px, 6vw, 96px); line-height: .88; letter-spacing: -.07em; }
.spotlight p { max-width: 560px; margin: 0 0 34px; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: 20px; line-height: 1.4; }
.category-block { border-top: 1px solid var(--line); }
.newsletter-panel {
  margin-bottom: var(--section);
  padding: clamp(42px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  background: var(--warm);
}
.newsletter-panel h2 { margin: 20px 0 0; font-size: clamp(42px, 5vw, 82px); line-height: .9; letter-spacing: -.065em; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid currentColor; }
.newsletter-form input { min-width: 0; padding: 14px 0; border: 0; background: transparent; color: inherit; outline: 0; }
.newsletter-form button { padding: 14px 0 14px 20px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.newsletter-form--large input { font-size: 18px; font-weight: 700; }
.newsletter-form--large button { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Archive + search */
.archive-header,
.page-header,
.brands-header,
.contact-header,
.about-hero { padding-top: clamp(48px, 6vw, 92px); padding-bottom: clamp(58px, 8vw, 122px); }
.archive-header__layout,
.page-header__layout,
.brands-header,
.contact-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}
.archive-header__layout h1,
.page-header__layout h1,
.brands-header h1,
.contact-header h1 {
  max-width: 1050px;
  margin: 20px 0 0;
  font-size: clamp(58px, 8.5vw, 138px);
  line-height: .82;
  font-weight: 900;
  letter-spacing: -.078em;
}
.archive-header__note,
.page-header__layout > p,
.brands-header > p,
.contact-header > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.4;
}
.archive-section { padding-bottom: var(--section); }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(58px, 7vw, 108px) clamp(20px, 3vw, 50px); }
.archive-grid .story-card--feature { grid-column: span 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 3vw, 52px); align-items: start; }
.archive-grid .story-card--feature .story-card__content { padding-top: 0; }
.archive-grid .story-card--feature h3 { font-size: clamp(38px, 4.5vw, 72px); }
.pagination { margin-top: clamp(70px, 9vw, 130px); padding-top: 24px; border-top: 2px solid var(--black); }
.pagination .nav-links { display: flex; align-items: center; justify-content: center; gap: 9px; }
.pagination .page-numbers { min-width: 38px; min-height: 38px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 10px; font-weight: 800; }
.pagination .current, .pagination a:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.empty-state { padding: 90px 0; }
.empty-state h2 { max-width: 900px; margin: 22px 0 30px; font-size: clamp(42px, 6vw, 90px); line-height: .9; letter-spacing: -.065em; }

/* Single article */
.article-header { padding-top: clamp(46px, 6vw, 90px); }
.article-header__layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
.article-header__copy { position: sticky; top: calc(var(--header-main) + var(--header-nav) + 34px); padding-bottom: 70px; }
.article-header h1 { margin: 25px 0 26px; font-size: clamp(52px, 7vw, 112px); line-height: .86; font-weight: 900; letter-spacing: -.076em; }
.article-deck { max-width: 720px; margin: 0 0 32px; color: var(--muted); font-family: var(--serif); font-size: clamp(19px, 1.7vw, 26px); line-height: 1.4; }
.article-byline { display: flex; flex-wrap: wrap; gap: 9px 22px; padding-top: 18px; border-top: 1px solid var(--black); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-header__media img { width: 100%; min-height: 620px; max-height: 1050px; object-fit: cover; }
.article-header__media figcaption { padding-top: 9px; color: var(--muted); font-size: 10px; }
.article-shell {
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: var(--section);
  display: grid;
  grid-template-columns: 80px minmax(0, 820px) minmax(190px, 1fr);
  justify-content: center;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.article-share { position: sticky; top: 170px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.article-share > span { margin-bottom: 5px; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-share a,
.article-share button { padding: 0; border: 0; background: transparent; cursor: pointer; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.article-share a:hover,
.article-share button:hover { color: var(--accent); }
.article-share button.copied::after { content: " ✓"; color: var(--accent); }
.article-main { min-width: 0; }
.entry-content { font-family: var(--serif); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.72; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > p:first-child::first-letter { float: left; margin: .1em .12em 0 0; font-family: var(--sans); font-size: 5.4em; line-height: .72; font-weight: 900; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { font-family: var(--sans); font-weight: 800; letter-spacing: -.05em; scroll-margin-top: 150px; }
.entry-content h2 { margin: 2.3em 0 .7em; font-size: clamp(36px, 4vw, 60px); line-height: .95; }
.entry-content h3 { margin: 2em 0 .6em; font-size: clamp(28px, 3vw, 42px); line-height: 1; }
.entry-content p { margin: 0 0 1.45em; }
.entry-content a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--accent); }
.entry-content blockquote { margin: 2.4em -8vw; padding: 0 0 0 22px; border-left: 5px solid var(--accent); font-family: var(--sans); font-size: clamp(31px, 4vw, 58px); line-height: .98; font-weight: 800; letter-spacing: -.055em; }
.entry-content blockquote p { margin: 0; }
.entry-content img { height: auto; }
.entry-content figure { margin: 2.5em 0; }
.entry-content .alignwide { width: min(1120px, calc(100vw - (var(--page) * 2))); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-content figcaption { margin-top: 8px; color: var(--muted); font-family: var(--sans); font-size: 10px; line-height: 1.4; }
.entry-content ul,
.entry-content ol { padding-left: 1.2em; }
.entry-content table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 14px; }
.entry-content th,
.entry-content td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.entry-content iframe { max-width: 100%; }
.article-toc { position: sticky; top: 170px; padding-top: 13px; border-top: 2px solid var(--black); }
.article-toc > span { font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.article-toc ol { margin: 18px 0 0; padding: 0; list-style: none; counter-reset: toc; }
.article-toc li { counter-increment: toc; }
.article-toc a { display: grid; grid-template-columns: 23px 1fr; gap: 8px; padding: 8px 0; color: var(--muted); font-size: 11px; line-height: 1.3; }
.article-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--accent); font-size: 8px; font-weight: 800; }
.article-toc a.is-active { color: var(--black); font-weight: 700; }
.article-end { margin-top: 80px; padding-top: 25px; border-top: 2px solid var(--black); }
.article-end__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.article-end__tags a { display: inline-flex; padding: 5px 8px; border: 1px solid var(--black); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-author { margin-top: 52px; padding: 34px; display: grid; grid-template-columns: 82px 1fr; gap: 26px; background: var(--warm); }
.article-author__avatar img { border-radius: 50%; }
.article-author h2 { margin: 11px 0 8px; font-size: 30px; letter-spacing: -.04em; }
.article-author p { margin: 0; color: var(--muted); font-family: var(--serif); }
.related-section { padding-bottom: var(--section); }

/* Pages */
.page-featured { margin-bottom: clamp(70px, 9vw, 135px); }
.page-featured img { width: 100%; max-height: 880px; object-fit: cover; }
.page-content { padding-bottom: var(--section); }
.page-content > .entry-content { width: min(820px, 100%); margin: 0 auto; }
.about-hero h1 { max-width: 1350px; margin: 25px 0 60px; font-size: clamp(64px, 10vw, 162px); line-height: .8; letter-spacing: -.082em; }
.about-hero__bottom { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; border-top: 2px solid var(--black); padding-top: 18px; }
.about-hero__bottom p { max-width: 720px; margin: 0; color: var(--muted); font-family: var(--serif); font-size: 22px; }
.about-hero__bottom span { font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.about-manifesto { display: grid; grid-template-columns: 1fr 1fr; background: var(--black); color: var(--white); }
.about-manifesto__image { min-height: 740px; }
.about-manifesto__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.about-manifesto__content { padding: clamp(55px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.about-manifesto h2 { margin: 28px 0 45px; font-size: clamp(50px, 6vw, 96px); line-height: .86; letter-spacing: -.07em; }
.about-manifesto .entry-content { color: rgba(255,255,255,.72); font-size: 18px; }
.about-manifesto .entry-content > p:first-child::first-letter { float: none; margin: 0; font-size: inherit; }
.about-values { padding-block: var(--section); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 5vw, 80px); }
.about-values article { padding-top: 17px; border-top: 2px solid var(--black); }
.about-values article > span { color: var(--accent); font-size: 9px; font-weight: 800; }
.about-values h3 { margin: 25px 0 14px; font-size: clamp(30px, 3vw, 47px); letter-spacing: -.055em; }
.about-values p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 17px; }
.contact-grid { padding-bottom: var(--section); display: grid; grid-template-columns: minmax(240px, .45fr) minmax(0, 1.15fr); gap: clamp(60px, 10vw, 170px); }
.contact-grid aside { display: flex; flex-direction: column; gap: 45px; }
.contact-grid aside > div { padding-top: 15px; border-top: 1px solid var(--black); display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.contact-grid aside p { margin: 0; color: var(--muted); font-family: var(--serif); }
.contact-grid aside a { font-weight: 800; word-break: break-word; }
.contact-form-wrap { padding: clamp(34px, 5vw, 72px); background: var(--warm); }
.contact-form-wrap > .section-number { margin-bottom: 35px; }
.contact-form-wrap .entry-content { font-family: var(--sans); font-size: 15px; }
.contact-form-wrap .entry-content > p:first-child::first-letter { float: none; margin: 0; font-size: inherit; }
.contact-form-wrap input:not([type="submit"]),
.contact-form-wrap textarea,
.contact-form-wrap select,
.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpforms-container input:not([type="submit"]),
.wpforms-container textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  outline: 0;
}
.contact-form-wrap textarea { min-height: 150px; resize: vertical; }
.contact-form-wrap input[type="submit"],
.contact-form-wrap button[type="submit"],
.wpcf7 input[type="submit"],
.wpforms-container button[type="submit"] {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brands-directory { padding-bottom: var(--section); }
.brands-list { border-top: 2px solid var(--black); }
.brands-list > a { min-height: 112px; display: grid; grid-template-columns: 80px 1fr 32px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), color .2s; }
.brands-list > a:hover { padding-left: 12px; color: var(--accent); }
.brands-list span { color: var(--accent); font-size: 9px; font-weight: 800; }
.brands-list strong { font-size: clamp(36px, 5vw, 78px); line-height: .9; letter-spacing: -.065em; }
.brands-list i { font-style: normal; font-size: 19px; }
.quiz-header { min-height: 760px; display: grid; grid-template-columns: 1.1fr .9fr; background: var(--black); color: var(--white); }
.quiz-header__image { min-height: 680px; }
.quiz-header__image img { width: 100%; height: 100%; object-fit: cover; }
.quiz-header__copy { padding: clamp(55px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.quiz-header .breadcrumbs { color: rgba(255,255,255,.62); margin-bottom: auto; }
.quiz-header h1 { margin: 25px 0; font-size: clamp(58px, 7vw, 112px); line-height: .83; letter-spacing: -.076em; }
.quiz-header__copy > p { max-width: 560px; margin: 0 0 auto; color: rgba(255,255,255,.66); font-family: var(--serif); font-size: 21px; }
.quiz-content { padding-block: var(--section); }
.quiz-content > .entry-content { width: min(900px, 100%); margin: 0 auto var(--section); }
.error-page { min-height: 72vh; padding-block: clamp(90px, 13vw, 210px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.error-code { font-size: clamp(150px, 22vw, 360px); line-height: .65; font-weight: 900; letter-spacing: -.1em; color: var(--soft); }
.error-page h1 { margin: 22px 0; font-size: clamp(52px, 7vw, 112px); line-height: .84; letter-spacing: -.073em; }
.error-page p { margin: 0 0 30px; color: var(--muted); font-family: var(--serif); font-size: 20px; }

/* Legacy builder guardrails */
.legacy-builder-content { width: 100%; max-width: 100%; overflow: hidden; }
.legacy-builder-content > p:first-child::first-letter { float: none; margin: 0; font-size: inherit; }
.legacy-builder-content .vc_row,
.legacy-builder-content .wpb_row { margin-left: 0 !important; margin-right: 0 !important; max-width: 100%; }
.legacy-builder-content .vc_column_container > .vc_column-inner { padding-left: 0; padding-right: 0; }
.legacy-builder-content .wpb_content_element { margin-bottom: 28px; }
.legacy-builder-content img { max-width: 100%; height: auto; }
.legacy-builder-content .vc_grid-container,
.legacy-builder-content .vc_grid { max-width: 100%; overflow: hidden; }
.legacy-builder-content .vc_btn3,
.legacy-builder-content .button,
.legacy-builder-content a.button { border-radius: 0 !important; }

/* Footer */
.site-footer { padding: clamp(72px, 9vw, 140px) var(--page) 28px; background: var(--black); color: var(--white); }
.site-footer > * { width: min(var(--max), 100%); margin-inline: auto; }
.footer-top { padding-bottom: clamp(65px, 8vw, 118px); border-bottom: 1px solid rgba(255,255,255,.25); }
.footer-kicker { color: var(--accent); }
.footer-top h2 { max-width: 1280px; margin: 25px 0 0; font-size: clamp(52px, 8vw, 126px); line-height: .82; letter-spacing: -.078em; }
.footer-columns { padding-block: clamp(50px, 7vw, 94px); display: grid; grid-template-columns: 1.2fr .55fr .8fr; gap: clamp(50px, 9vw, 150px); }
.footer-logo { display: inline-block; font-size: 27px; line-height: .85; font-weight: 900; letter-spacing: -.055em; }
.footer-about p,
.footer-newsletter > p:not(.footer-label) { max-width: 430px; margin: 24px 0 0; color: rgba(255,255,255,.58); font-family: var(--serif); font-size: 17px; }
.footer-menu { margin: 20px 0 0; padding: 0; list-style: none; }
.footer-menu li + li { margin-top: 8px; }
.footer-menu a { font-size: 12px; font-weight: 700; }
.footer-menu a:hover { color: var(--accent); }
.footer-newsletter .newsletter-form { margin-top: 24px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.45); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom > div { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 1180px) {
  .lead-layout { grid-template-columns: 1.35fr .65fr; }
  .story-grid--four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .archive-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article-shell { grid-template-columns: 60px minmax(0, 760px); }
  .article-toc { display: none; }
  .footer-columns { grid-template-columns: 1fr .5fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-main: 66px; --header-nav: 42px; }
  .admin-bar .site-header { top: 46px; }
  .issue-label { display: none; }
  .custom-logo-link img { max-width: 210px; max-height: 45px; }
  .category-menu,
  .category-strip .menu { justify-content: flex-start; padding-inline: var(--page); width: max-content; gap: 28px; }
  .drawer-panel { width: min(94vw, 720px); }
  .drawer-body { grid-template-columns: 1fr; }
  .drawer-aside { align-self: auto; }
  .home-intro h1 { line-height: .82; }
  .lead-layout { grid-template-columns: 1fr; }
  .lead-rail { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lead-rail .story-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
  .lead-rail .story-card:first-child .story-card__content { padding-top: 0; }
  .story-grid--three { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__media { min-height: 520px; }
  .newsletter-panel { grid-template-columns: 1fr; }
  .archive-header__layout,
  .page-header__layout,
  .brands-header,
  .contact-header { grid-template-columns: 1fr; }
  .archive-grid .story-card--feature { grid-column: 1 / -1; }
  .article-header__layout { grid-template-columns: 1fr; }
  .article-header__copy { position: static; padding-bottom: 20px; }
  .article-header__media img { min-height: 0; aspect-ratio: 4/5; }
  .article-shell { grid-template-columns: 1fr; }
  .article-share { position: static; flex-direction: row; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .article-share > span { margin: 0 10px 0 0; }
  .entry-content blockquote { margin-inline: 0; }
  .about-manifesto { grid-template-columns: 1fr; }
  .about-manifesto__image { min-height: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .quiz-header { grid-template-columns: 1fr; }
  .quiz-header__copy { min-height: 610px; }
  .quiz-header .breadcrumbs { margin-bottom: 70px; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --page: 18px; --section: 82px; }
  .masthead { grid-template-columns: 44px 1fr 44px; }
  .nav-trigger { width: 40px; }
  .nav-trigger > span:last-child { display: none; }
  .site-brand { width: 100%; text-align: center; }
  .site-wordmark { font-size: 18px; }
  .custom-logo-link img { max-width: 170px; max-height: 39px; }
  .masthead-actions { gap: 0; }
  .drawer-panel { width: 100%; }
  .drawer-head { padding-inline: 20px; }
  .drawer-body { padding-inline: 20px; }
  .drawer-menu > li > a,
  .drawer-navigation .menu > li > a { min-height: 66px; font-size: 34px; }
  .drawer-menu > li > a::before,
  .drawer-navigation .menu > li > a::before { width: 30px; flex-basis: 30px; }
  .search-overlay__body { padding-top: 80px; }
  .search-overlay h2 { font-size: 54px; }
  .search-form { grid-template-columns: 1fr; }
  .search-submit { justify-self: start; padding-left: 0; }
  .home-intro__issue { flex-direction: column; gap: 7px; }
  .home-intro h1 { font-size: 58px; }
  .lead-story h2 { font-size: 45px; }
  .lead-rail { grid-template-columns: 1fr; }
  .lead-rail .story-card:first-child { grid-column: auto; display: block; }
  .lead-rail .story-card:first-child .story-card__content { padding-top: 18px; }
  .story-grid--three,
  .story-grid--four,
  .archive-grid { grid-template-columns: 1fr; }
  .story-card--portrait .story-card__media img { aspect-ratio: 4/3; }
  .section-head { align-items: flex-start; }
  .section-head > div { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-head h2 { font-size: 45px; }
  .spotlight__media { min-height: 420px; }
  .spotlight__content { padding: 52px 22px 64px; }
  .spotlight h2 { font-size: 53px; }
  .newsletter-panel { width: calc(100% - 24px); padding: 34px 22px; }
  .newsletter-form--large { grid-template-columns: 1fr; }
  .newsletter-form--large button { justify-self: start; padding-left: 0; }
  .archive-header__layout h1,
  .page-header__layout h1,
  .brands-header h1,
  .contact-header h1 { font-size: 61px; }
  .archive-grid .story-card--feature { display: block; }
  .archive-grid .story-card--feature .story-card__content { padding-top: 18px; }
  .article-header h1 { font-size: 55px; }
  .article-shell { width: min(100% - 36px, 820px); padding-top: 70px; }
  .entry-content { font-size: 18px; }
  .entry-content > p:first-child::first-letter { font-size: 4.4em; }
  .article-author { grid-template-columns: 1fr; padding: 25px; }
  .about-hero h1 { font-size: 66px; }
  .about-hero__bottom { grid-template-columns: 1fr; }
  .about-manifesto__image { min-height: 430px; }
  .about-manifesto__content { padding: 55px 22px; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 22px; }
  .brands-list > a { min-height: 86px; grid-template-columns: 45px 1fr 22px; }
  .brands-list strong { font-size: 39px; }
  .quiz-header__image { min-height: 480px; }
  .quiz-header__copy { min-height: 560px; padding: 48px 22px; }
  .quiz-header h1 { font-size: 61px; }
  .error-page { grid-template-columns: 1fr; }
  .error-code { font-size: 170px; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-newsletter { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom > div { flex-wrap: wrap; }
}

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

/* Brand detail pages */
.brand-detail-header { padding-top: clamp(48px, 6vw, 92px); padding-bottom: clamp(54px, 7vw, 105px); }
.brand-detail-header__layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(50px, 9vw, 150px); align-items: end; }
.brand-detail-header h1 { margin: 20px 0 0; font-size: clamp(72px, 12vw, 190px); line-height: .76; font-weight: 900; letter-spacing: -.09em; }
.brand-detail-header__layout > div:last-child p { margin: 0 0 30px; color: var(--muted); font-family: var(--serif); font-size: clamp(18px, 1.6vw, 24px); line-height: 1.4; }
.brand-detail-image { margin-bottom: clamp(75px, 10vw, 150px); }
.brand-detail-image img { width: 100%; max-height: 900px; object-fit: cover; }
.brand-detail-content { padding-bottom: var(--section); display: grid; grid-template-columns: minmax(140px, .35fr) minmax(0, 820px) minmax(0, .35fr); }
.brand-detail-content > .section-number { padding-top: 10px; }
.brand-detail-content > .entry-content { grid-column: 2; }
.brand-stories { padding-bottom: var(--section); }
@media (max-width: 900px) {
  .brand-detail-header__layout { grid-template-columns: 1fr; }
  .brand-detail-content { grid-template-columns: 1fr; gap: 30px; }
  .brand-detail-content > .entry-content { grid-column: auto; }
}
@media (max-width: 640px) {
  .brand-detail-header h1 { font-size: 76px; }
}
