/* ═══════════════════════════════════════════════════════════
   TheBestMilkFrother.com — Multi-Page CSS
   Phase 1: Full SEO-optimized static site
═══════════════════════════════════════════════════════════ */

:root {
  --ink: #0D0A06;
  --espresso: #1A0D00;
  --roast: #3D2010;
  --caramel: #B87333;
  --gold: #C9963A;
  --amber: #E8A020;
  --cream: #FAF5EE;
  --foam: #F2EAD8;
  --linen: #EDE3D0;
  --mist: #F8F4EE;
  --warm-gray: #7A6E62;
  --white: #fff;
  --success: #2E7D4F;
  --danger: #943030;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: 'Outfit', sans-serif; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; }
img { max-width: 100%; }

/* ── TOP BAR ── */
.top-bar { background: var(--espresso); padding: 6px 60px; display: flex; justify-content: center; align-items: center; }
.top-news { font-size: 0.68rem; color: rgba(250,245,238,0.32); letter-spacing: 0.06em; }
.top-news span { color: var(--gold); }

/* ── HEADER ── */
header { position: sticky; top: 0; z-index: 300; background: rgba(250,245,238,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(184,115,51,0.12); transition: box-shadow .3s; }
header.scrolled { box-shadow: 0 4px 24px rgba(13,10,6,0.09); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; padding: 0 60px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--espresso); text-decoration: none; }
.logo em { color: var(--caramel); font-style: normal; }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--warm-gray); text-decoration: none; padding: 8px 14px; border-radius: 2px; transition: all .2s; position: relative; }
.nav-link:hover { color: var(--espresso); background: var(--foam); }
.nav-link.active { color: var(--caramel); }
.nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 2px; background: var(--caramel); border-radius: 2px 2px 0 0; }
.nav-cta { background: var(--espresso); color: var(--cream); padding: 8px 16px; border-radius: 2px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; transition: background .2s; }
.nav-cta:hover { background: var(--caramel); }

/* MOBILE NAV */
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--espresso); border-radius: 2px; }
.mob-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--espresso); z-index: 500; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mob-nav.open { display: flex; }
.mob-link { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--cream); text-decoration: none; }
.mob-link:hover { color: var(--gold); }
.close-btn { position: absolute; top: 22px; right: 26px; background: none; border: none; color: var(--cream); font-size: 1.8rem; cursor: pointer; }

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 14px 60px; background: var(--mist); border-bottom: 1px solid var(--linen); }
.bc-list { display: flex; list-style: none; gap: 6px; font-size: 0.72rem; color: var(--warm-gray); }
.bc-list li + li::before { content: '›'; margin-right: 6px; }
.bc-list a { color: var(--caramel); text-decoration: none; }
.bc-list a:hover { text-decoration: underline; }
.bc-current { color: var(--ink); }

