:root {
  --ink: #070403;
  --paper: #fefffb;
  --sage: #f4f8ec;
  --green: #b5d05a;
  --stone: #ebe6e0;
  --brown: #2d2821;
  --red: #c02b0a;
  --line: rgba(7, 4, 3, 0.18);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --wrap: 1280px;
  --header: 49px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-top: var(--header); background: var(--paper); color: var(--ink); font-family: var(--serif); font-size: 16px; line-height: 1.6; }
body.panel-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
h1, h2, h3, p, ul, ol, dl, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
.wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
.eyebrow, .story-card span, .full-feature span, .dark-feature span, .floating-card > span, .menu-label, .article-rail > span, .retailer-box span, .decision-snapshot > span { display: block; margin-bottom: 10px; font: 700 11px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 24px; background: var(--sage); border-top: 3px solid var(--green); }
.mark-link { justify-self: start; }
.mark-link img { width: 32px; height: 32px; }
.wordmark-link { justify-self: center; }
.wordmark-link img { width: 188px; height: 35px; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.header-text, .header-icon { border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.header-text { padding: 6px 2px; font: 700 10px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.header-icon { width: 26px; height: 30px; display: grid; place-items: center; padding: 3px; }
.header-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.7; }

.menu-panel, .search-panel, .subscribe-panel { position: fixed; z-index: 80; top: var(--header); right: 0; width: 100%; height: calc(100dvh - var(--header)); overflow: auto; transform: translateX(100%); transition: transform .42s cubic-bezier(.7,0,.2,1), visibility .42s; visibility: hidden; }
.menu-panel.open, .search-panel.open, .subscribe-panel.open { transform: translateX(0); visibility: visible; }
.panel-close { position: absolute; top: 22px; right: 24px; z-index: 2; border: 0; background: transparent; color: inherit; font: 300 38px/1 var(--sans); cursor: pointer; }
.menu-panel { padding: 9vh max(24px, calc((100vw - var(--wrap))/2)); background: var(--green); }
.menu-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 72px; }
.menu-grid ul { margin: 0; padding: 0; list-style: none; }
.menu-grid li { margin-bottom: 9px; }
.menu-grid a { font: 500 22px/1.25 var(--sans); }
.menu-primary a { font: 500 clamp(36px, 5vw, 72px)/1.03 var(--sans); letter-spacing: -.04em; }
.menu-grid a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.menu-note { max-width: 520px; margin-top: 8vh; font-size: 20px; font-style: italic; }
.search-panel { padding: 7vh max(24px, calc((100vw - 960px)/2)); background: var(--sage); }
.search-inner label { display: block; margin-bottom: 18px; font: 500 clamp(32px, 5vw, 64px)/1.1 var(--sans); letter-spacing: -.04em; }
.search-inner input { width: 100%; border: 0; border-bottom: 2px solid var(--ink); padding: 16px 0; background: transparent; color: var(--ink); font: 400 24px/1.3 var(--serif); border-radius: 0; }
.search-inner > p { margin: 14px 0 28px; font: 700 11px/1.2 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.search-results { max-height: calc(100dvh - 300px); margin: 0; padding: 0; overflow: auto; list-style: none; border-top: 1px solid var(--line); }
.search-results li { border-bottom: 1px solid var(--line); }
.search-results a { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 14px 0; font: 500 18px/1.25 var(--sans); }
.search-results span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.subscribe-panel { display: grid; place-items: center; padding: 48px 24px; background: var(--brown); color: var(--sage); }
.subscribe-panel > div { max-width: 620px; text-align: center; }
.subscribe-panel h2 { margin-bottom: 20px; font: 500 clamp(44px, 6vw, 76px)/1.04 var(--serif); }
.subscribe-panel p { margin-bottom: 30px; font-size: 20px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 36px; padding: 10px 14px; border: 1px solid currentColor; font: 700 10px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; transition: background .2s, color .2s; }
.button svg, .article-rail > a svg, .retailer-box a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-green { border-color: var(--green); background: var(--green); color: var(--ink); }
.button-green:hover { border-color: var(--ink); background: var(--ink); color: var(--green); }
.button-dark { border-color: var(--ink); background: var(--ink); color: var(--sage); }
.button-dark:hover { background: transparent; color: var(--ink); }
.button-light { border-color: var(--sage); background: var(--sage); color: var(--ink); }
.button-light:hover { background: var(--green); border-color: var(--green); }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--green); }

