:root {
  --site-max: 1180px;
  --page-gutter: clamp(16px, 4vw, 48px);
  --section-space: clamp(42px, 7vw, 112px);
  --ink: #25211d;
  --muted: #756d62;
  --sand: #eee7dc;
  --canvas: #fbfaf7;
  --paper: #fffdf9;
  --clay: #a74730;
  --action: #cb352d;
  --action-dark: #a92923;
  --mustard: #d99f34;
  --moss: #435c4b;
  --line: #ded6c9;
  --serif: "Noto Serif Devanagari", "Playfair Display", Georgia, serif;
  --sans: "Noto Sans Devanagari", "DM Sans", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); overflow-x: clip; }
body {
  margin: 0;
  background: linear-gradient(180deg, #fffdfa 0, var(--canvas) 540px);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-inline-size: 100%; block-size: auto; }
main, section, article, aside, header, footer, [class] { min-inline-size: 0; }
p, li, a { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
::selection { background: #ead2cb; color: var(--ink); }
a:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }
button { font: inherit; }
.site-shell { min-height: 100vh; overflow: clip; }
.site-header {
  width: min(var(--site-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 205px; height: auto; }
.header-actions { position: relative; display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.primary-nav { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.primary-nav a { padding: 8px 10px; border-radius: 99px; transition: background-color .2s ease, color .2s ease; }
.primary-nav a:hover, .primary-nav a.active { background: #f0e7de; color: var(--ink); }
.collections-menu { position: relative; }
.collections-menu__trigger { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 8px 5px; border: 0; border-bottom: 1px solid transparent; background: transparent; cursor: pointer; color: var(--muted); font: 400 13px/1 var(--sans); transition: border-color .2s ease, color .2s ease; }
.collections-menu__chevron { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.55; transition: transform .2s ease; }
.collections-menu.is-open .collections-menu__trigger, .collections-menu__trigger:hover { border-color: var(--clay); color: var(--ink); }
.collections-menu.is-open .collections-menu__chevron { transform: rotate(180deg); }
.collections-menu__panel { position: absolute; z-index: 30; right: 0; top: calc(100% - 1px); width: min(250px, calc(100vw - var(--page-gutter) - var(--page-gutter))); padding: 8px 0; display: none; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 14px 28px rgba(45, 35, 27, .12); }
.collections-menu.is-open .collections-menu__panel { display: grid; }
.collections-menu__links { display: grid; grid-template-columns: 1fr; }
.collections-menu__links a { padding: 12px 25px; color: #5f574c; font-size: 14px; line-height: 1.25; transition: background-color .2s ease, color .2s ease; }
.collections-menu__links a:hover, .collections-menu__links a:focus-visible { background: #f4eee7; color: var(--clay); }

.journal-hero {
  width: min(var(--site-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto;
  min-height: 510px;
  padding: 86px 24px 78px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--paper);
}
.journal-hero::before { content: ""; position: absolute; z-index: 0; width: 72px; height: 4px; left: 50%; bottom: 42px; background: var(--action); transform: translateX(-50%); }
.journal-hero > * { position: relative; z-index: 1; }
.journal-hero > div { max-width: 900px; }
.eyebrow { margin: 0 0 16px; color: var(--clay); font: 500 10px/1 var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.journal-hero h1 { margin: 0; font: 800 clamp(52px, 8.6vw, 112px)/.96 var(--sans); letter-spacing: -.035em; }
.journal-hero h1 em { color: var(--action); font-style: normal; font-weight: 800; }
.hero-subcopy { max-width: 635px; margin: 24px auto 0; color: #5f574c; font-size: clamp(16px, 2vw, 20px); line-height: 1.5; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 32px; }
.hero-primary { min-width: min(100%, 380px); display: inline-flex; justify-content: center; align-items: center; gap: 13px; padding: 19px 26px; background: var(--action); color: #fff; font: 800 16px/1 var(--sans); box-shadow: 0 10px 24px rgba(175, 46, 38, .2); transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.hero-primary span { font-size: 23px; line-height: .6; }
.hero-primary:hover { background: var(--action-dark); box-shadow: 0 13px 28px rgba(175, 46, 38, .28); transform: translateY(-2px); }
.hero-secondary { padding: 10px 0 6px; border-bottom: 2px solid var(--ink); font-size: 13px; font-weight: 700; }
.hero-secondary:hover { border-color: var(--clay); color: var(--clay); }

.home-featured, .home-categories, .home-about { width: min(1080px, calc(100% - var(--page-gutter) - var(--page-gutter))); margin: clamp(50px, 8vw, 94px) auto 0; }
.home-section-head { max-width: 690px; margin-bottom: 25px; }
.home-section-head .eyebrow { margin-bottom: 10px; }
.home-section-head h2 { margin: 0; font: 600 clamp(31px, 4.1vw, 48px)/1.06 var(--serif); letter-spacing: -.03em; }
.home-section-head > p:last-child { max-width: 560px; margin: 13px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.home-featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 22px; }
.home-product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: var(--paper); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.home-product-card:hover { border-color: #cdbcae; box-shadow: 0 16px 34px rgba(45, 35, 27, .11); transform: translateY(-3px); }
.home-product-card figure { min-width: 0; aspect-ratio: 3 / 2; margin: 0; overflow: hidden; background: var(--sand); }
.home-product-card picture { display: block; height: 100%; }
.home-product-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.home-product-card:hover img { transform: scale(1.02); }
.home-product-card > div { display: flex; flex: 1; flex-direction: column; padding: clamp(24px, 3.4vw, 34px); }
.home-product-card__category { margin: 0 0 11px; color: var(--clay); font: 500 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.home-product-card h3 { margin: 0; color: var(--ink); font: 600 clamp(28px, 3vw, 38px)/1.07 var(--serif); letter-spacing: -.03em; }
.home-product-card__detail { margin: 20px 0 24px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #4d453c; font: 600 13px/1.4 var(--sans); }
.home-product-card > div > span { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: var(--clay); font-size: 13px; font-weight: 800; }
.home-product-card b { font-size: 17px; line-height: .8; }
.home-category-links { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.home-about { margin-bottom: var(--section-space); padding: clamp(32px, 5vw, 62px); border-top: 3px solid var(--clay); background: #f1e8df; }
.home-about > div { max-width: 780px; }
.home-about .eyebrow { margin-bottom: 12px; }
.home-about h2 { margin: 0; font: 600 clamp(35px, 5vw, 58px)/1.05 var(--serif); letter-spacing: -.035em; }
.home-about div > p:last-child { max-width: 680px; margin: 21px 0 0; color: #4d453c; font: 500 clamp(17px, 2vw, 21px)/1.56 var(--serif); letter-spacing: -.01em; }

.topic-strip { width: min(var(--site-max), calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 46px auto 0; padding: 18px 22px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; border-left: 4px solid var(--clay); background: #f1e8df; }
.topic-strip > span { margin-right: 7px; color: var(--muted); font: 500 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .13em; }
.topic-chip { padding: 9px 13px; border: 1px solid transparent; border-radius: 99px; background: var(--paper); color: var(--ink); font-size: 12px; transition: background .2s, color .2s, border-color .2s; }
.topic-chip:hover, .topic-chip.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.journal-list { width: min(980px, calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 64px auto var(--section-space); }
.list-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 0 0 18px; border-bottom: 1px solid var(--ink); }
.list-heading h2 { margin: 0; font: 700 clamp(29px, 3.5vw, 40px)/1.05 var(--sans); letter-spacing: -.035em; }
.guide-count { margin: 0; color: var(--muted); font: 11px var(--mono); white-space: nowrap; }
a.guide-count { transition: color .2s ease; }
a.guide-count:hover { color: var(--clay); }
.story-list { margin: 0; padding: 0; list-style: none; }
.story-row { display: grid; grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 18px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); transition: color .2s ease; }
.story-no { color: var(--clay); font: 500 11px var(--mono); }
.story-main { min-width: 0; }
.story-meta { display: block; margin-bottom: 7px; color: var(--muted); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.story-title { display: block; margin: 0; font: 600 clamp(23px, 3vw, 35px)/1.12 var(--serif); letter-spacing: -.015em; }
.story-excerpt { display: block; max-width: 570px; margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.read-story { justify-self: end; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 18px; transition: background .2s, color .2s, transform .2s; }
.story-row:hover .story-title { color: var(--clay); }
.story-row:hover .read-story { background: var(--ink); color: var(--paper); transform: rotate(-35deg); }

.blog-intro { width: min(980px, calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 0 auto; padding: clamp(56px, 8vw, 96px) 0 0; }
.blog-intro h1 { max-width: 780px; margin: 0; font: 600 clamp(48px, 6.4vw, 80px)/1.02 var(--serif); letter-spacing: -.035em; }
.blog-intro h1 em { color: var(--clay); font-style: normal; }
.blog-intro > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.blog-intro + .topic-strip { margin-top: clamp(40px, 6vw, 62px); }
.blog-list { margin-top: 62px; }

.article-wrap { width: min(1120px, calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 0 auto; }
.article-head { max-width: 800px; margin: 0 auto; padding: 85px 0 44px; text-align: center; }
.back-link { display: inline-flex; gap: 8px; margin-bottom: 42px; color: var(--muted); font: 11px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.back-link:hover { color: var(--clay); }
.article-category { margin: 0 0 17px; color: var(--clay); font: 500 11px var(--mono); text-transform: uppercase; letter-spacing: .13em; }
.article-head h1 { margin: 0; font: 600 clamp(44px, 6.3vw, 80px)/1.04 var(--serif); letter-spacing: -.025em; }
.article-dek { max-width: 605px; margin: 24px auto 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.article-byline { margin-top: 28px; color: #655e54; font: 11px var(--mono); }
.article-byline span { color: var(--clay); }
.image-placeholder { min-height: 310px; margin: 42px 0; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px dashed #9e907d; background: repeating-linear-gradient(135deg, #f5efe6 0, #f5efe6 12px, #eee5da 12px, #eee5da 13px); color: #5d5144; }
.image-placeholder--hero { min-height: min(53vw, 560px); margin: 0 auto; padding: 32px; background: linear-gradient(135deg, color-mix(in srgb, var(--art-one) 16%, #faf6ef), color-mix(in srgb, var(--art-two) 18%, #f5eee4)); }
.image-placeholder__number { align-self: flex-start; padding: 7px 9px; background: var(--ink); color: var(--paper); font: 10px var(--mono); letter-spacing: .12em; }
.image-placeholder__content { max-width: 430px; margin: auto; text-align: center; }
.image-placeholder__content span { display: block; margin-bottom: 9px; color: var(--clay); font: 500 10px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.image-placeholder figcaption { font: 600 24px/1.35 var(--serif); letter-spacing: -.02em; }
.article-image { width: 100%; margin: 42px auto; overflow: hidden; background: transparent; }
.article-image img { display: block; width: 100%; height: auto; max-height: none; object-fit: cover; }
.article-image figcaption { padding: 11px 14px; color: var(--muted); font: 11px/1.45 var(--sans); }
.article-image--hero { width: 100%; max-width: none; margin-top: 0; aspect-ratio: 3 / 2; }
.article-image--hero img { width: 100%; height: 100%; object-fit: cover; }
.article-art { height: min(53vw, 560px); margin: 0 auto; overflow: hidden; position: relative; background: var(--sand); }
.article-art::before { content: ""; position: absolute; width: 44%; height: 70%; left: 16%; bottom: -13%; border-radius: 52% 48% 0 0; background: var(--art-one); transform: rotate(14deg); }
.article-art::after { content: ""; position: absolute; width: 43%; height: 48%; right: 12%; top: 14%; border: 22px solid var(--art-two); border-radius: 50%; }
.art-shape { position: absolute; width: 100px; height: 100px; right: 31%; bottom: 14%; border-radius: 50%; background: var(--art-three); }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 650px); justify-content: center; gap: 78px; padding: 58px 0 110px; }
.article-toc { position: sticky; top: 26px; align-self: start; padding: 20px 18px; border-top: 3px solid var(--clay); background: #f1e8df; }
.article-toc p { margin: 0 0 15px; color: var(--muted); font: 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.article-toc a { display: block; margin: 0 0 12px; color: #6d655a; font-size: 12px; line-height: 1.35; transition: color .2s ease, transform .2s ease; }
.article-toc a:hover { color: var(--clay); transform: translateX(3px); }
.article-body { font-size: 17px; line-height: 1.79; }
.article-intro { margin: 0 0 40px; padding-left: 21px; border-left: 3px solid var(--clay); font: 500 24px/1.48 var(--serif); letter-spacing: -.017em; }
.article-body section { margin: 0 0 50px; scroll-margin-top: 28px; }
.article-body h2 { margin: 0 0 16px; font: 600 31px/1.14 var(--serif); letter-spacing: -.03em; }
.article-body h2::after { content: ""; display: block; width: 38px; height: 2px; margin-top: 13px; background: var(--clay); }
.article-body p { margin: 0 0 19px; color: #443d35; }
.article-body strong { color: var(--ink); }
.buying-guide { margin: 54px 0 42px; padding: 31px 30px; border-top: 3px solid var(--clay); background: #efe6d7; }
.buying-guide__eyebrow { margin: 0 0 8px; color: var(--clay); font: 500 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.buying-guide h2 { margin-bottom: 17px; }
.buying-guide ul { margin: 0; padding-left: 21px; }
.buying-guide li { margin: 0 0 11px; padding-left: 5px; color: #443d35; }
.article-faq { margin: 54px 0 42px; padding: 30px; background: #fffdf9; border: 1px solid var(--line); }
.article-faq__eyebrow { margin: 0 0 8px; color: var(--clay); font: 500 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.article-faq details { border-top: 1px solid var(--line); }
.article-faq details:last-child { border-bottom: 1px solid var(--line); }
.article-faq summary { position: relative; padding: 19px 34px 19px 0; cursor: pointer; color: var(--ink); font: 600 19px/1.32 var(--serif); list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after { content: "+"; position: absolute; right: 2px; top: 15px; color: var(--clay); font: 400 25px/1 var(--sans); }
.article-faq details[open] summary::after { content: "−"; }
.article-faq details p { padding: 0 28px 21px 0; margin: 0; }
.article-note { margin: 42px 0; padding: 25px 25px 25px 28px; border-left: 3px solid var(--clay); background: #f3ede5; color: #493e33; font: 500 17px/1.6 var(--serif); }
.article-cta { margin-top: 58px; padding: 38px; background: var(--ink); color: var(--paper); }
.article-cta p { margin: 0 0 8px; color: #d8d0c4; font: 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.article-cta h3 { max-width: 520px; margin: 0 0 24px; font: 700 31px/1.14 var(--sans); letter-spacing: -.025em; }
.article-cta a { display: inline-flex; align-items: center; justify-content: center; min-width: min(100%, 290px); padding: 16px 21px; background: var(--action); color: #fff; font: 800 14px/1 var(--sans); transition: background-color .18s ease, transform .18s ease; }
.article-cta a:hover { background: var(--action-dark); transform: translateY(-2px); }
.article-cta a span { margin-left: 9px; color: #fff; font-size: 19px; }
.related { margin-top: 74px; padding-top: 25px; border-top: 2px solid var(--ink); }
.related-label { margin: 0 0 18px; color: var(--muted); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.related a { display: flex; justify-content: space-between; gap: 20px; margin: 0 0 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font: 600 19px/1.25 var(--serif); transition: color .2s ease; }
.related a:hover { color: var(--clay); }

.shop-page { width: min(1080px, calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 0 auto; padding: clamp(50px, 8vw, 92px) 0 var(--section-space); }
.shop-intro { max-width: 760px; margin-bottom: clamp(54px, 8vw, 92px); }
.shop-intro h1 { margin: 0; font: 600 clamp(48px, 6.4vw, 80px)/1.02 var(--serif); letter-spacing: -.035em; }
.shop-intro h1 em { color: var(--clay); font-style: normal; }
.shop-intro > p:last-child { max-width: 590px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.catalog-section + .catalog-browse, .catalog-browse + .catalog-browse { margin-top: clamp(58px, 9vw, 108px); }
.catalog-section__head { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--ink); }
.catalog-section__head .eyebrow { margin-bottom: 9px; }
.catalog-section__head h2 { margin: 0; font: 600 clamp(29px, 3.5vw, 40px)/1.05 var(--sans); letter-spacing: -.035em; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 360px)); gap: 22px; }
.catalog-card { overflow: hidden; border: 1px solid var(--line); background: var(--paper); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.catalog-card:hover { border-color: #cdbcae; box-shadow: 0 14px 30px rgba(45, 35, 27, .1); transform: translateY(-3px); }
.catalog-card figure { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.catalog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.catalog-card:hover img { transform: scale(1.025); }
.catalog-card > div { padding: 20px; }
.catalog-card > div > p { margin: 0 0 9px; color: var(--clay); font: 500 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.catalog-card h3 { margin: 0; font: 600 27px/1.15 var(--serif); letter-spacing: -.025em; }
.catalog-card > div > span { display: inline-flex; gap: 8px; margin-top: 22px; color: var(--clay); font-size: 12px; font-weight: 800; }
.catalog-card b { font-size: 16px; line-height: .7; }
.catalog-category-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 155px), 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.catalog-category-links a { display: flex; align-items: center; justify-content: space-between; gap: 9px; min-height: 68px; padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 600; transition: background-color .2s ease, color .2s ease; }
.catalog-category-links a span { color: var(--clay); font-size: 16px; }
.catalog-category-links a:hover { background: #f1e8df; color: var(--clay); }

.product-page { width: min(1080px, calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 0 auto; padding: 34px 0 var(--section-space); }
.product-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; color: var(--muted); font: 11px/1.4 var(--mono); }
.product-breadcrumb a { color: var(--muted); }
.product-breadcrumb a:hover { color: var(--clay); }
.product-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr); gap: clamp(32px, 5vw, 62px); align-items: start; margin-bottom: clamp(42px, 6vw, 70px); }
.product-image-box { min-width: 0; }
.product-main-image { aspect-ratio: 3 / 2; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #f2ede5; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-row { display: flex; gap: 9px; overflow-x: auto; margin-top: 11px; padding-bottom: 3px; scrollbar-width: thin; }
.product-thumb { width: 70px; height: 58px; flex: 0 0 auto; padding: 2px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); cursor: pointer; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb:hover, .product-thumb[aria-current="true"] { border: 2px solid var(--clay); }
.product-image-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.product-info { min-width: 0; }
.product-info h1 { max-width: 510px; margin: 0; font: 600 clamp(38px, 4.4vw, 60px)/1.06 var(--serif); letter-spacing: -.03em; }
.product-dek { max-width: 500px; margin: 19px 0 22px; color: #4c443a; font: 500 19px/1.54 var(--serif); }
.product-size { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 13px; margin: 0 0 22px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-size span { color: var(--muted); font: 500 10px var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.product-size strong { color: var(--ink); font-size: 14px; }
.product-highlights { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; }
.product-highlights li { position: relative; padding-left: 17px; color: #4d453c; font-size: 14px; line-height: 1.45; }
.product-highlights li::before { content: ""; position: absolute; top: .57em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.product-order-panel { margin-top: 26px; padding: 21px; border: 1px solid var(--line); border-top: 3px solid var(--clay); background: #f7f1e9; }
.product-order-panel > p { margin: 0 0 12px; color: var(--clay); font: 500 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.product-order-panel ul { display: grid; gap: 8px; margin: 0; padding-left: 18px; color: #4d453c; font-size: 13px; line-height: 1.48; }
.product-cta { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 14px; padding: 17px 19px; background: var(--ink); color: #fff; font: 800 14px/1 var(--sans); letter-spacing: .01em; box-shadow: 0 9px 20px rgba(35, 29, 23, .16); transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease; }
.product-cta b { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; color: #f3c35f; font: 700 16px/1 var(--sans); }
.product-cta:hover { background: var(--clay); color: #fff; box-shadow: 0 12px 25px rgba(35, 29, 23, .22); transform: translateY(-2px); }
.product-cta:focus-visible { outline: 3px solid #f3c35f; outline-offset: 3px; }
.affiliate-disclosure { margin: 12px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.product-pros-cons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: clamp(46px, 7vw, 76px); }
.pros-box, .cons-box { padding: 24px; border: 1px solid var(--line); background: var(--paper); }
.pros-box { border-top: 3px solid var(--moss); }
.cons-box { border-top: 3px solid var(--clay); }
.pros-box h2, .cons-box h2 { margin: 0 0 15px; font: 600 24px/1.15 var(--serif); letter-spacing: -.025em; }
.pros-box ul, .cons-box ul { display: grid; gap: 10px; margin: 0; padding-left: 18px; color: #50483e; font-size: 14px; line-height: 1.5; }
.product-faq { max-width: 760px; padding-top: 26px; border-top: 2px solid var(--ink); }
.product-faq h2 { margin: 0 0 15px; font: 600 clamp(28px, 3vw, 37px)/1.1 var(--sans); letter-spacing: -.03em; }
.product-faq details { border-top: 1px solid var(--line); }
.product-faq details:last-of-type { border-bottom: 1px solid var(--line); }
.product-faq summary { position: relative; padding: 17px 31px 17px 0; cursor: pointer; color: var(--ink); font: 600 17px/1.3 var(--serif); list-style: none; }
.product-faq summary::-webkit-details-marker { display: none; }
.product-faq summary::after { content: "+"; position: absolute; top: 13px; right: 2px; color: var(--clay); font: 400 24px/1 var(--sans); }
.product-faq details[open] summary::after { content: "−"; }
.product-faq details p { margin: 0; padding: 0 22px 18px 0; color: #4d453c; font-size: 14px; line-height: 1.55; }
.product-guide-link { display: inline-flex; margin-top: 36px; }

.topic-view { width: min(960px, calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 0 auto var(--section-space); padding: 72px 0 0; }
.topic-view h1 { max-width: 720px; margin: 0; font: 600 clamp(47px, 6vw, 76px)/1.04 var(--serif); letter-spacing: -.025em; }
.topic-view > p { max-width: 600px; margin: 22px 0 48px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.topic-view .list-heading { margin-bottom: 5px; }
.empty-state { padding: 70px 0; color: var(--muted); text-align: center; }
.site-footer { width: min(var(--site-max), calc(100% - var(--page-gutter) - var(--page-gutter))); margin: 0 auto 24px; padding: 28px 30px; border-top: 3px solid var(--clay); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; background: #f1e8df; color: var(--muted); font-size: 12px; }
.footer-brand { color: var(--ink); }
.site-footer p { margin: 0; line-height: 1.5; }
.footer-note { text-align: right; font: 10px var(--mono); }

@media (max-width: 760px) {
  .site-header { height: 70px; }
  .header-actions { gap: 4px; }
  .header-actions { gap: 3px; }
  .brand img { width: clamp(88px, 27vw, 140px); }
  .primary-nav { display: flex; gap: 0; }
  .primary-nav .blog-link, .primary-nav .shop-nav-link { display: inline-flex; padding: 8px 3px; color: var(--ink); font-size: 10px; font-weight: 700; }
  .collections-menu__trigger { min-height: 36px; gap: 4px; padding: 8px 2px; font-size: 10px; }
  .collections-menu__chevron { width: 12px; height: 12px; }
  .collections-menu__panel { padding: 8px 0; }
  .journal-hero { min-height: 430px; padding: 66px 18px 66px; }
  .journal-hero::before { bottom: 27px; }
  .journal-hero h1 { font-size: clamp(48px, 15vw, 63px); letter-spacing: -.035em; }
  .hero-subcopy { max-width: 330px; font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 17px; margin-top: 28px; }
  .hero-primary { width: min(100%, 330px); min-width: 0; }
  .hero-secondary { padding-top: 4px; }
  .home-featured, .home-categories, .home-about { margin-top: 52px; }
  .home-section-head h2 { font-size: clamp(29px, 9vw, 42px); }
  .home-product-card > div { padding: 24px 20px 26px; }
  .home-product-card h3 { font-size: clamp(29px, 9vw, 40px); }
  .home-product-card__detail { margin: 17px 0 20px; }
  .home-about { padding: 29px 20px; }
  .home-about h2 { font-size: clamp(31px, 9vw, 43px); }
  .home-about div > p:last-child { font-size: 17px; }
  .topic-strip { margin-top: 32px; padding: 15px 16px; }
  .journal-list { margin-top: 48px; }
  .list-heading { align-items: baseline; padding-bottom: 16px; }
  .list-heading h2 { font-size: 31px; }
  .guide-count { display: none; }
  .story-row { grid-template-columns: 30px minmax(0, 1fr); gap: 11px; padding: 23px 0; }
  .story-excerpt { display: none; }
  .read-story { display: none; }
  .article-head { padding: 40px 0 28px; }
  .article-head h1 { font: 700 clamp(33px, 9.5vw, 43px)/1.08 var(--sans); letter-spacing: -.02em; }
  .article-dek { font-size: 15px; }
  .article-art { height: 76vw; }
  .image-placeholder { min-height: 245px; margin: 32px 0; padding: 18px; }
  .image-placeholder--hero { min-height: 74vw; padding: 22px; }
  .image-placeholder figcaption { font-size: 20px; }
  .article-image { margin: 32px auto; }
  .article-intro { padding-left: 16px; font-size: 20px; }
  .buying-guide { padding: 24px 20px; }
  .article-faq { padding: 22px 19px; }
  .article-faq summary { padding-right: 30px; font-size: 18px; }
  .related { margin-top: 54px; }
  .related a { font-size: 18px; }
  .article-cta { margin-top: 42px; padding: 28px 22px; }
  .article-cta h3 { font-size: 27px; }
  .article-cta a { width: 100%; }
  .shop-intro h1 { font-size: clamp(39px, 11vw, 53px); }
  .shop-intro > p:last-child { font-size: 16px; }
  .blog-intro h1 { font-size: clamp(39px, 11vw, 53px); }
  .blog-intro > p:last-child { font-size: 16px; }
  .catalog-card h3 { font-size: 25px; }
  .product-page { padding: 27px 0 74px; }
  .product-top { display: block; }
  .product-info { margin-top: 28px; }
  .product-info h1 { font-size: clamp(36px, 10vw, 51px); }
  .product-dek { font-size: 18px; }
  .product-thumb { width: 62px; height: 52px; }
  .product-order-panel { padding: 19px; }
  .product-cta { padding: 18px 19px; }
  .product-pros-cons { grid-template-columns: 1fr; gap: 14px; }
  .pros-box, .cons-box { padding: 21px 19px; }
  .product-faq summary { font-size: 17px; }
  .buying-guide { margin-top: 40px; padding: 23px 20px; }
  .article-layout { display: block; padding: 38px 0 75px; }
  .article-toc { position: static; display: none; }
  .article-body { font-size: 16px; }
  .article-intro { font-size: 21px; }
  .article-body h2 { font-size: 28px; }
  .site-footer { margin-bottom: 16px; padding: 24px 20px; grid-template-columns: 1fr; gap: 16px; }
  .footer-note { text-align: left; }
}
