@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #102a2f;
  --ink-2: #173b40;
  --paper: #f7f4ee;
  --white: #fffdf9;
  --mist: #e4edef;
  --mist-2: #d4e1e3;
  --copper: #ca6339;
  --copper-dark: #a94824;
  --green: #24735c;
  --muted: #607175;
  --line: rgba(16, 42, 47, .14);
  --shadow: 0 22px 64px rgba(13, 45, 49, .12);
  --radius: 22px;
  --radius-sm: 14px;
  --shell: min(1220px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", system-ui, sans-serif; line-height: 1.58; -webkit-font-smoothing: antialiased; }
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: "Manrope", system-ui, sans-serif; line-height: 1.1; letter-spacing: -.035em; margin: 0; }
p { margin: 0 0 1rem; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 1000; background: var(--ink); color: white; padding: 10px 16px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 12px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--copper-dark); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--copper); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-top: 8px; }
.section-head p { color: var(--muted); max-width: 580px; margin: 0; }
.text-link { font-weight: 800; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.text-link::after { content: "→"; color: var(--copper); transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }
.btn { min-height: 48px; border: 1px solid transparent; border-radius: 999px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--copper); color: white; box-shadow: 0 12px 28px rgba(202, 99, 57, .24); }
.btn--primary:hover { background: var(--copper-dark); }
.btn--secondary { background: transparent; border-color: rgba(255,255,255,.35); color: white; }
.btn--light { background: var(--white); border-color: var(--line); }
.btn--disabled { background: #dbe1df; color: #687472; cursor: not-allowed; box-shadow: none; }
.btn--disabled:hover { transform: none; }

.topline { background: #0b2024; color: rgba(255,255,255,.75); font-size: .75rem; }
.topline__inner { height: 33px; display: flex; align-items: center; justify-content: center; gap: 34px; }
.topline__inner span + span { position: relative; }
.topline__inner span + span::before { content: ""; position: absolute; left: -18px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--copper); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,244,238,.92); border-bottom: 1px solid rgba(16,42,47,.08); backdrop-filter: blur(16px); }
.header-main { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 184px; }
.brand__mark { width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; gap: 3px; transform: skew(-7deg); }
.brand__mark i { display: block; height: 27px; width: 5px; border-radius: 99px; background: var(--ink); }
.brand__mark i:nth-child(2) { height: 35px; background: var(--copper); }
.brand strong { font-family: "Manrope", sans-serif; display: block; letter-spacing: .11em; line-height: 1; font-size: 1.2rem; }
.brand small { display: block; font-size: .62rem; color: var(--muted); margin-top: 5px; letter-spacing: .02em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 27px); font-size: .87rem; font-weight: 700; }
.desktop-nav a { position: relative; padding-block: 28px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--copper); transition: right .2s; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.icon-button, .menu-button { border: 1px solid var(--line); background: rgba(255,255,255,.45); border-radius: 50%; width: 42px; height: 42px; cursor: pointer; display: grid; place-items: center; font-size: 1.5rem; }
.compare-pill { background: var(--ink); color: white; border-radius: 999px; padding: 10px 15px; font-size: .78rem; font-weight: 800; }
.compare-pill span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; margin-left: 5px; border-radius: 99px; background: var(--copper); font-size: .66rem; }
.menu-button { display: none; }
.menu-button span { width: 17px; height: 2px; background: var(--ink); display: block; margin: 2px auto; }
.mobile-nav { display: none; }