.home-hero { height: 600px; display: grid; grid-template-columns: 1fr 1fr; background: var(--sage); }
.home-hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 6vw; }
.home-hero h1 { max-width: 660px; margin-bottom: 18px; font: 500 clamp(38px, 4.3vw, 67px)/1.02 var(--serif); letter-spacing: -.045em; }
.home-hero h1 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 7px; }
.home-hero p { max-width: 580px; margin-bottom: 22px; font-size: 18px; line-height: 1.45; }
.home-hero-image { overflow: hidden; }
.home-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.latest-section, .read-more { padding-block: 66px 80px; }
.section-heading { border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 14px; font: 500 36px/1.1 var(--sans); letter-spacing: -.03em; }
.latest-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; }
.story-card { min-width: 0; }
.card-image { display: block; overflow: hidden; background: var(--stone); }
.card-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .45s ease; }
.story-card:hover .card-image img { transform: scale(1.025); }
.card-copy { display: block; padding-top: 10px; }
.card-copy span { margin-bottom: 6px; font-size: 9px; color: rgba(7,4,3,.65); }
.card-copy h3 { margin: 0; font: 500 17px/1.18 var(--sans); letter-spacing: -.025em; }
.card-copy:hover h3 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.latest-lead { grid-column: span 6; grid-row: span 3; display: flex; flex-direction: column; height: 100%; background: var(--stone); }
.latest-lead .card-image { flex: 1; }
.latest-lead .card-image img { height: 100%; min-height: 440px; aspect-ratio: auto; }
.latest-lead .card-copy { padding: 22px; }
.latest-lead .card-copy h3 { max-width: 520px; font-size: clamp(28px, 3vw, 44px); }
.latest-small { grid-column: span 3; }

.manifesto { padding: 72px 24px; background: var(--green); }
.manifesto-inner { width: min(100%, 1160px); margin: auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: center; }
.manifesto blockquote { margin-bottom: 26px; font-size: clamp(24px, 2.5vw, 39px); line-height: 1.25; font-style: italic; }
.manifesto img { width: 100%; max-height: 650px; object-fit: cover; }

.full-feature { min-height: 720px; display: grid; place-items: center; padding: 80px 24px; background: linear-gradient(rgba(7,4,3,.23), rgba(7,4,3,.45)), url('/assets/images/editorial-vg/skin-tint-everyday.webp') center/cover no-repeat; color: white; text-align: center; }
.full-feature > div { max-width: 800px; text-shadow: 0 1px 18px rgba(0,0,0,.35); }
.full-feature h2 { margin-bottom: 16px; font: 500 clamp(42px, 6vw, 82px)/.98 var(--serif); letter-spacing: -.045em; }
.full-feature p { max-width: 590px; margin: 0 auto 26px; font-size: 19px; }

.dark-feature { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 560px; background: var(--brown); color: var(--sage); }
.dark-feature > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 7vw; }
.dark-feature h2 { margin-bottom: 14px; font: 500 clamp(38px, 4.5vw, 66px)/1.02 var(--sans); letter-spacing: -.05em; }
.dark-feature p { max-width: 500px; margin-bottom: 24px; font-size: 18px; }
.dark-feature > a { min-height: 520px; overflow: hidden; }
.dark-feature img { width: 100%; height: 100%; object-fit: cover; }

.floating-feature { position: relative; min-height: 700px; background: var(--stone); overflow: hidden; }
.floating-feature > img { width: 72%; height: 700px; object-fit: cover; }
.floating-card { position: absolute; right: 8%; bottom: 70px; width: min(470px, 40vw); padding: 44px; background: var(--paper); box-shadow: 0 18px 60px rgba(7,4,3,.16); }
.floating-card h2 { margin-bottom: 14px; font: 500 clamp(32px, 3vw, 48px)/1.03 var(--sans); letter-spacing: -.045em; }
.floating-card p { margin-bottom: 22px; }