/* ── HERO ── */
.hero { min-height: 92vh; display: grid; grid-template-columns: 56% 44%; overflow: hidden; }
.hero-l { background: var(--espresso); display: flex; flex-direction: column; justify-content: center; padding: 80px 72px 80px 60px; position: relative; }
.hero-l::after { content: ''; position: absolute; top: 0; right: -52px; width: 105px; height: 100%; background: var(--espresso); clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%); z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 20px; }
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); }
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4.8vw, 5.6rem); font-weight: 700; line-height: 1.0; color: var(--cream); margin-bottom: 20px; }
h1 em { color: var(--gold); font-style: italic; }
.hero-sub { color: rgba(250,245,238,0.58); font-size: 0.97rem; line-height: 1.82; max-width: 420px; margin-bottom: 12px; }
.byline { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(250,245,238,0.48); margin-bottom: 18px; }
.byline::before { content: ''; width: 22px; height: 1px; background: var(--gold); opacity: 0.6; }
.byline-link { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,150,58,0.3); }
.hero-stats { display: flex; gap: 0; margin-bottom: 38px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px; }
.hs { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.hs:last-child { border-right: none; }
.hs-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.hs-lbl { font-size: 0.62rem; color: rgba(250,245,238,0.3); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; display: block; }
.hero-acts { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-r { background: var(--foam); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 48px; position: relative; z-index: 1; }

/* BUTTONS */
.btn-gold { background: var(--gold); color: var(--espresso); padding: 13px 28px; border: none; border-radius: 1px; font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all .25s; display: inline-block; }
.btn-gold:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,150,58,0.32); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: none; border: 1.5px solid rgba(26,13,0,0.15); color: var(--espresso); padding: 13px 28px; border-radius: 1px; font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all .2s; cursor: pointer; }
.btn-outline:hover { border-color: var(--caramel); color: var(--caramel); }
.btn-buy { background: var(--espresso); color: var(--cream); padding: 8px 16px; border: none; border-radius: 1px; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block; }
.btn-buy:hover { background: var(--caramel); }
.btn-amz, .btn-amz-big { display: block; width: 100%; background: #FF9900; color: #111; padding: 12px; border: none; font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: background .2s; text-decoration: none; border-radius: 1px; text-align: center; }
.btn-amz:hover, .btn-amz-big:hover { background: #e68a00; }
.btn-sm { display: inline-block; background: var(--espresso); color: var(--cream); padding: 6px 14px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 1px; margin-top: 8px; }
.btn-sm:hover { background: var(--caramel); }
.amz-disc { font-size: 0.6rem; color: var(--warm-gray); margin-top: 6px; text-align: center; }
.btn-tbl { background: var(--espresso); color: var(--cream); padding: 6px 12px; border-radius: 1px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.btn-tbl:hover { background: var(--caramel); }

/* FEATURED CARD */
.fc { background: var(--white); padding: 28px 24px; text-align: center; width: 100%; max-width: 316px; box-shadow: 0 20px 60px rgba(13,10,6,0.11); position: relative; border-radius: 2px; }
.fc-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--espresso); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.fc-float { animation: float 5s ease-in-out infinite; display: block; margin: 14px auto 12px; }
.fc-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.fc-revs { font-size: 0.7rem; color: var(--warm-gray); margin: 4px 0 10px; }
.fs-pill { display: inline-flex; align-items: center; gap: 5px; background: var(--espresso); color: var(--gold); padding: 5px 13px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; margin-bottom: 12px; }
.fc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 3px; }
.fc-type { font-size: 0.73rem; color: var(--warm-gray); margin-bottom: 12px; }
.price-range { font-size: 1.1rem; font-weight: 700; color: var(--caramel); }
.price-big { margin-bottom: 14px; }

/* TRUST MARQUEE */
.trust-bar { background: var(--linen); border-top: 1px solid rgba(184,115,51,0.18); border-bottom: 1px solid rgba(184,115,51,0.18); overflow: hidden; padding: 11px 0; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--roast); white-space: nowrap; }
.mq-track { display: inline-block; animation: marquee 40s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }

/* SECTIONS */
section { padding: 88px 60px; }
.sec-lbl { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--caramel); display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sec-lbl::after { content: ''; flex: 0 0 32px; height: 1.5px; background: var(--caramel); }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 700; line-height: 1.06; color: var(--espresso); margin-bottom: 12px; }
h2 em { color: var(--caramel); font-style: italic; }
.sec-sub { font-size: 0.93rem; color: var(--warm-gray); line-height: 1.78; max-width: 500px; }
.sec-hd { margin-bottom: 50px; }
.see-all { text-align: center; margin-top: 44px; }

