:root {
  --ink: #13231e;
  --green: #19392f;
  --green-2: #48645a;
  --gold: #c49a5a;
  --bone: #fbf8f0;
  --paper: #fff;
  --line: #dedbd1;
  --muted: #6d746f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.62 var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.shell-wide { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.shell-narrow { width: min(790px, calc(100% - 48px)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: 8px; left: -999px; z-index: 100; padding: 10px 14px; background: var(--bone); border: 2px solid var(--gold); }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.site-header { position: relative; z-index: 30; background: var(--bone); border-bottom: 1px solid var(--line); }
.topline { border-bottom: 1px solid var(--line); background: var(--paper); }
.topnav { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topnav nav { display: flex; align-items: center; gap: 23px; }
.topnav a { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.topnav a:hover { color: var(--green-2); }
.masthead { min-height: 112px; display: flex; align-items: center; justify-content: center; position: relative; }
.brand img { width: 390px; height: 92px; }
.masthead-copy { position: absolute; right: 0; top: 37px; color: var(--green-2); text-align: right; font-size: 10px; line-height: 1.5; letter-spacing: .22em; font-weight: 700; }
.menu-toggle, .search-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.search-panel { padding: 22px; background: var(--green); color: var(--bone); }
.search-panel form { width: min(700px, 100%); margin: auto; }
.search-panel label { display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.search-panel form div, .search-form div { display: flex; }
.search-panel input, .search-form input { min-width: 0; flex: 1; border: 0; padding: 14px; background: #fff; }
.search-panel button, .search-form button { border: 0; padding: 0 24px; background: var(--gold); color: var(--ink); font-weight: 800; cursor: pointer; }
.mobile-nav { display: none; }

.story-mosaic { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; background: #fff; padding: 5px; }
.story-tile { min-width: 0; height: 520px; overflow: hidden; position: relative; }
.story-tile.wide { grid-column: 1 / -1; height: 620px; }
.story-tile a { display: block; width: 100%; height: 100%; position: relative; overflow: hidden; }
.story-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.story-tile .scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(4, 14, 10, .04), rgba(4, 14, 10, .12)); transition: background .35s ease; }
.story-tile:hover img { transform: scale(1.025); }
.story-tile:hover .scrim { background: rgba(4, 14, 10, .2); }
.tile-copy { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px; color: #fff; text-align: center; }
.tile-category, .tile-copy time { display: inline-block; width: max-content; max-width: 100%; padding: 6px 9px; background: rgba(8, 17, 14, .78); font-size: 13px; font-weight: 700; }
.tile-copy h2 { max-width: 780px; margin: 10px 0; padding: 10px 18px; background: rgba(8, 17, 14, .72); font: 400 clamp(24px, 2.6vw, 43px)/.98 var(--serif); letter-spacing: -.02em; text-transform: uppercase; }
.story-tile.half .tile-copy h2 { font-size: clamp(22px, 2.15vw, 34px); max-width: 560px; }
.tile-copy time { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

.category-band { padding: 80px 0 90px; background: var(--bone); text-align: center; }
.section-kicker { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.category-band h2 { margin: 8px 0 12px; font: italic 700 clamp(38px, 5vw, 68px)/1 var(--serif); }
.category-band > .shell > p { margin: 0 auto; max-width: 660px; color: var(--green-2); font-size: 18px; }
.category-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 50px; background: var(--line); border: 1px solid var(--line); }
.category-links a { min-height: 142px; display: flex; flex-direction: column; justify-content: center; padding: 22px; background: var(--paper); text-align: left; transition: .2s; }
.category-links a:hover { background: var(--green); color: var(--bone); }
.category-links span { font: 700 22px/1.1 var(--serif); }
.category-links small { margin-top: 9px; color: var(--muted); line-height: 1.4; }
.category-links a:hover small { color: #d6dfda; }

.archive-head { padding: 75px 0 64px; background: var(--green); color: var(--bone); text-align: center; }
.archive-head h1 { margin: 8px 0 14px; font: italic 700 clamp(48px, 6vw, 78px)/1 var(--serif); }
.archive-head p { max-width: 720px; margin: auto; color: #dbe3df; font-size: 18px; }
.archive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 62px 42px; padding-block: 72px 96px; }
.archive-card { min-width: 0; }
.archive-image { display: block; height: 390px; overflow: hidden; background: var(--bone); }
.archive-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.archive-card:hover .archive-image img { transform: scale(1.025); }
.archive-copy { padding-top: 20px; }
.eyebrow { display: flex; gap: 12px; color: var(--green-2); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.archive-copy h2 { margin: 10px 0; font: 700 31px/1.08 var(--serif); }
.archive-copy p { color: var(--muted); }
.text-link { color: var(--green); font-weight: 800; border-bottom: 1px solid var(--gold); }

.article { padding-top: 64px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--green); font-weight: 700; }
.article-head { text-align: center; }
.article-head h1 { margin: 14px auto; font: 700 clamp(45px, 6vw, 72px)/1.02 var(--serif); letter-spacing: -.035em; }
.dek { color: var(--green-2); font: 21px/1.5 var(--serif); }
.byline { margin: 24px 0 42px; color: var(--muted); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.byline span { margin-inline: 7px; }
.article-figure { margin-top: 0; }
.article-figure img { width: 100%; max-height: 740px; object-fit: cover; }
.article-figure figcaption { padding: 10px 0; color: var(--muted); font-size: 12px; }
.article-body { padding: 35px 0 90px; font: 18px/1.76 var(--serif); }
.article-body .lead { font-size: 23px; line-height: 1.58; }
.article-body h2 { margin: 52px 0 14px; font: 700 36px/1.12 var(--serif); letter-spacing: -.02em; }
.article-body h3 { font: 700 20px/1.25 var(--serif); }
.article-body a:not(.product-cta a) { color: var(--green); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.disclosure { padding: 20px 22px; margin: 0 0 34px; border-left: 4px solid var(--gold); background: var(--bone); font: 14px/1.55 var(--sans); }
.disclosure p { margin: 4px 0 0; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0 38px; }
.fit-grid section { padding: 23px; background: var(--bone); border-top: 4px solid var(--green); }
.fit-grid section + section { border-color: var(--gold); }
.fit-grid span { color: var(--muted); font: 800 10px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.fit-grid h3 { margin: 9px 0 0; }
.number-list { padding: 0; list-style: none; }
.number-list li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid var(--line); }
.number-list > li > span { color: var(--gold); font: italic 700 28px/1 var(--serif); }
.number-list strong { font-size: 19px; }
.number-list p { margin: 4px 0 0; color: var(--muted); font: 15px/1.5 var(--sans); }
.look-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 28px 0; background: var(--line); border: 1px solid var(--line); }
.look-list div { padding: 24px; background: var(--bone); }
.look-list span { color: var(--gold); font: 800 10px/1 var(--sans); letter-spacing: .14em; }
.look-list p { margin: 8px 0 0; font-size: 16px; line-height: 1.55; }
.tradeoffs { padding-left: 22px; }
.tradeoffs li { margin-bottom: 11px; padding-left: 5px; }
.product-cta { display: flex; align-items: center; justify-content: space-between; gap: 34px; margin: 48px 0; padding: 30px; background: var(--green); color: var(--bone); font-family: var(--sans); }
.product-cta > div { max-width: 490px; }
.product-cta > div > span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.product-cta h2 { margin: 6px 0 7px; font-size: 29px; }
.product-cta p { margin: 0 0 8px; color: #d9e1dd; font-size: 14px; line-height: 1.55; }
.product-cta small { color: #abbcb4; }
.product-cta > a { flex: 0 0 auto; padding: 14px 18px; background: var(--gold); color: var(--ink); font-weight: 800; font-size: 14px; }
.faq details { padding: 18px 0; border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--green-2); }
.related { padding: 62px 0 90px; border-top: 1px solid var(--line); }
.related > h2 { margin: 7px 0 28px; font: italic 700 42px/1 var(--serif); }
.related > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.related article img { width: 100%; height: 210px; object-fit: cover; }
.related article span { display: block; margin-top: 13px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.related article h3 { margin: 5px 0 0; font: 700 21px/1.15 var(--serif); }

.policy { padding: 82px 0 100px; }
.policy > h1 { margin: 10px 0 18px; font: italic 700 clamp(50px, 7vw, 78px)/1 var(--serif); }
.policy > .dek { margin-bottom: 48px; }
.policy section { padding: 24px 0; border-top: 1px solid var(--line); }
.policy section h2 { margin: 0 0 8px; font: 700 27px/1.2 var(--serif); }
.policy section p { margin: 0; color: var(--green-2); }
.legal-note { margin-top: 34px; padding: 18px 20px; background: var(--bone); border-left: 4px solid var(--gold); font-size: 13px; }
.primary-link { display: inline-block; margin-right: 18px; padding: 13px 17px; background: var(--green); color: var(--bone); font-weight: 800; }
.search-head label { display: block; margin-bottom: 10px; }
.search-form { max-width: 700px; margin: 30px auto 0; }
.search-form input { padding: 15px; }
.search-results { min-height: 320px; padding-block: 52px 90px; }
.search-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.search-grid article { border: 1px solid var(--line); }
.search-grid article a { display: grid; grid-template-columns: 190px 1fr; }
.search-grid img { width: 190px; height: 100%; min-height: 180px; object-fit: cover; }
.search-grid article div { padding: 18px; }
.search-grid span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.search-grid h2 { margin: 6px 0; font: 700 23px/1.15 var(--serif); }
.search-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { padding-top: 68px; background: #10261f; color: var(--bone); }
.footer-lead { display: grid; grid-template-columns: 120px 1fr; gap: 30px; align-items: center; padding-bottom: 50px; border-bottom: 1px solid #385148; }
.seal { width: 104px; height: 104px; display: grid; place-items: center; border: 2px solid var(--gold); border-radius: 50%; font: italic 700 42px/1 var(--serif); }
.footer-lead h2 { margin: 0 0 8px; font: italic 700 38px/1 var(--serif); }
.footer-lead p { max-width: 720px; margin: 0; color: #b9c8c1; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; padding-block: 46px; }
.footer-grid section { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid h2 { color: var(--gold); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid a { color: #d9e1dd; font-size: 14px; }
.copyright { padding: 20px 0; border-top: 1px solid #385148; color: #93a79e; font-size: 11px; }
.cookie-banner { position: fixed; z-index: 80; left: 18px; right: 18px; bottom: 18px; max-width: 780px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 18px 20px; background: var(--bone); border: 1px solid var(--gold); box-shadow: 0 14px 40px rgba(19, 35, 30, .24); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.cookie-banner > div:last-child { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.cookie-banner a { font-size: 13px; text-decoration: underline; }
.cookie-banner button { border: 0; padding: 10px 14px; background: var(--green); color: var(--bone); font-weight: 800; cursor: pointer; }

@media (max-width: 980px) {
  .topnav nav:first-child { gap: 14px; }
  .topnav nav:first-child a:nth-child(n+5) { display: none; }
  .story-tile { height: 460px; }
  .story-tile.wide { height: 530px; }
  .archive-image { height: 310px; }
  .look-list { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .shell, .shell-wide, .shell-narrow { width: min(100% - 28px, var(--shell)); }
  .topline { display: none; }
  .masthead { min-height: 84px; padding-inline: 50px; }
  .brand img { width: 235px; height: auto; }
  .masthead-copy { display: none; }
  .menu-toggle, .search-toggle { position: absolute; display: block; width: 38px; height: 38px; padding: 8px; }
  .menu-toggle { right: 0; }
  .menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--ink); }
  .search-toggle { left: 0; }
  .search-toggle span { position: relative; display: block; width: 16px; height: 16px; border: 1.5px solid var(--ink); border-radius: 50%; }
  .search-toggle span::after { content: ""; position: absolute; width: 7px; height: 1px; right: -5px; bottom: -3px; background: var(--ink); transform: rotate(48deg); }
  .mobile-nav { position: absolute; left: 0; right: 0; top: 84px; z-index: 40; padding: 14px 22px 24px; background: var(--green); color: var(--bone); }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a { padding: 12px 4px; border-bottom: 1px solid #3e5a50; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-nav hr { width: 100%; border: 0; border-top: 1px solid var(--gold); }
  .search-panel form div { flex-direction: column; }
  .search-panel button { padding: 12px; }
  .story-mosaic { grid-template-columns: 1fr; }
  .story-tile, .story-tile.wide { grid-column: auto; height: 382px; }
  .tile-copy { padding: 22px; }
  .tile-copy h2, .story-tile.half .tile-copy h2 { font-size: clamp(27px, 8vw, 37px); max-width: 100%; padding: 9px 12px; }
  .tile-category, .tile-copy time { font-size: 12px; }
  .category-band { padding: 58px 0 68px; }
  .category-band h2 { font-size: 45px; }
  .category-links { grid-template-columns: 1fr; }
  .category-links a { min-height: 112px; }
  .archive-head { padding: 50px 0 46px; }
  .archive-grid { grid-template-columns: 1fr; gap: 48px; padding-block: 48px 70px; }
  .archive-image { height: 320px; }
  .archive-copy h2 { font-size: 28px; }
  .article { padding-top: 38px; }
  .article-head h1 { font-size: 43px; }
  .dek { font-size: 19px; }
  .article-figure { width: 100%; }
  .article-figure img { height: 360px; }
  .article-figure figcaption { padding-inline: 14px; }
  .article-body { font-size: 17px; }
  .article-body .lead { font-size: 21px; }
  .article-body h2 { font-size: 31px; }
  .fit-grid { grid-template-columns: 1fr; }
  .product-cta { align-items: stretch; flex-direction: column; padding: 24px; }
  .product-cta > a { text-align: center; }
  .related { padding-inline: 14px; }
  .related > div { grid-template-columns: 1fr; }
  .related article a { display: grid; grid-template-columns: 120px 1fr; gap: 15px; }
  .related article img { width: 120px; height: 120px; grid-row: 1 / span 2; }
  .related article span { align-self: end; margin: 0; }
  .related article h3 { font-size: 19px; }
  .footer-lead { grid-template-columns: 1fr; }
  .seal { width: 84px; height: 84px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .search-form div { flex-direction: column; }
  .search-form button { padding: 13px; }
  .search-grid article a { grid-template-columns: 120px 1fr; }
  .search-grid img { width: 120px; min-height: 180px; }
  .search-grid article div { padding: 14px; }
  .search-grid p { display: none; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 12px; }
  .cookie-banner > div:last-child { justify-content: space-between; }
}