.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px 24px; }
.archive-grid .card-copy h3 { font-size: 18px; }

.signup-band { min-height: 520px; display: flex; align-items: center; justify-content: flex-end; padding: 70px max(24px, calc((100vw - var(--wrap))/2)); background: linear-gradient(90deg, rgba(7,4,3,.05), rgba(7,4,3,.18)), url('/assets/images/editorial-vg/airport-outfit.webp') center/cover no-repeat; }
.signup-card { width: min(440px, 100%); padding: 36px; background: rgba(45,40,33,.96); color: var(--sage); }
.signup-card h2 { margin-bottom: 12px; font: 500 38px/1.06 var(--sans); letter-spacing: -.04em; }
.signup-card p { margin-bottom: 22px; }
.signup-card small { display: block; margin-top: 13px; opacity: .72; font: 11px/1.4 var(--sans); }

.site-footer { padding: 48px 24px 24px; background: var(--ink); color: var(--sage); }
.footer-top { width: min(100%, var(--wrap)); margin: auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.footer-brand img:first-child { width: 42px; filter: invert(1); margin-bottom: 16px; }
.footer-brand img:nth-child(2) { width: 220px; filter: invert(1); margin-bottom: 10px; }
.footer-brand p { font-style: italic; }
.footer-top > div > span { display: block; margin-bottom: 12px; font: 700 10px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.footer-top ul, .footer-bottom ul { margin: 0; padding: 0; list-style: none; }
.footer-top li { margin-bottom: 4px; }
.footer-top a, .footer-bottom { font: 12px/1.4 var(--sans); }
.footer-top a:hover, .footer-bottom a:hover { color: var(--green); }
.footer-bottom { width: min(100%, var(--wrap)); margin: 40px auto 0; padding-top: 18px; border-top: 1px solid rgba(244,248,236,.25); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; opacity: .7; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 20px; }

.archive-page { padding-block: 58px 100px; }
.archive-header { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.archive-header h1 { margin-bottom: 18px; font: 500 clamp(58px, 8vw, 98px)/.96 var(--sans); letter-spacing: -.06em; }
.archive-header p { font-size: 18px; }

.article-header { max-width: 1040px; margin: 0 auto; padding: 54px 24px 44px; text-align: center; }
.article-header h1 { margin-bottom: 20px; font: 500 clamp(48px, 5.6vw, 78px)/1.02 var(--serif); letter-spacing: -.045em; }
.article-header > p { max-width: 760px; margin: 0 auto 18px; font-size: 20px; line-height: 1.4; }
.article-meta { font: 10px/1.5 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.article-hero { width: 100%; max-height: 760px; object-fit: cover; }
.image-caption { max-width: var(--wrap); margin: 8px auto 0; padding: 0 24px; color: rgba(7,4,3,.64); font: 11px/1.5 var(--sans); }
.article-layout { width: min(calc(100% - 48px), 1180px); margin: 60px auto 96px; display: grid; grid-template-columns: minmax(0, 780px) 300px; gap: 76px; align-items: start; }
.article-body { min-width: 0; font-size: 20px; line-height: 1.55; }
.article-body p { margin-bottom: 28px; }
.article-body h2 { margin: 58px 0 22px; font: 500 clamp(34px, 4vw, 44px)/1.08 var(--sans); letter-spacing: -.045em; }
.article-body h3 { margin: 34px 0 10px; font: 500 25px/1.16 var(--sans); letter-spacing: -.025em; }
.lead-paragraph { font-size: 25px; line-height: 1.42; }
.disclosure { margin-bottom: 34px; padding: 20px 22px; border-left: 5px solid var(--green); background: var(--sage); font: 14px/1.55 var(--sans); }
.disclosure a { text-decoration: underline; }
.decision-snapshot { margin: 44px 0; padding: 28px; background: var(--green); }
.decision-snapshot dl { margin: 0; }
.decision-snapshot dl div { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 13px 0; border-top: 1px solid rgba(7,4,3,.25); }
.decision-snapshot dt { font: 700 11px/1.4 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.decision-snapshot dd { margin: 0; font-size: 17px; line-height: 1.45; }
.feature-list { margin: 26px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-list strong { font: 600 16px/1.35 var(--sans); }
.feature-list span { font: 15px/1.5 var(--serif); }
.tradeoff-box { margin: 24px 0 30px; padding: 28px; background: var(--brown); color: var(--sage); }
.tradeoff-box p { margin: 0; font-size: 25px; line-height: 1.35; font-style: italic; }
.retailer-box { margin: 54px 0; padding: 32px; background: var(--sage); border-top: 5px solid var(--green); }
.retailer-box h2 { margin: 0 0 12px; font-size: 34px; }
.retailer-box p { font-size: 16px; }
.retailer-box > a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; background: var(--ink); color: var(--sage); font: 700 10px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.retailer-box > a:hover { background: var(--green); color: var(--ink); }
.checklist { padding-left: 24px; }
.checklist li { margin-bottom: 13px; padding-left: 8px; }
.article-rail { position: sticky; top: 82px; }
.article-rail .rail-card { margin-bottom: 24px; }
.article-rail .card-copy h3 { font-size: 15px; }
.article-rail > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; border-bottom: 1px solid; font: 700 10px/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.further-reading { padding: 56px 0 78px; background: var(--sage); }

.legal-page { max-width: 940px; padding-block: 76px 110px; }
.legal-page > h1 { margin-bottom: 38px; font: 500 clamp(54px, 8vw, 94px)/.96 var(--sans); letter-spacing: -.06em; }
.legal-page .lead-paragraph { font-size: 28px; line-height: 1.38; }
.legal-page h2 { margin: 48px 0 14px; font: 500 36px/1.1 var(--sans); letter-spacing: -.04em; }
.legal-page p, .legal-page li { font-size: 18px; }
.legal-page a:not(.button) { text-decoration: underline; text-underline-offset: 3px; }
.policy-date { font: 700 10px/1.2 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 42px 0; }
.contact-grid > div { padding: 30px; background: var(--sage); }
.contact-grid h2 { margin-top: 0; }
.contact-grid a { text-decoration: none !important; }
.not-found { min-height: 68vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 80px; }
.not-found h1 { max-width: 800px; margin-bottom: 20px; font: 500 clamp(58px, 8vw, 110px)/.94 var(--sans); letter-spacing: -.06em; }
.not-found p { font-size: 20px; }

.cookie-banner { position: fixed; z-index: 120; right: 18px; bottom: 18px; width: min(440px, calc(100% - 36px)); padding: 20px; background: var(--ink); color: var(--sage); box-shadow: 0 16px 50px rgba(7,4,3,.3); font: 12px/1.5 var(--sans); }
.cookie-banner p { margin-bottom: 14px; }
.cookie-banner a { color: var(--green); text-decoration: underline; }
.cookie-banner div { display: flex; gap: 8px; }
.cookie-banner button { border: 1px solid var(--sage); padding: 8px 10px; background: transparent; color: var(--sage); cursor: pointer; font: 700 9px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.cookie-banner button:first-child { background: var(--green); border-color: var(--green); color: var(--ink); }

@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: 1.2fr 1fr; }
  .menu-grid > div:last-child { grid-column: 2; }
  .home-hero { height: 520px; }
  .latest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .latest-lead, .latest-small { grid-column: auto; }
  .latest-lead { grid-row: span 3; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 780px); justify-content: center; }
  .article-rail { display: none; }
  .floating-feature > img { width: 78%; }
  .floating-card { right: 5%; width: 46vw; }
}

@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 32px), var(--wrap)); }
  .site-header { grid-template-columns: 1fr 1fr; padding-inline: 14px; }
  .mark-link { display: none; }
  .wordmark-link { justify-self: start; }
  .wordmark-link img { width: 145px; }
  .header-actions { gap: 9px; }
  .header-text { display: none; }
  .menu-panel { padding: 70px 24px 34px; }
  .menu-grid { grid-template-columns: 1fr; gap: 38px; }
  .menu-grid > div:last-child { grid-column: auto; }
  .menu-primary a { font-size: clamp(34px, 12vw, 58px); }
  .menu-grid a { font-size: 19px; }
  .search-panel { padding: 64px 20px 30px; }
  .search-results a { grid-template-columns: 78px 1fr; gap: 10px; font-size: 15px; }
  .subscribe-panel h2 { font-size: 42px; }
  .home-hero { height: auto; grid-template-columns: 1fr; }
  .home-hero-image { order: -1; height: 260px; }
  .home-hero-copy { padding: 34px 20px 44px; }
  .home-hero h1 { font-size: 39px; }
  .home-hero p { font-size: 16px; }
  .latest-section, .read-more { padding-block: 44px 58px; }
  .section-heading h2 { font-size: 30px; }
  .latest-grid, .archive-grid { grid-template-columns: 1fr; gap: 30px; }
  .latest-lead { grid-row: auto; display: block; }
  .latest-lead .card-image img { height: auto; min-height: 0; aspect-ratio: 1.35/1; }
  .latest-lead .card-copy { padding: 18px; }
  .latest-lead .card-copy h3 { font-size: 29px; }
  .manifesto { padding: 48px 20px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 35px; }
  .manifesto blockquote { font-size: 24px; }
  .full-feature { min-height: 560px; align-items: end; padding-bottom: 46px; }
  .full-feature h2 { font-size: 42px; }
  .dark-feature { grid-template-columns: 1fr; }
  .dark-feature > div { padding: 48px 20px; }
  .dark-feature h2 { font-size: 40px; }
  .dark-feature > a { min-height: 300px; }
  .floating-feature { min-height: 0; }
  .floating-feature > img { width: 100%; height: 360px; }
  .floating-card { position: static; width: 100%; padding: 34px 20px 42px; box-shadow: none; }
  .floating-card h2 { font-size: 36px; }
  .signup-band { min-height: 570px; align-items: end; padding: 26px 16px; }
  .signup-card { padding: 26px; }
  .signup-card h2 { font-size: 33px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .archive-page { padding-block: 42px 72px; }
  .archive-header { margin-bottom: 36px; }
  .archive-header h1 { font-size: 58px; }
  .article-header { padding: 40px 18px 30px; }
  .article-header h1 { font-size: 40px; line-height: 1.03; }
  .article-header > p { font-size: 17px; }
  .article-hero { height: 310px; }
  .image-caption { padding-inline: 16px; }
  .article-layout { width: min(calc(100% - 32px), 780px); margin-block: 42px 70px; }
  .article-body { font-size: 18px; line-height: 1.58; }
  .article-body h2 { margin-top: 46px; font-size: 31px; }
  .article-body h3 { font-size: 22px; }
  .lead-paragraph { font-size: 22px; }
  .decision-snapshot { padding: 22px 18px; }
  .decision-snapshot dl div { grid-template-columns: 1fr; gap: 6px; }
  .feature-list li { grid-template-columns: 1fr; gap: 8px; }
  .tradeoff-box p { font-size: 21px; }
  .retailer-box { margin-inline: -4px; padding: 24px 20px; }
  .retailer-box h2 { font-size: 29px; }
  .legal-page { padding-block: 54px 80px; }
  .legal-page > h1 { font-size: 55px; }
  .legal-page .lead-paragraph { font-size: 23px; }
  .legal-page h2 { font-size: 30px; }
  .legal-page p, .legal-page li { font-size: 17px; }
  .contact-grid { grid-template-columns: 1fr; }
  .not-found h1 { font-size: 60px; }
  .cookie-banner { right: 10px; bottom: 10px; width: calc(100% - 20px); }
}

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