/* ── PRODUCT CARDS ── */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1180px; margin: 0 auto; }
.pgrid-full { grid-template-columns: repeat(3, 1fr); }
.pcard { background: var(--white); border: 1px solid rgba(184,115,51,0.1); border-radius: 2px; transition: all .32s cubic-bezier(.25,.46,.45,.94); display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,10,6,0.11); border-color: rgba(184,115,51,0.26); }
.pcard-img { height: 170px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-radius: 2px 2px 0 0; }
.pcard-icon { font-size: 3.5rem; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.18)); }
.c1 { background: linear-gradient(135deg, #f5e8cc, #e8d0a0); }
.c2 { background: linear-gradient(135deg, #dce8f0, #bdd4e4); }
.c3 { background: linear-gradient(135deg, #f0dce8, #ddbdd4); }
.c4 { background: linear-gradient(135deg, #dce0d8, #bdc8ba); }
.c5 { background: linear-gradient(135deg, #e8dcc8, #d4c0a0); }
.c6 { background: linear-gradient(135deg, #d8e0e8, #b8c8d4); }
.rank-badge { position: absolute; top: 13px; left: 13px; background: var(--espresso); color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 0.76rem; font-weight: 700; padding: 3px 9px; border-radius: 1px; }
.type-tag { position: absolute; top: 13px; right: 13px; background: var(--gold); color: var(--espresso); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.pcard-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pcard-cat { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--caramel); margin-bottom: 6px; }
.pcard-name { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 700; color: var(--espresso); margin-bottom: 7px; line-height: 1.2; }
.pcard-name a { text-decoration: none; color: inherit; }
.pcard-name a:hover { color: var(--caramel); }
.rating-row { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars { color: var(--gold); font-size: 0.84rem; letter-spacing: 1px; }
.revs { font-size: 0.7rem; color: var(--warm-gray); }
.fs-row { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.fs-lbl { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); white-space: nowrap; }
.fs-bar { flex: 1; height: 4px; background: var(--foam); border-radius: 2px; overflow: hidden; }
.fs-fill { height: 100%; background: linear-gradient(90deg, var(--caramel), var(--gold)); border-radius: 2px; }
.fs-val { font-size: 0.7rem; font-weight: 700; white-space: nowrap; }
.pcard-desc { font-size: 0.8rem; color: var(--warm-gray); line-height: 1.62; margin-bottom: 14px; flex: 1; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 11px; }
.pro-list, .con-list { font-size: 0.71rem; line-height: 1.6; list-style: none; }
.pro-list li { color: #1e6b3a; padding-left: 14px; position: relative; margin-bottom: 3px; }
.pro-list li::before { content: '✓'; position: absolute; left: 0; color: #1e6b3a; font-weight: 700; }
.con-list li { color: #943030; padding-left: 14px; position: relative; margin-bottom: 3px; }
.con-list li::before { content: '✗'; position: absolute; left: 0; color: #943030; }
.ed-picks { font-size: 0.64rem; color: var(--warm-gray); margin-bottom: 11px; line-height: 1.65; font-style: italic; background: var(--mist); padding: 8px 10px; border-left: 2px solid var(--caramel); }
.ed-picks strong { color: var(--caramel); font-style: normal; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--linen); margin-top: auto; }

/* ── CATEGORIES ── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card { background: var(--white); border: 1px solid rgba(184,115,51,0.1); padding: 30px 20px; text-align: center; border-radius: 2px; cursor: pointer; transition: all .28s; text-decoration: none; display: block; }
.cat-card:hover { background: var(--espresso); transform: translateY(-5px); box-shadow: 0 16px 44px rgba(13,10,6,0.14); }
.cat-card:hover .cat-name, .cat-card:hover .cat-cnt { color: var(--cream); }
.cat-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; transition: transform .3s; }
.cat-card:hover .cat-icon { transform: scale(1.15); }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.cat-cnt { font-size: 0.7rem; color: var(--warm-gray); }

/* ── MILK CTA GRID ── */
.milk-cta { background: var(--foam); }
.milk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.milk-card { display: flex; flex-direction: column; align-items: center; background: var(--white); border: 1px solid rgba(184,115,51,0.1); padding: 24px 16px; border-radius: 2px; text-decoration: none; transition: all .25s; text-align: center; }
.milk-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,10,6,0.1); border-color: var(--caramel); }
.milk-icon { font-size: 2rem; margin-bottom: 8px; }
.milk-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.milk-rating { font-size: 0.7rem; color: var(--caramel); font-weight: 600; }
.milk-temp { font-size: 0.65rem; color: var(--warm-gray); }

/* ── PAGE HERO ── */
.page-hero { background: var(--espresso); padding: 64px 60px; }
.ph-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ph-eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); }
.ph-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.6vw, 3.6rem); font-weight: 700; line-height: 1.06; color: var(--cream); margin-bottom: 14px; }
.ph-h1 em { color: var(--gold); font-style: italic; }
.ph-sub { font-size: 0.93rem; color: rgba(250,245,238,0.5); line-height: 1.78; max-width: 620px; margin-bottom: 22px; }
.ph-stats { display: flex; gap: 32px; }
.phstat .n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.phstat .l { font-size: 0.62rem; color: rgba(250,245,238,0.3); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px; }
.ph-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

/* ── METHOD ── */
.method-bar { background: var(--linen); border-top: 3px solid var(--caramel); padding: 16px 60px; }
.method-bar p { font-size: 0.74rem; color: var(--roast); line-height: 1.72; }
.method-bar a { color: var(--caramel); }
.method-sec { background: var(--mist); border-top: 1px solid var(--linen); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.mbox { background: var(--white); border: 1px solid rgba(184,115,51,0.1); border-radius: 2px; padding: 18px; }
.mbox-icon { font-size: 1.5rem; margin-bottom: 7px; }
.mbox-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso); margin-bottom: 5px; }
.mbox-desc { font-size: 0.7rem; color: var(--warm-gray); line-height: 1.55; }
.mbox-weight { font-size: 0.9rem; font-weight: 700; color: var(--gold); margin-top: 8px; }

/* ── COMPARISON TABLE ── */
.compare-sec { background: var(--espresso); padding: 80px 60px; }
.compare-sec h2 { color: var(--cream); }
.compare-sec .sec-lbl { color: var(--gold); }
.compare-sec .sec-lbl::after { background: var(--gold); }
.compare-sec .sec-sub { color: rgba(250,245,238,0.45); }
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.cmp-table th { text-align: left; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); padding: 10px 12px; border-bottom: 1px solid rgba(201,150,58,0.25); white-space: nowrap; }
.cmp-table td { font-size: 0.78rem; color: var(--cream); padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }
.cmp-table a { color: var(--cream); }
.td-rank { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--gold); font-size: 1rem; }
.td-name { font-weight: 600; min-width: 180px; }
.td-feat { text-align: center; }
.chk { color: var(--success); font-weight: 700; }
.xmk { color: var(--danger); opacity: 0.5; }
.score-bar { display: flex; align-items: center; gap: 8px; }
.s-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; min-width: 60px; }
.s-fill { height: 100%; background: linear-gradient(90deg, var(--caramel), var(--gold)); border-radius: 3px; }
.s-num { font-weight: 700; color: var(--gold); font-size: 0.82rem; min-width: 24px; }
.tbl-note { font-size: 0.65rem; color: rgba(250,245,238,0.3); margin-top: 14px; line-height: 1.6; }

/* ── INDIVIDUAL REVIEW PAGE ── */
.review-article { padding: 0 60px 60px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 48px 0 40px; border-bottom: 1px solid var(--linen); margin-bottom: 40px; gap: 40px; }
.review-badges { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.rank-pill { background: var(--espresso); color: var(--gold); font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.tier-pill { font-size: 0.65rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; }
.tier-top-pick { background: rgba(46,125,79,0.12); color: var(--success); }
.tier-recommended { background: rgba(201,150,58,0.12); color: var(--gold); }
.tier-conditional { background: rgba(122,110,98,0.12); color: var(--warm-gray); }
.tier-not-recommended { background: rgba(148,48,48,0.12); color: var(--danger); }
.verdict-pill { font-size: 0.65rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: var(--foam); color: var(--roast); }
.review-article h1 { color: var(--espresso); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 8px; }
.review-type { font-size: 0.85rem; color: var(--warm-gray); margin-bottom: 8px; }
.review-stars { font-size: 0.82rem; color: var(--warm-gray); }
.review-stars .stars { margin-right: 6px; }
.review-header-right { text-align: center; min-width: 220px; }
.score-circle { width: 120px; height: 120px; border-radius: 50%; background: var(--espresso); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 16px; }
.sc-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.sc-label { font-size: 0.55rem; color: rgba(250,245,238,0.5); letter-spacing: 0.12em; text-transform: uppercase; }

.review-body { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.review-main h2 { font-size: 1.6rem; margin: 32px 0 12px; }
.review-main h2:first-child { margin-top: 0; }
.review-verdict-text { font-size: 1rem; line-height: 1.8; color: var(--roast); border-left: 3px solid var(--caramel); padding-left: 20px; margin-bottom: 8px; }
.pro-list-full, .con-list-full, .best-for-list { list-style: none; padding: 0; }
.pro-list-full li, .con-list-full li, .best-for-list li { padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid var(--linen); font-size: 0.9rem; line-height: 1.6; }
.pro-list-full li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.con-list-full li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); }
.best-for-list li::before { content: '→'; position: absolute; left: 0; color: var(--caramel); }
.ed-box { background: var(--mist); padding: 16px 20px; border-left: 3px solid var(--caramel); font-size: 0.85rem; line-height: 1.7; color: var(--roast); }

.score-detail { width: 100%; border-collapse: collapse; margin: 16px 0; }
.score-detail th { text-align: left; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gray); padding: 8px 12px; border-bottom: 2px solid var(--linen); }
.score-detail td { padding: 10px 12px; border-bottom: 1px solid var(--linen); font-size: 0.85rem; }
.total-row td { border-top: 2px solid var(--caramel); }
.final-row td { background: var(--foam); font-size: 1rem; }

/* Sidebar */
.review-sidebar { position: sticky; top: 80px; align-self: start; }
.buy-box { background: var(--white); border: 1px solid rgba(184,115,51,0.15); border-radius: 2px; padding: 24px 20px; text-align: center; margin-bottom: 20px; }
.buy-icon { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.buy-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.buy-score { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.buy-price { font-size: 1rem; font-weight: 700; color: var(--caramel); margin-bottom: 14px; }
.sidebar-specs { background: var(--white); border: 1px solid rgba(184,115,51,0.15); border-radius: 2px; padding: 20px; }
.sidebar-specs h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 12px; }
.spec-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--linen); font-size: 0.8rem; }
.spec-row span:first-child { color: var(--warm-gray); }
.spec-row span:last-child { font-weight: 600; }

.related-section { margin-top: 32px; }
.related-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 16px; }
.related-milks { display: flex; gap: 12px; flex-wrap: wrap; }
.related-card { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid rgba(184,115,51,0.1); padding: 12px 16px; border-radius: 2px; text-decoration: none; transition: all .2s; }
.related-card:hover { border-color: var(--caramel); transform: translateY(-2px); }
.r-icon { font-size: 1.5rem; }
.r-name { font-weight: 600; font-size: 0.85rem; }
.r-temp { font-size: 0.7rem; color: var(--warm-gray); }

.review-nav { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 2px solid var(--linen); margin-top: 48px; }
.review-nav a { font-size: 0.78rem; font-weight: 600; color: var(--caramel); text-decoration: none; }
.review-nav a:hover { color: var(--espresso); }
.rnav-all { font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; }

/* ── MILK LAB PAGES ── */
.lab-hero { background: var(--espresso); padding: 64px 60px 48px; }
.lab-hero h1 { color: var(--cream); }

.milklab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.milklab-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--white); border: 1px solid rgba(184,115,51,0.1); padding: 32px 20px; border-radius: 2px; text-decoration: none; transition: all .28s; }
.milklab-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(13,10,6,0.12); border-color: var(--caramel); }
.ml-icon { font-size: 2.5rem; margin-bottom: 10px; }
.ml-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.ml-rating { font-size: 0.75rem; color: var(--caramel); font-weight: 600; margin-bottom: 4px; }
.ml-temp { font-size: 0.7rem; color: var(--warm-gray); margin-bottom: 4px; }
.ml-frother { font-size: 0.68rem; color: var(--warm-gray); margin-bottom: 12px; }
.ml-cta { font-size: 0.72rem; font-weight: 700; color: var(--caramel); letter-spacing: 0.06em; text-transform: uppercase; }

/* Individual milk page */
.milk-article { padding: 0; }
.milk-header { background: var(--espresso); padding: 48px 60px; }
.milk-big-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.milk-header h1 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); color: var(--cream); }
.milk-header-sub { font-size: 0.85rem; color: rgba(250,245,238,0.5); }

