:root {
  --ink: #17201d;
  --muted: #67716d;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --line: #dedbd2;
  --green: #225c48;
  --terracotta: #c96643;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,253,248,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { width: min(1280px, calc(100% - 48px)); min-height: 78px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Georgia, serif; font-size: 20px; font-weight: 700; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.main-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; font-size: 14px; color: #59625f; }
.main-nav a { padding: 29px 0 25px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav .active { color: var(--ink); border-color: var(--green); }
.header-action { border: 1px solid #c9ccc6; border-radius: 999px; padding: 10px 15px; font-size: 13px; font-weight: 650; }
.hero { min-height: 590px; padding: 106px 0 74px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 340px; height: 420px; right: 3%; top: 74px; background: #dfe9df; border-radius: 46% 54% 62% 38% / 43% 42% 58% 57%; transform: rotate(8deg); z-index: -1; }
.eyebrow, .kicker { color: var(--green); font-size: 12px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 { margin: 20px 0 22px; max-width: 720px; font-family: Georgia, serif; font-size: clamp(58px, 7.8vw, 104px); font-weight: 400; line-height: .93; letter-spacing: -.055em; }
.hero h1 em { color: var(--terracotta); font-weight: 400; }
.hero > p { max-width: 570px; color: var(--muted); font-size: 19px; line-height: 1.65; }
.hero-logo { position: absolute; width: 330px; height: 330px; right: 3.5%; top: 104px; border-radius: 50%; object-fit: cover; box-shadow: 0 26px 70px rgba(61,56,45,.14); }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; gap: 22px; padding: 14px 20px; border-radius: 4px; font-size: 14px; font-weight: 700; }
.button.primary { background: var(--green); color: white; }
.button.secondary { border: 1px solid #c8ccc6; background: rgba(255,255,255,.65); }
.section { padding: 90px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.section-heading h2 { margin: 8px 0 0; font-family: Georgia, serif; font-size: clamp(38px, 4vw, 56px); font-weight: 400; letter-spacing: -.035em; }
.section-heading > p { max-width: 340px; color: var(--muted); line-height: 1.55; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-card { min-height: 248px; padding: 22px; position: relative; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(30,40,37,.09); }
.sand { background: #eee8db; }.sage { background: #dfe9df; }.blue { background: #dfe8ed; }.rose { background: #eee0dd; }.amber { background: #eee2c8; }.lavender { background: #e8e2ed; }
.category-mark { width: 47px; height: 47px; border: 1px solid rgba(23,32,29,.22); border-radius: 50%; display: grid; place-items: center; font-family: Georgia, serif; font-size: 14px; }
.category-arrow { position: absolute; top: 25px; right: 25px; font-size: 18px; }
.category-card h3 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.category-card p { margin: 0 0 14px; color: #58615d; font-size: 14px; line-height: 1.5; }
.category-card small { color: #69716e; font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.articles-section { background: #f1eee7; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-visual { height: 270px; display: block; overflow: hidden; background: #ead6c5; }
.article-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-visual:hover img { transform: scale(1.025); }
.article-meta { display: flex; gap: 11px; margin: 18px 0 11px; color: var(--green); font-size: 11px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.article-meta span + span::before { content: "•"; margin-right: 11px; color: #a4a9a5; }
.article-card h3 { margin: 0; max-width: 460px; font-family: Georgia, serif; font-size: 28px; line-height: 1.18; font-weight: 400; }
.article-card h3 a:hover { color: var(--green); }
.article-card > p { max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.55; }
footer { border-top: 1px solid var(--line); padding: 45px 0; }
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.footer-inner p, .footer-links { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 25px; }

@media (max-width: 850px) {
  .main-nav { display: none; }
  .hero-logo { width: 250px; height: 250px; right: -80px; opacity: .32; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrap, .header-inner { width: min(100% - 30px, 1180px); }
  .header-inner { min-height: 66px; }
  .brand { font-size: 17px; }
  .brand-logo { width: 36px; height: 36px; }
  .header-action { padding: 9px 12px; }
  .hero { min-height: 540px; padding: 74px 0 58px; }
  .hero h1 { font-size: 57px; }
  .hero > p { font-size: 17px; }
  .hero-actions, .section-heading, .footer-inner, .footer-links { align-items: flex-start; flex-direction: column; }
  .section { padding: 65px 0; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 220px; }
  .footer-links { gap: 12px; }
}

/* Category pages */
.back-link { display: inline-block; margin-bottom: 42px; color: #56605c; font-size: 13px; font-weight: 650; }
.category-hero { padding: 58px 0 78px; }
.category-hero-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.category-mark.large { width: 64px; height: 64px; margin-bottom: 34px; }
.category-hero h1 { margin: 8px 0 14px; font-family: Georgia, serif; font-size: clamp(62px, 8vw, 112px); line-height: .95; font-weight: 400; letter-spacing: -.055em; }
.category-intro { max-width: 570px; margin: 0; color: #58615d; font-size: 18px; line-height: 1.6; }
.category-stat { width: 190px; padding: 20px 0 4px; border-top: 1px solid rgba(23,32,29,.25); }
.category-stat strong { display: block; font-family: Georgia, serif; font-size: 44px; font-weight: 400; }
.category-stat span { color: #5f6864; font-size: 12px; }
.empty-state { padding: 80px 20px; text-align: center; background: #f2eee5; }
.empty-state h2 { margin: 8px 0; font-family: Georgia, serif; font-size: 35px; font-weight: 400; }
.empty-state p { color: var(--muted); }

/* Article page */
.article-page { padding-bottom: 90px; }
.article-header { max-width: 920px; padding-top: 60px; padding-bottom: 54px; text-align: center; }
.article-header .back-link { display: block; text-align: left; }
.article-tags { display: flex; justify-content: center; gap: 8px; }
.article-tags a { padding: 7px 11px; border-radius: 999px; color: var(--green); background: #e2ebe5; font-size: 11px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.article-header h1 { margin: 22px auto 18px; font-family: Georgia, serif; font-size: clamp(46px, 6vw, 78px); line-height: 1.03; font-weight: 400; letter-spacing: -.04em; }
.article-lead { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 19px; line-height: 1.6; }
.article-byline { display: flex; justify-content: center; margin-top: 27px; color: #707874; font-size: 12px; }
.article-byline span + span::before { content: "·"; padding: 0 10px; }
.affiliate-disclosure { max-width: 920px; margin-top: -28px; margin-bottom: 28px; text-align: center; color: #747b77; font-size: 12px; line-height: 1.55; }
.article-photo-cover { width: min(1120px, calc(100% - 48px)); height: 520px; margin: 0 auto; position: relative; overflow: hidden; background: #eee7da; }
.article-photo-cover > img { width: 100%; height: 100%; object-fit: cover; }
.article-photo-cover figcaption { position: absolute; right: 14px; bottom: 12px; padding: 6px 9px; background: rgba(255,253,248,.88); color: #626a66; font-size: 10px; }
.article-body { max-width: 1120px; padding-top: 72px; display: grid; grid-template-columns: 250px minmax(0,720px); gap: 82px; }
.article-sidebar { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 26px; color: var(--muted); font-size: 12px; }
.article-sidebar nav { display: flex; flex-direction: column; gap: 11px; }
.article-sidebar nav strong { color: var(--ink); margin-bottom: 4px; }
.article-sidebar nav a:hover { color: var(--green); }
.sticky-product-card { overflow: hidden; border: 1px solid var(--line); background: #f4efe5; color: var(--ink); }
.sticky-product-card img { width: 100%; height: 145px; display: block; object-fit: cover; object-position: center 38%; }
.sticky-product-card > span, .sticky-product-card > strong, .sticky-product-card > small { display: block; margin-inline: 16px; }
.sticky-product-card > span { margin-top: 15px; color: #b05b3e; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.sticky-product-card > strong { margin-top: 6px; font-family: Georgia, serif; font-size: 20px; line-height: 1.16; }
.sticky-product-card > small { margin-top: 8px; color: #68716d; font-size: 11px; line-height: 1.45; }
.sticky-product-card > a { display: flex; justify-content: space-between; margin: 15px 12px 12px; padding: 11px 12px; background: var(--green); color: white; font-size: 12px; font-weight: 750; }
.article-copy { color: #3e4743; font-size: 17px; line-height: 1.82; }
.article-copy > p, .article-copy section > p { margin: 0 0 19px; }
.article-copy .article-intro { color: var(--ink); font-family: Georgia, serif; font-size: 24px; line-height: 1.55; }
.article-copy em { color: #b65f40; }
.article-copy section { padding: 54px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
.article-copy section:first-of-type { padding-top: 12px; }
.section-number { color: var(--green); font-size: 11px; font-weight: 750; letter-spacing: .1em; }
.article-copy h2 { margin: 8px 0 18px; color: var(--ink); font-family: Georgia, serif; font-size: 42px; line-height: 1.12; font-weight: 400; }
.feature-list, .consideration-list { margin: 25px 0 28px; padding: 0; list-style: none; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-list li { padding: 13px 14px 13px 38px; position: relative; background: #edf2ed; color: #34413b; font-size: 14px; }
.feature-list li::before { content: "✓"; position: absolute; left: 14px; color: var(--green); font-weight: 800; }
.consideration-list { display: grid; gap: 2px; border-top: 1px solid var(--line); }
.consideration-list li { padding: 14px 10px 14px 34px; position: relative; border-bottom: 1px solid var(--line); font-size: 15px; }
.consideration-list li::before { content: "→"; position: absolute; left: 8px; color: #bd6547; }
.article-inline-figure { margin: 34px 0 30px; }
.article-inline-figure img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.article-inline-figure figcaption, .article-split figcaption { margin-top: 8px; color: #7a817d; font-size: 10px; line-height: 1.5; }
.article-split { display: grid; grid-template-columns: minmax(0,1fr) 255px; gap: 30px; align-items: start; }
.article-split p { margin: 0 0 18px; }
.article-split figure { margin: 4px 0 0; }
.article-split img { width: 100%; display: block; aspect-ratio: 2/3; object-fit: cover; }
.voltage-warning { margin: 25px 0; padding: 20px 22px; background: #f4e5dc; border-left: 4px solid var(--terracotta); }
.voltage-warning strong { display: block; color: #9b482f; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.voltage-warning p { margin: 7px 0 0; color: #4c4b46; font-size: 15px; line-height: 1.6; }
.article-amazon-cta { margin-top: 34px; padding: 30px; background: #1d543f; color: white; }
.article-amazon-cta > span { color: #bcd4c8; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-amazon-cta h3 { margin: 8px 0 7px; font-family: Georgia, serif; font-size: 29px; font-weight: 400; }
.article-amazon-cta p { margin: 0 0 18px; color: #d8e5de; font-size: 14px; line-height: 1.55; }
.article-amazon-cta a { display: inline-flex; gap: 28px; padding: 13px 15px; background: #fffdf8; color: var(--ink); font-size: 13px; font-weight: 800; }
.article-amazon-cta small { display: block; margin-top: 11px; color: #bcd4c8; font-size: 9px; }
.purchase-bar { position: fixed; right: 18px; bottom: 18px; z-index: 30; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 14px; align-items: center; width: min(400px, calc(100% - 36px)); padding: 12px 12px 12px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(23,32,29,.96); color: white; box-shadow: 0 14px 42px rgba(20,27,24,.25); backdrop-filter: blur(8px); }
.purchase-bar button { position: absolute; right: -7px; top: -9px; width: 24px; height: 24px; border: 1px solid #d4d8d5; border-radius: 50%; background: white; color: var(--ink); cursor: pointer; }
.purchase-bar strong, .purchase-bar span { display: block; }
.purchase-bar strong { font-size: 13px; }
.purchase-bar span { margin-top: 2px; color: #c5d0cb; font-size: 9px; }
.purchase-bar > a { padding: 11px 13px; border-radius: 4px; background: #fffdf8; color: var(--ink); font-size: 11px; font-weight: 800; white-space: nowrap; }

@media (max-width: 850px) {
  .article-body { max-width: 760px; grid-template-columns: 1fr; gap: 25px; }
  .article-sidebar { position: static; }
  .sticky-product-card { display: none; }
  .article-sidebar nav { flex-direction: row; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
  .article-sidebar nav strong { width: 100%; }
  .article-sidebar nav a { padding: 7px 10px; background: #f0ede5; border-radius: 999px; }
  .purchase-bar { left: 12px; right: 12px; bottom: 12px; width: auto; gap: 12px; }
}

@media (max-width: 600px) {
  .category-hero { padding: 35px 0 55px; }
  .category-hero-inner { align-items: flex-start; flex-direction: column; }
  .category-stat { width: 100%; }
  .article-header { padding-top: 38px; }
  .article-header h1 { font-size: 44px; }
  .article-byline { flex-wrap: wrap; line-height: 1.8; }
  .affiliate-disclosure { margin-top: -16px; padding-inline: 8px; }
  .article-photo-cover { width: 100%; height: 260px; }
  .article-body { width: min(100% - 30px, 720px); padding-top: 48px; }
  .article-copy { font-size: 16px; }
  .article-copy .article-intro { font-size: 21px; }
  .article-copy h2 { font-size: 34px; }
  .feature-list, .article-split { grid-template-columns: 1fr; }
  .article-inline-figure { margin-inline: -15px; }
  .article-amazon-cta { margin-inline: -15px; padding: 24px 20px; }
}