.hero { background: var(--ink); color: white; overflow: hidden; position: relative; }
.hero::after { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -160px; top: -255px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); pointer-events: none; }
.hero__grid { min-height: 590px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(50px, 8vw, 110px); padding-block: 74px; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(3rem, 6.2vw, 5.8rem); max-width: 780px; margin: 16px 0 22px; }
.hero h1 em { color: #f2b08f; font-style: normal; }
.hero__copy > p { color: rgba(255,255,255,.7); max-width: 620px; font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.finder-card { background: var(--white); color: var(--ink); padding: 32px; border-radius: 28px; box-shadow: var(--shadow); position: relative; }
.finder-card::before { content: "01"; position: absolute; right: 24px; top: 15px; color: rgba(16,42,47,.08); font: 800 4.5rem/1 "Manrope"; }
.finder-card h2 { font-size: 1.6rem; margin: 8px 0 7px; }
.finder-card > p { color: var(--muted); font-size: .9rem; }
.finder-step { margin-top: 24px; }
.finder-step label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 10px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 9px 13px; font-size: .8rem; cursor: pointer; }
.choice.is-active { background: var(--mist); border-color: var(--ink); font-weight: 800; }
.finder-result { margin-top: 25px; padding: 18px; border-radius: 14px; background: var(--ink); color: white; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.finder-result span { font-size: .76rem; color: rgba(255,255,255,.6); display: block; }
.finder-result strong { display: block; font-size: .95rem; }
.finder-result a { width: 34px; height: 34px; border-radius: 50%; background: var(--copper); display: grid; place-items: center; }

.proof-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.proof-grid { min-height: 95px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.proof-item { padding: 17px 28px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border: 0; }
.proof-item strong { display: block; font: 800 1rem "Manrope"; }
.proof-item span { color: var(--muted); font-size: .77rem; }
.proof-icon { color: var(--copper); font-weight: 900; margin-right: 5px; }

.section { padding-block: clamp(72px, 9vw, 120px); }
.section--white { background: var(--white); }
.section--mist { background: var(--mist); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-height: 265px; position: relative; overflow: hidden; padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.category-card:nth-child(2) { background: #dfe9e7; }
.category-card:nth-child(3) { background: #f0dfd3; }
.category-card:nth-child(4) { background: #dbe5e9; }
.category-card .num { color: var(--copper-dark); font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.category-card h3 { font-size: 1.45rem; margin: 13px 0 8px; }
.category-card p { color: var(--muted); font-size: .86rem; max-width: 220px; }
.category-card .arrow { position: absolute; left: 26px; bottom: 24px; width: 38px; height: 38px; border: 1px solid var(--line); display: grid; place-items: center; border-radius: 50%; }
.category-object { position: absolute; width: 65px; height: 142px; right: 31px; bottom: -15px; border-radius: 23px 23px 8px 8px; background: linear-gradient(140deg, #24484d, #0e2428); transform: rotate(12deg); box-shadow: -12px 17px 26px rgba(16,42,47,.18); }
.category-object::before { content: ""; position: absolute; left: 8px; right: 8px; top: -14px; height: 25px; border-radius: 8px 8px 3px 3px; background: repeating-linear-gradient(90deg, #6e8081 0 2px, #b7c2c0 2px 4px); }
.category-card:nth-child(2) .category-object { height: 125px; width: 58px; background: linear-gradient(140deg, #c77850, #8e4024); }
.category-card:nth-child(3) .category-object { width: 115px; height: 64px; border-radius: 60% 35% 25% 40%; transform: rotate(-9deg); background: linear-gradient(140deg, #e8e5da, #9aa9aa); }
.category-card:nth-child(3) .category-object::before { display: none; }
.category-card:nth-child(4) .category-object { width: 55px; height: 120px; background: linear-gradient(140deg, #d8cab7, #665240); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; min-width: 0; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__image { aspect-ratio: 1 / .92; border-radius: 15px; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #edf2f1, #dde8e7); position: relative; }
.product-card__image img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s; }
.product-card:hover img { transform: scale(1.04); }
.product-card__badge { position: absolute; top: 12px; left: 12px; z-index: 1; background: var(--green); color: white; padding: 6px 9px; border-radius: 999px; font-size: .63rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.product-card__body { padding: 18px 6px 7px; display: flex; flex-direction: column; flex: 1; }
.product-card__brand { color: var(--copper-dark); text-transform: uppercase; letter-spacing: .11em; font-size: .65rem; font-weight: 800; }
.product-card h3 { font-size: 1rem; line-height: 1.35; letter-spacing: -.02em; margin: 7px 0 15px; }
.rating { display: flex; gap: 5px; align-items: center; color: #ce7a28; font-size: .72rem; margin-bottom: 15px; }
.rating span { color: var(--muted); }
.product-card__footer { border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price small { display: block; color: var(--muted); font-size: .65rem; }
.price strong { font: 800 1.03rem "Manrope"; }
.card-actions { display: flex; gap: 6px; }
.circle-action { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.circle-action:hover, .circle-action.is-active { background: var(--ink); color: white; }

.editorial-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.story-card { min-height: 410px; border-radius: 28px; overflow: hidden; position: relative; background: var(--ink); color: white; display: flex; align-items: end; }
.story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .56; }
.story-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,27,31,.92), rgba(8,27,31,.02) 75%); }
.story-card__content { position: relative; z-index: 1; padding: 34px; max-width: 650px; }
.story-card h3 { font-size: clamp(1.65rem, 3vw, 2.5rem); margin: 10px 0; }
.story-card p { color: rgba(255,255,255,.73); }
.mini-stories { display: grid; gap: 16px; }
.mini-story { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.mini-story span { color: var(--copper-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mini-story h3 { font-size: 1.25rem; margin-top: 10px; }
.mini-story p { color: var(--muted); font-size: .84rem; }

.method { background: var(--ink); color: white; }
.method-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.method-copy h2 { font-size: clamp(2.2rem, 4vw, 4rem); margin: 14px 0 19px; }
.method-copy p { color: rgba(255,255,255,.65); }
.method-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.12); }
.method-step { background: var(--ink); padding: 28px; min-height: 165px; }
.method-step span { color: #f2b08f; font: 800 .75rem "Manrope"; }
.method-step h3 { font-size: 1.08rem; margin: 12px 0 8px; }
.method-step p { color: rgba(255,255,255,.56); font-size: .8rem; }

.page-hero { background: var(--ink); color: white; padding: 54px 0 62px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: rgba(255,255,255,.53); font-size: .75rem; margin-bottom: 25px; }
.breadcrumbs a:hover { color: white; }
.page-hero__grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); margin: 9px 0 14px; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.7); font-size: 1rem; }
.hero-stat { min-width: 150px; border-left: 1px solid rgba(255,255,255,.18); padding-left: 24px; }
.hero-stat strong { font: 800 2.4rem "Manrope"; display: block; }
.hero-stat span { color: rgba(255,255,255,.56); font-size: .75rem; }

.catalog-wrap { display: grid; grid-template-columns: 230px 1fr; gap: 38px; align-items: start; }
.filters { position: sticky; top: 128px; }
.filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; }
.filter-head h2 { font-size: 1.1rem; }
.filter-head button { border: 0; background: transparent; color: var(--copper-dark); font-size: .73rem; font-weight: 800; cursor: pointer; }
.filter-group { padding: 19px 0; border-top: 1px solid var(--line); }
.filter-group h3 { font: 800 .79rem "Manrope"; margin-bottom: 12px; letter-spacing: 0; }
.check { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .82rem; margin: 9px 0; cursor: pointer; }
.check input { accent-color: var(--copper); }
.filter-toggle { display: none; }
.catalog-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.catalog-top p { color: var(--muted); margin: 0; font-size: .86rem; }
.catalog-top select { border: 1px solid var(--line); background: var(--white); padding: 10px 34px 10px 13px; border-radius: 999px; color: var(--ink); }
.catalog-products .product-grid { grid-template-columns: repeat(3, 1fr); }
.expert-note { background: #f0dfd3; border-radius: 20px; padding: 24px 26px; margin-bottom: 26px; display: flex; gap: 18px; align-items: start; }
.expert-note strong { display: block; font-family: "Manrope"; }
.expert-note p { color: #70594c; font-size: .84rem; margin: 4px 0 0; }
.expert-note__mark { min-width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--copper); color: white; font-weight: 800; }

.product-page { padding: 40px 0 100px; }
.breadcrumbs--dark { color: var(--muted); }
.product-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.product-gallery { position: sticky; top: 130px; }
.product-main-image { min-height: 540px; background: linear-gradient(145deg, #edf2f1, #dce8e6); border-radius: 28px; display: grid; place-items: center; position: relative; overflow: hidden; }
.product-main-image img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.product-main-image .product-card__badge { top: 20px; left: 20px; }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.thumb { min-height: 94px; border: 1px solid var(--line); background: var(--white); border-radius: 13px; display: grid; place-items: center; color: var(--muted); font-size: .75rem; }
.thumb.is-active { border-color: var(--ink); }
.product-summary .product-card__brand { font-size: .72rem; }
.product-summary h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin: 12px 0 18px; }
.lead { color: var(--muted); font-size: 1rem; }
.key-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 26px 0; }
.key-fact { background: var(--mist); border-radius: 13px; padding: 15px; }
.key-fact span { color: var(--muted); font-size: .66rem; display: block; }
.key-fact strong { font: 800 .84rem "Manrope"; display: block; margin-top: 4px; }
.offer-box { border: 1px solid var(--line); border-radius: 20px; background: var(--white); padding: 20px; margin: 25px 0; }
.offer-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 20px; }
.offer-row strong { font-family: "Manrope"; display: block; }
.offer-row span { color: var(--muted); font-size: .73rem; }
.offer-price { font: 800 1.35rem "Manrope" !important; color: var(--ink) !important; }
.affiliate-note { padding-top: 12px; margin-top: 13px; border-top: 1px solid var(--line); font-size: .68rem !important; }
.product-tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-top: 34px; }
.product-tabs button { border: 0; background: transparent; padding: 13px 9px; font-size: .8rem; font-weight: 800; cursor: pointer; border-bottom: 2px solid transparent; }
.product-tabs button.is-active { color: var(--copper-dark); border-bottom-color: var(--copper); }
.product-copy { padding-top: 28px; }
.product-copy h2 { font-size: 1.55rem; margin: 26px 0 12px; }
.product-copy p, .product-copy li { color: #455a5e; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table th, .spec-table td { text-align: left; padding: 13px 4px; }
.spec-table th { color: var(--muted); font-weight: 500; width: 44%; }

.article-wrap { padding: 44px 0 110px; }
.article-hero { min-height: 520px; border-radius: 28px; overflow: hidden; position: relative; display: flex; align-items: end; color: white; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,27,31,.94), rgba(7,27,31,.06) 80%); }
.article-hero__copy { position: relative; z-index: 1; padding: clamp(28px, 5vw, 60px); max-width: 900px; }
.article-hero h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); margin: 10px 0 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.66); font-size: .75rem; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 720px); gap: 70px; justify-content: center; padding-top: 58px; }
.toc { position: sticky; top: 130px; align-self: start; border-left: 1px solid var(--line); padding-left: 20px; }
.toc strong { font: 800 .8rem "Manrope"; display: block; margin-bottom: 12px; }
.toc a { display: block; color: var(--muted); font-size: .75rem; padding: 5px 0; }
.toc a:hover { color: var(--copper-dark); }
.article-body { font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.82; color: #334b4f; }
.article-body .article-lead { font-size: 1.27rem; color: var(--ink); line-height: 1.65; }
.article-body h2 { font-family: "Manrope"; color: var(--ink); font-size: 1.8rem; margin: 50px 0 15px; scroll-margin-top: 125px; }
.article-body li { margin: 8px 0; }
.article-callout { font-family: "DM Sans"; background: var(--mist); border-radius: 16px; padding: 22px; margin: 30px 0; border-left: 3px solid var(--copper); font-size: .9rem; }
.article-callout strong { display: block; color: var(--ink); margin-bottom: 5px; }

.brand-hero { background: #dfe9e7; padding: 72px 0; }
.brand-hero__grid { display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: center; }
.brand-hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); margin: 12px 0 18px; }
.brand-hero p { max-width: 670px; color: var(--muted); }
.brand-monogram { aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; box-shadow: 0 25px 55px rgba(16,42,47,.2); }
.brand-monogram span { font: 800 5rem "Manrope"; letter-spacing: -.1em; }
.brand-facts { display: flex; gap: 30px; margin-top: 30px; }
.brand-facts strong { display: block; font: 800 1.4rem "Manrope"; }
.brand-facts span { color: var(--muted); font-size: .72rem; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.compare-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table th:first-child, .compare-table td:first-child { width: 180px; color: var(--muted); font-size: .8rem; }
.compare-product { display: flex; gap: 13px; align-items: center; }
.compare-product img { width: 66px; height: 66px; object-fit: contain; border-radius: 12px; background: var(--mist); mix-blend-mode: multiply; }
.compare-product strong { display: block; font: 800 .84rem/1.3 "Manrope"; }
.compare-product span { color: var(--copper-dark); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.compare-best { background: rgba(36,115,92,.08); color: var(--green); font-weight: 800; }

.empty-state { text-align: center; padding: 120px 20px; }
.empty-state h1 { font-size: 4rem; }
.empty-state p { color: var(--muted); }

.site-footer { background: #0b2024; color: white; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 55px; }
.brand--footer .brand__mark i { background: white; }
.brand--footer .brand__mark i:nth-child(2) { background: var(--copper); }
.brand--footer small { color: rgba(255,255,255,.5); }
.footer-grid p { color: rgba(255,255,255,.54); font-size: .78rem; max-width: 330px; margin-top: 18px; }
.footer-grid h3 { font-size: .8rem; letter-spacing: .04em; margin-bottom: 17px; }
.footer-grid > div > a:not(.brand) { display: block; color: rgba(255,255,255,.62); font-size: .8rem; padding: 4px 0; }
.footer-grid > div > a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-size: .68rem; }

/* Data-driven money pages */
.money-hero { padding: 52px 0 64px; background: radial-gradient(circle at 82% 18%, rgba(191,130,83,.22), transparent 30%), linear-gradient(135deg, #17312b, #0f211d); color: #fff; }
.money-hero .breadcrumbs, .money-hero .breadcrumbs a { color: rgba(255,255,255,.68); }
.money-hero__grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(290px,.55fr); gap: 58px; align-items: center; }
.money-hero__grid > * { min-width: 0; }
.money-hero h1 { max-width: 900px; margin: 12px 0 18px; color: #fff; font-size: clamp(2.45rem,5.4vw,5.25rem); line-height: .97; letter-spacing: -.055em; }
.money-hero .lead { max-width: 780px; color: rgba(255,255,255,.79); font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.72; }
.research-status { display: inline-flex; align-items: center; gap: 12px; margin-top: 25px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.07); }
.research-status > span { display: grid; flex: 0 0 34px; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--copper); font-size: 1.1rem; }
.research-status > div { min-width: 0; }
.research-status strong, .research-status small { display: block; }
.research-status small { max-width: 560px; margin-top: 2px; color: rgba(255,255,255,.66); line-height: 1.45; }
.value-card { padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(250,247,241,.96); color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.value-card > span { display: inline-block; padding: 6px 9px; border-radius: 999px; background: rgba(191,130,83,.14); color: #8e5934; font: 800 .65rem "Manrope"; letter-spacing: .12em; }
.value-card h2 { margin: 16px 0 10px; font-size: 1.8rem; }
.value-card p { color: var(--muted); line-height: 1.65; }
.value-card a { display: inline-block; margin-top: 18px; color: var(--green); font: 800 .75rem "Manrope"; }
.need-selector { display: grid; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); gap: 22px; padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.need-selector__choices { display: grid; gap: 8px; }
.need-choice { width: 100%; padding: 14px 16px; border: 1px solid transparent; border-radius: 13px; background: #fff; color: var(--ink); text-align: left; font: 750 .82rem "Manrope"; cursor: pointer; transition: .18s ease; }
.need-choice:hover { border-color: rgba(191,130,83,.45); transform: translateX(2px); }
.need-choice.is-active { border-color: var(--copper); background: #fff7f0; color: #774426; }
.need-selector__result { display: flex; min-height: 220px; flex-direction: column; justify-content: center; padding: clamp(24px,5vw,48px); border-radius: 18px; background: var(--green); color: #fff; }
.need-selector__result span { color: #d5b08f; font: 800 .64rem "Manrope"; letter-spacing: .14em; text-transform: uppercase; }
.need-selector__result p { margin-top: 12px; font: 650 clamp(1.12rem,2vw,1.55rem)/1.52 "Manrope"; }
.money-product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.money-product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 38px rgba(18,42,35,.06); }
.money-product-card__image { position: relative; display: grid; place-items: center; min-height: 260px; padding: 24px; background: linear-gradient(145deg,#f8f5ef,#fff); }
.money-product-card__image img { width: 100%; height: 220px; object-fit: contain; mix-blend-mode: multiply; }
.money-product-card__image .product-card__badge { position: absolute; top: 16px; left: 16px; z-index: 1; }
.money-product-card__content { padding: 22px; }
.money-product-card__content h3 { min-height: 3.2em; margin: 7px 0 10px; font: 800 1.02rem/1.45 "Manrope"; }
.money-product-card__content > p { min-height: 4.5em; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.money-product-card__price { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2px 10px; margin: 18px 0; padding-top: 16px; border-top: 1px solid var(--line); }
.money-product-card__price span, .money-product-card__price small { color: var(--muted); font-size: .67rem; }
.money-product-card__price strong { grid-row: span 2; font: 850 1.35rem "Manrope"; }
.merchant-details { border-top: 1px solid var(--line); }
.merchant-details summary { padding-top: 15px; color: var(--green); font: 800 .73rem "Manrope"; cursor: pointer; }
.merchant-offers { display: grid; gap: 8px; margin-top: 12px; }
.merchant-offer { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 10px; border-radius: 10px; background: var(--paper); }
.merchant-offer strong, .merchant-offer small { display: block; }
.merchant-offer small { margin-top: 2px; color: var(--muted); font-size: .6rem; }
.merchant-offer b { font: 800 .8rem "Manrope"; }
.merchant-offer a { padding: 7px 9px; border-radius: 8px; background: var(--green); color: #fff; font: 800 .65rem "Manrope"; }
.money-product-placeholder { display: grid; place-items: center; width: 100px; height: 100px; border-radius: 50%; background: var(--green); color: #fff; font: 800 2rem "Manrope"; }
.research-table { width: 100%; border-collapse: collapse; background: #fff; }
.research-table th, .research-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: .78rem; }
.research-table thead th { background: var(--green); color: #fff; font: 800 .68rem "Manrope"; letter-spacing: .05em; text-transform: uppercase; }
.research-table tbody th { min-width: 280px; font: 750 .78rem/1.4 "Manrope"; }
.research-table tbody th span { display: block; color: var(--copper); font-size: .62rem; text-transform: uppercase; }
.decision-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.decision-card { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.decision-card > span { color: var(--copper); font: 800 .7rem "Manrope"; }
.decision-card h3 { margin: 28px 0 10px; font-size: 1.2rem; }
.decision-card p { color: var(--muted); font-size: .82rem; line-height: 1.65; }
.related-link-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.related-link-grid a { display: flex; justify-content: space-between; gap: 20px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink); font: 750 .8rem "Manrope"; }
.related-link-grid a:hover { border-color: var(--copper); background: #fff9f3; }
.affiliate-card-note { margin: 9px 0 14px; color: var(--muted); font-size: .7rem; }

.search-dialog { width: min(720px, calc(100vw - 30px)); border: 0; border-radius: 28px; padding: 40px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.search-dialog::backdrop { background: rgba(5,20,23,.75); backdrop-filter: blur(7px); }
.search-dialog h2 { font-size: 2rem; margin: 9px 0 24px; }
.dialog-close { position: absolute; right: 18px; top: 15px; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }
.search-field { min-height: 58px; border: 1px solid var(--line); background: var(--white); border-radius: 14px; display: flex; align-items: center; gap: 12px; padding: 0 17px; }
.search-field input { border: 0; outline: 0; flex: 1; background: transparent; min-width: 0; }
.search-results { margin-top: 15px; display: grid; gap: 6px; }
.search-hit { padding: 12px; border-radius: 11px; background: var(--white); display: flex; justify-content: space-between; gap: 15px; }
.search-hit span { color: var(--muted); font-size: .72rem; }
.toast { position: fixed; z-index: 500; left: 50%; bottom: 25px; transform: translate(-50%, 20px); background: var(--ink); color: white; padding: 12px 18px; border-radius: 999px; box-shadow: var(--shadow); font-size: .8rem; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.noscript { margin: 0; padding: 20px; background: #fee9df; text-align: center; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; inset: 111px 0 auto; background: var(--paper); padding: 25px 20px 35px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { font: 800 1.3rem "Manrope"; padding: 10px calc((100vw - var(--shell)) / 2); }
  .hero__grid { grid-template-columns: 1fr 390px; gap: 40px; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-products .product-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
  .money-hero__grid { grid-template-columns: 1.25fr .75fr; gap: 32px; }
  .money-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 680px); --radius: 18px; }
  .topline__inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .topline__metric { display: none; }
  .header-main { height: 69px; }
  .brand small { display: none; }
  .brand { min-width: 0; }
  .brand__mark { width: 30px; height: 30px; }
  .brand__mark i { height: 23px; width: 4px; }
  .brand__mark i:nth-child(2) { height: 30px; }
  .compare-pill { padding: 9px 11px; }
  .mobile-nav { inset: 102px 0 auto; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 58px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .finder-card { padding: 25px; }
  .proof-grid { grid-template-columns: 1fr 1fr; padding-block: 12px; }
  .proof-item { border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(3), .proof-item:nth-child(4) { border-bottom: 0; }
  .proof-item:nth-child(3) { padding-left: 0; }
  .section-head { display: block; }
  .section-head .text-link { margin-top: 15px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 480px; }
  .method-grid { grid-template-columns: 1fr; }
  .page-hero__grid, .brand-hero__grid { grid-template-columns: 1fr; }
  .hero-stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding: 18px 0 0; }
  .brand-monogram { max-width: 280px; }
  .catalog-wrap { grid-template-columns: 1fr; }
  .filters { display: none; position: static; background: var(--white); padding: 20px; border-radius: 16px; }
  .filters.is-open { display: block; }
  .filter-toggle { display: inline-flex; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-main-image { min-height: 420px; }
  .article-hero { min-height: 570px; }
  .article-layout { grid-template-columns: 1fr; padding-inline: 7px; }
  .toc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .money-hero { padding: 34px 0 46px; }
  .money-hero__grid, .need-selector { grid-template-columns: 1fr; }
  .money-hero h1 { font-size: clamp(2.35rem,12vw,4rem); }
  .research-status { align-items: flex-start; }
  .money-product-grid, .decision-grid { grid-template-columns: 1fr 1fr; }
  .related-link-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .icon-button { display: none; }
  .hero__actions .btn { width: 100%; }
  .category-grid, .product-grid, .catalog-products .product-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 230px; }
  .proof-item { padding: 14px 10px; }
  .proof-item strong { font-size: .82rem; }
  .proof-item span { font-size: .67rem; }
  .method-steps { grid-template-columns: 1fr; }
  .catalog-top { align-items: stretch; flex-direction: column; }
  .catalog-top select { width: 100%; }
  .key-facts { grid-template-columns: 1fr; }
  .offer-row { grid-template-columns: 1fr; }
  .brand-facts { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; gap: 8px; }
  .search-dialog { padding: 34px 20px 24px; }
  .money-product-grid, .decision-grid { grid-template-columns: 1fr; }
  .money-hero .lead, .research-status small, .value-card p { overflow-wrap: anywhere; }
  .research-status { width: 100%; }
  .value-card { padding: 26px; }
  .need-selector { padding: 12px; }
  .merchant-offer { grid-template-columns: 1fr auto; }
  .merchant-offer a { grid-column: 1 / -1; text-align: center; }
  .research-table th, .research-table td { padding: 12px 10px; }
  .research-table tbody th { min-width: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