.milk-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 48px 60px; }
.milk-main h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.milk-main h2:first-child { margin-top: 0; }
.verdict-box { font-size: 1rem; line-height: 1.8; color: var(--roast); border-left: 3px solid var(--caramel); padding: 16px 20px; background: var(--mist); margin-bottom: 8px; }

.steps { margin-bottom: 24px; }
.step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--linen); }
.step-n { width: 32px; height: 32px; min-width: 32px; background: var(--espresso); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 0.9rem; margin-top: 2px; }
.step-txt h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.step-txt p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.65; }

.tips-box { background: var(--mist); padding: 20px; border-radius: 2px; margin-bottom: 24px; }
.tips-box h4 { font-size: 0.85rem; margin-bottom: 10px; }
.tips-box ul { list-style: none; }
.tips-box li { padding: 6px 0 6px 16px; position: relative; font-size: 0.85rem; color: var(--roast); line-height: 1.6; }
.tips-box li::before { content: '→'; position: absolute; left: 0; color: var(--caramel); }

.brands-box { margin-bottom: 24px; }
.brands-box h4 { font-size: 0.85rem; margin-bottom: 10px; }
.brand-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-pill { display: inline-block; background: var(--white); border: 1px solid rgba(184,115,51,0.15); color: var(--roast); font-size: 0.72rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; text-decoration: none; transition: all .2s; }
.brand-pill:hover { border-color: var(--caramel); color: var(--caramel); background: var(--foam); }

.other-milks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.other-milk { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid rgba(184,115,51,0.1); padding: 8px 14px; border-radius: 2px; text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: all .2s; }
.other-milk:hover { border-color: var(--caramel); transform: translateY(-2px); }

/* Milk sidebar / scorecard */
.milk-sidebar { position: sticky; top: 80px; align-self: start; }
.scorecard { background: var(--white); border: 1px solid rgba(184,115,51,0.15); border-radius: 2px; padding: 24px 20px; }
.sc-icon { font-size: 2rem; display: block; text-align: center; margin-bottom: 8px; }
.sc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 12px; }
.sc-overall { text-align: center; margin-bottom: 16px; }
.sc-big { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--caramel); }
.sc-lbl { font-size: 0.62rem; color: var(--warm-gray); letter-spacing: 0.1em; text-transform: uppercase; }
.metrics { margin-bottom: 16px; }
.mrow { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.m-lbl { font-size: 0.65rem; color: var(--warm-gray); width: 70px; flex-shrink: 0; }
.m-bar { flex: 1; height: 4px; background: var(--foam); border-radius: 2px; overflow: hidden; }
.m-fill { height: 100%; background: linear-gradient(90deg, var(--caramel), var(--gold)); border-radius: 2px; }
.m-val { font-size: 0.6rem; color: var(--gold); width: 50px; text-align: right; flex-shrink: 0; }
.sc-rec { border-top: 1px solid var(--linen); padding-top: 14px; text-align: center; }
.sc-rec strong { display: block; font-size: 0.75rem; margin-bottom: 4px; }
.sc-rec span { display: block; font-size: 0.72rem; color: var(--warm-gray); margin-bottom: 8px; }

/* ── CONTENT ARTICLES ── */
.content-article { max-width: 760px; margin: 0 auto; padding: 48px 60px 60px; }
.content-article h2 { font-size: 1.6rem; margin: 32px 0 12px; }
.content-article h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--roast); }
.content-article p { font-size: 0.93rem; line-height: 1.82; margin-bottom: 14px; color: #3d3228; }
.content-article ul { list-style: none; padding: 0; margin: 0 0 14px; }
.content-article ul li { font-size: 0.91rem; color: #3d3228; padding: 9px 0 9px 20px; position: relative; border-bottom: 1px solid var(--linen); line-height: 1.6; }
.content-article ul li::before { content: '→'; position: absolute; left: 0; color: var(--caramel); font-size: 0.76rem; top: 11px; }
.content-article a { color: var(--caramel); }

.formula-box { background: var(--espresso); color: var(--cream); padding: 24px 28px; border-radius: 2px; margin: 16px 0 24px; }
.formula-box p { color: var(--cream); }
.formula-box strong { color: var(--gold); }
.independence-box { background: var(--mist); border-left: 3px solid var(--caramel); padding: 20px 24px; margin: 16px 0; }
.independence-box p { margin-bottom: 8px; }

.section-divider { border: none; border-top: 2px solid var(--linen); margin: 48px 0; }

/* Author card */
.author-card { display: flex; gap: 20px; align-items: flex-start; background: var(--mist); padding: 24px; border-radius: 2px; margin-bottom: 32px; }
.author-avatar { width: 64px; height: 64px; min-width: 64px; background: var(--espresso); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; }
.author-tag { font-size: 0.72rem; color: var(--caramel); font-weight: 600; letter-spacing: 0.06em; margin-bottom: 8px; }
.author-info h2 { font-size: 1.4rem; margin-bottom: 4px; }
.author-info p { font-size: 0.88rem; margin-top: 8px; }

/* Contact form */
.contact-form { max-width: 500px; }
.f-row { margin-bottom: 16px; }
.f-row label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 6px; }
.f-row input, .f-row textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--linen); border-radius: 2px; font-family: 'Outfit', sans-serif; font-size: 0.88rem; background: var(--white); transition: border-color .2s; }
.f-row input:focus, .f-row textarea:focus { outline: none; border-color: var(--caramel); }
.f-row textarea { height: 120px; resize: vertical; }

/* Legal */
.legal-content h2 { font-size: 1.3rem; margin: 28px 0 8px; }

/* ── FOOTER ── */
.disc-bar { background: var(--linen); padding: 16px 60px; font-size: 0.72rem; color: var(--warm-gray); line-height: 1.65; }
.disc-bar strong { color: var(--roast); }
footer { background: var(--espresso); padding: 56px 60px 32px; }
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.f-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--cream); text-decoration: none; display: block; margin-bottom: 12px; }
.f-logo em { color: var(--caramel); font-style: normal; }
.f-about { font-size: 0.78rem; color: rgba(250,245,238,0.35); line-height: 1.7; }
.f-hd { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
footer a { display: block; font-size: 0.8rem; color: rgba(250,245,238,0.45); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
footer a:hover { color: var(--cream); }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.f-bottom p { font-size: 0.65rem; color: rgba(250,245,238,0.2); }

/* Back to top */
.btt { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--espresso); color: var(--gold); border: 1px solid rgba(201,150,58,0.3); border-radius: 50%; font-size: 1.1rem; cursor: pointer; z-index: 200; opacity: 0; transition: all .3s; transform: translateY(10px); }
.btt.show { opacity: 1; transform: translateY(0); }
.btt:hover { background: var(--caramel); color: var(--espresso); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-l { padding: 70px 40px 60px; }
  .hero-l::after { display: none; }
  .hero-r { display: none; }
  .review-body { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .milk-layout { grid-template-columns: 1fr; }
  .milk-sidebar { position: static; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section, .disc-bar, footer, .top-bar, .hdr-inner, .method-bar, .page-hero, .lab-hero, .breadcrumbs, .review-article, .content-article { padding-left: 36px; padding-right: 36px; }
  .milk-header, .milk-layout { padding-left: 36px; padding-right: 36px; }
  .review-header { flex-direction: column; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .ham { display: flex; }
  section, .disc-bar, footer, .top-bar, .hdr-inner, .method-bar, .page-hero, .lab-hero, .breadcrumbs, .review-article, .content-article { padding-left: 20px; padding-right: 20px; }
  .milk-header, .milk-layout { padding-left: 20px; padding-right: 20px; }
  .pgrid, .cat-grid, .milklab-grid { grid-template-columns: 1fr; }
  .milk-grid { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; }
  .hs { flex: 0 0 50%; margin-bottom: 12px; }
  .compare-sec { padding-left: 12px; padding-right: 12px; }
}
