/*
Theme Name:  Buymust
Theme URI:   https://www.buymust.com
Author:      Buymust Editorial Team
Author URI:  https://www.buymust.com
Description: Buymust - A premium affiliate review theme. Curated ClickBank offers with independent editorial reviews, SEO-optimised pages, and a clean warm editorial aesthetic.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buymust
Tags:        affiliate, review, blog, custom-colors, custom-logo, featured-images, full-site-editing, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* =============================================
   DESIGN TOKENS
   Fraunces × Instrument Sans
   ============================================= */
:root {
  --ink:        #111110;
  --ink2:       #1c1c1a;
  --ivory:      #f4efe6;
  --ivory2:     #ece7dc;
  --ivory3:     #e2ddd2;
  --ivory4:     #d8d3c8;
  --sand:       #c8c0b0;
  --terracotta: #c0442a;
  --terra2:     #d4573c;
  --sage:       #2e6b4a;
  --navy:       #1e3a5f;
  --plum:       #6b2d7a;
  --gold:       #b8922e;
  --gold2:      #d4aa46;
  --text:       #1a1917;
  --text-dim:   #68635c;
  --text-ghost: #9c9790;
  --line:       rgba(0,0,0,0.08);
  --line-inv:   rgba(255,255,255,0.08);
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Instrument Sans', sans-serif;
  --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
  --radius:     2px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--ff-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .024;
  pointer-events: none;
  z-index: 9998;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
p { line-height: 1.78; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 56px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 56px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-101%);
  transition: transform .3s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(192,68,42,.4); }
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: var(--terracotta); }
.btn-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--line);
}
.btn-outline:hover { color: var(--ink); border-color: var(--ink); }

/* ── NAVIGATION ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: 62px;
  background: rgba(244,239,230,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}
#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.03em;
}
.site-logo em { font-style: italic; color: var(--terracotta); }

#primary-navigation ul {
  display: flex;
  gap: 26px;
  align-items: center;
}
#primary-navigation a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .18s;
}
#primary-navigation a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--ivory) !important;
  font-size: .75rem !important;
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  padding: 9px 20px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--terracotta) !important; transform: translateY(-1px) !important; }

/* mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all .25s;
}

/* ── TICKER ── */
.site-ticker {
  background: var(--terracotta);
  overflow: hidden;
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickScroll 32s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 0 32px;
}
.ticker-sep { color: rgba(255,255,255,.35); }
@keyframes tickScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HEADER ── */
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 76px 0 44px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-top.dark { border-color: rgba(255,255,255,.07); }
.section-eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.section-eyebrow.gold { color: var(--gold2); }
.section-h2 {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -.025em;
}
.section-h2.light { color: var(--ivory); }
.section-h2 em { font-style: italic; font-weight: 300; color: var(--terracotta); }
.section-meta { text-align: right; flex-shrink: 0; }
.section-meta-label { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-ghost); display: block; margin-bottom: 4px; }
.section-meta-val { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--ink); }

/* ── OFFER CARDS ── */
.offers-section { background: var(--ivory); padding-bottom: 88px; }
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.offer-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--ivory);
  border: 1px solid var(--ivory3);
  overflow: hidden;
  position: relative;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.offer-card:hover { transform: translateY(-7px); box-shadow: 0 22px 56px rgba(0,0,0,.12); z-index: 4; }
.card-band { height: 3px; }
.offer-card:nth-child(1) .card-band { background: var(--terracotta); }
.offer-card:nth-child(2) .card-band { background: var(--sage); }
.offer-card:nth-child(3) .card-band { background: var(--navy); }
.offer-card:nth-child(4) .card-band { background: var(--plum); }

.card-head { padding: 28px 32px 24px; position: relative; overflow: hidden; }
.offer-card:nth-child(1) .card-head { background: #120e09; }
.offer-card:nth-child(2) .card-head { background: #0c1812; }
.offer-card:nth-child(3) .card-head { background: #091018; }
.offer-card:nth-child(4) .card-head { background: #120b14; }
.card-head::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='%23fff' fill-opacity='.02'/%3E%3C/svg%3E"); pointer-events: none; }

.card-head-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; position: relative; z-index: 1; }
.card-tag { font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border: 1px solid; }
.offer-card:nth-child(1) .card-tag { border-color: rgba(192,68,42,.45); color: #e8806a; }
.offer-card:nth-child(2) .card-tag { border-color: rgba(46,107,74,.45); color: #5eb87a; }
.offer-card:nth-child(3) .card-tag { border-color: rgba(30,58,95,.5); color: #6a9fd4; }
.offer-card:nth-child(4) .card-tag { border-color: rgba(107,45,122,.45); color: #c07ad8; }
.card-num { font-size: .6rem; color: rgba(255,255,255,.18); letter-spacing: .12em; font-weight: 500; }

.card-icon { font-size: 2.6rem; display: block; margin-bottom: 14px; position: relative; z-index: 1; transition: transform .32s var(--ease); }
.offer-card:hover .card-icon { transform: scale(1.12) rotate(-4deg); }

.card-title { font-family: var(--ff-display); font-optical-sizing: auto; font-weight: 700; font-size: 1.5rem; color: var(--ivory); line-height: 1.12; letter-spacing: -.02em; margin-bottom: 7px; position: relative; z-index: 1; }
.card-sub { font-size: .85rem; font-style: italic; color: rgba(244,239,230,.4); position: relative; z-index: 1; line-height: 1.5; font-family: var(--ff-display); font-weight: 300; }

.card-body { flex: 1; padding: 24px 32px 0; display: flex; flex-direction: column; }
.card-desc { font-size: .91rem; line-height: 1.76; color: var(--text-dim); margin-bottom: 18px; flex: 1; }
.card-bullets { list-style: none; margin-bottom: 20px; }
.card-bullets li { font-size: .81rem; font-weight: 500; color: var(--text); padding: 7px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.card-bullets li:last-child { border-bottom: none; }
.b-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 700; flex-shrink: 0; }
.offer-card:nth-child(1) .b-check { background: rgba(192,68,42,.1); color: var(--terracotta); }
.offer-card:nth-child(2) .b-check { background: rgba(46,107,74,.1); color: var(--sage); }
.offer-card:nth-child(3) .b-check { background: rgba(30,58,95,.1); color: var(--navy); }
.offer-card:nth-child(4) .b-check { background: rgba(107,45,122,.1); color: var(--plum); }

.card-score { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--line); }
.score-left { display: flex; align-items: center; gap: 10px; }
.score-lbl { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-ghost); }
.score-pips { display: flex; gap: 4px; }
.pip { width: 8px; height: 8px; border-radius: 50%; background: var(--ivory4); }
.offer-card:nth-child(1) .pip.on { background: var(--terracotta); }
.offer-card:nth-child(2) .pip.on { background: var(--sage); }
.offer-card:nth-child(3) .pip.on { background: var(--navy); }
.offer-card:nth-child(4) .pip.on { background: var(--plum); }
.score-num { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; }
.offer-card:nth-child(1) .score-num { color: var(--terracotta); }
.offer-card:nth-child(2) .score-num { color: var(--sage); }
.offer-card:nth-child(3) .score-num { color: var(--navy); }
.offer-card:nth-child(4) .score-num { color: var(--plum); }

.card-cta { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; font-size: .78rem; font-weight: 600; letter-spacing: .05em; margin-top: 18px; position: relative; overflow: hidden; }
.card-cta::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.1); transform: scaleX(0); transform-origin: left; transition: transform .32s var(--ease); }
.offer-card:hover .card-cta::before { transform: scaleX(1); }
.offer-card:nth-child(1) .card-cta { background: var(--terracotta); color: #fff; }
.offer-card:nth-child(2) .card-cta { background: var(--sage); color: #fff; }
.offer-card:nth-child(3) .card-cta { background: var(--navy); color: #fff; }
.offer-card:nth-child(4) .card-cta { background: var(--plum); color: #fff; }
.cta-arrow { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; transition: transform .25s var(--ease); position: relative; z-index: 1; }
.offer-card:hover .cta-arrow { transform: translateX(5px); }
.cta-label { position: relative; z-index: 1; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--ink); padding: 88px 0; position: relative; overflow: hidden; }
.how-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(192,68,42,.08) 0%,transparent 65%); pointer-events: none; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.how-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); padding: 36px 30px; position: relative; overflow: hidden; transition: background .25s; }
.how-card:hover { background: rgba(255,255,255,.06); }
.how-num { font-family: var(--ff-display); font-size: 5.5rem; font-weight: 900; font-style: italic; color: rgba(255,255,255,.04); line-height: .85; margin-bottom: 20px; letter-spacing: -.04em; }
.how-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--ivory); margin-bottom: 12px; }
.how-desc { font-size: .88rem; color: rgba(244,239,230,.42); line-height: 1.76; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--ivory2); padding: 88px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card { background: #fff; border: 1px solid var(--line); padding: 28px 24px; position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 42px rgba(0,0,0,.09); }
.testi-card::before { content: '"'; position: absolute; top: -10px; left: 18px; font-family: var(--ff-display); font-size: 6rem; font-weight: 900; color: rgba(0,0,0,.035); line-height: 1; }
.testi-stars { color: var(--gold); font-size: .82rem; letter-spacing: 2px; margin-bottom: 13px; }
.testi-text { font-family: var(--ff-display); font-size: 1rem; font-style: italic; font-weight: 400; color: var(--text); line-height: 1.72; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 11px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: .82rem; font-weight: 600; color: var(--ink); }
.testi-handle { font-size: .7rem; color: var(--text-ghost); margin-top: 2px; }

/* ── NEWSLETTER ── */
.nl-section { background: var(--ink); padding: 88px 56px; text-align: center; position: relative; overflow: hidden; }
.nl-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 350px; background: radial-gradient(ellipse,rgba(192,68,42,.1) 0%,transparent 60%); pointer-events: none; }
.nl-eyebrow { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 16px; position: relative; }
.nl-h2 { font-family: var(--ff-display); font-optical-sizing: auto; font-weight: 700; font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--ivory); letter-spacing: -.025em; margin-bottom: 14px; position: relative; }
.nl-h2 em { font-style: italic; font-weight: 300; color: var(--gold2); }
.nl-sub { font-size: 1rem; color: rgba(244,239,230,.42); line-height: 1.72; max-width: 440px; margin: 0 auto 34px; position: relative; }
.nl-form { display: flex; max-width: 420px; margin: 0 auto; position: relative; }
.nl-input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-right: none; color: var(--ivory); font-family: var(--ff-body); font-size: .88rem; padding: 14px 18px; outline: none; transition: border-color .2s; }
.nl-input::placeholder { color: rgba(244,239,230,.22); }
.nl-input:focus { border-color: rgba(192,68,42,.5); }
.nl-btn { background: var(--terracotta); color: #fff; border: none; padding: 14px 24px; font-family: var(--ff-body); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.nl-btn:hover { background: var(--terra2); }
.nl-note { font-size: .68rem; color: rgba(244,239,230,.22); margin-top: 13px; position: relative; letter-spacing: .04em; }

/* ── SINGLE REVIEW PAGE ── */
.review-hero { background: var(--ink2); padding: 72px 0 80px; position: relative; overflow: hidden; }
.review-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%,rgba(192,68,42,.12) 0%,transparent 60%); pointer-events: none; }
.review-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: rgba(255,255,255,.3); margin-bottom: 20px; letter-spacing: .04em; }
.review-breadcrumb a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.review-breadcrumb a:hover { color: rgba(255,255,255,.6); }
.review-breadcrumb span { opacity: .3; }
.review-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--terracotta); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; margin-bottom: 24px; }
.review-icon { font-size: 2.8rem; display: block; margin-bottom: 14px; }
.review-h1 { font-family: var(--ff-display); font-optical-sizing: auto; font-weight: 900; font-size: clamp(2.1rem,4vw,3.2rem); color: var(--ivory); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 18px; }
.review-h1 em { font-style: italic; color: var(--gold2); }
.review-sub { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 300; color: rgba(244,239,230,.5); line-height: 1.75; max-width: 620px; margin-bottom: 36px; }
.verdict-row { display: flex; align-items: stretch; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); flex-wrap: wrap; }
.verdict-item { flex: 1; min-width: 110px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.verdict-item:last-child { border-right: none; }
.verdict-val { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--ivory); line-height: 1; margin-bottom: 5px; }
.verdict-label { font-size: .68rem; color: rgba(255,255,255,.3); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

.review-content { padding: 60px 0 80px; }
.score-box { display: flex; align-items: center; gap: 32px; background: var(--ink2); padding: 34px 38px; margin-bottom: 52px; border-left: 3px solid var(--terracotta); flex-wrap: wrap; }
.score-big { font-family: var(--ff-display); font-size: 5rem; font-weight: 700; color: var(--terracotta); line-height: 1; flex-shrink: 0; }
.score-right { flex: 1; min-width: 180px; }
.score-lbl { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.score-verdict { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--ivory); margin-bottom: 10px; }
.score-desc { font-family: var(--ff-display); font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.7; }

.r-section { margin-bottom: 50px; }
.r-section h2 { font-family: var(--ff-display); font-optical-sizing: auto; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--terracotta); display: inline-block; }
.r-section p { font-size: .97rem; line-height: 1.82; color: var(--text-dim); margin-bottom: 14px; }
.r-section p strong { color: var(--text); font-weight: 600; }

.pullquote { border-left: 3px solid var(--terracotta); background: rgba(192,68,42,.08); padding: 20px 24px; margin: 26px 0; font-family: var(--ff-display); font-size: 1.08rem; font-style: italic; color: var(--text); line-height: 1.74; }
.pullquote cite { display: block; margin-top: 10px; font-size: .75rem; font-style: normal; color: var(--text-ghost); font-family: var(--ff-body); letter-spacing: .04em; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.pros, .cons { border: 1px solid var(--line); padding: 22px 24px; }
.pros { border-top: 3px solid var(--sage); }
.cons { border-top: 3px solid var(--terracotta); }
.pros h3 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.cons h3 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.pros-cons ul { display: flex; flex-direction: column; gap: 8px; }
.pros-cons li { font-size: .88rem; line-height: 1.6; color: var(--text); display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.pros-cons li:last-child { border-bottom: none; }
.pros-cons li::before { flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.pros li::before { content: '+'; color: var(--sage); }
.cons li::before { content: '−'; color: var(--terracotta); }

.rating-bars { margin: 26px 0; display: flex; flex-direction: column; gap: 13px; }
.rb-row { display: flex; align-items: center; gap: 14px; }
.rb-label { font-size: .8rem; font-weight: 600; color: var(--text); width: 148px; flex-shrink: 0; }
.rb-track { flex: 1; height: 6px; background: rgba(0,0,0,.07); border-radius: 99px; overflow: hidden; }
.rb-fill { height: 100%; background: var(--terracotta); border-radius: 99px; transform: scaleX(0); transform-origin: left; transition: transform 1s ease; }
.rb-fill.animated { transform: scaleX(1); }
.rb-val { font-size: .78rem; font-weight: 700; color: var(--terracotta); width: 30px; text-align: right; }

.cta-box { background: var(--ink2); padding: 52px 46px; text-align: center; margin-top: 56px; position: relative; overflow: hidden; border-top: 3px solid var(--terracotta); }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%,rgba(192,68,42,.15) 0%,transparent 60%); pointer-events: none; }
.cta-eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold2); margin-bottom: 18px; position: relative; }
.cta-h2 { font-family: var(--ff-display); font-optical-sizing: auto; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--ivory); line-height: 1.12; margin-bottom: 14px; position: relative; }
.cta-h2 em { font-style: italic; color: var(--gold2); }
.cta-p { font-family: var(--ff-display); font-size: 1rem; font-weight: 300; color: rgba(244,239,230,.45); line-height: 1.72; max-width: 460px; margin: 0 auto 36px; position: relative; }
.main-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--terracotta); color: #fff; padding: 18px 40px; font-size: .9rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; position: relative; transition: all .25s; overflow: hidden; }
.main-cta::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.12); transform: translateX(-101%); transition: transform .35s; }
.main-cta:hover::after { transform: translateX(0); }
.main-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(192,68,42,.35); }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; position: relative; }
.cta-trust-item { font-size: .72rem; color: rgba(244,239,230,.28); display: flex; align-items: center; gap: 6px; letter-spacing: .04em; }
.cta-trust-item::before { content: '·'; color: rgba(244,239,230,.15); font-size: 1rem; }
.cta-trust-item:first-child::before { display: none; }

/* also see */
.also-see { background: var(--ivory2); padding: 60px 0; }
.also-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.also-card { background: var(--ivory); border: 1px solid var(--line); padding: 20px 18px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 7px; transition: transform .25s var(--ease), box-shadow .25s; }
.also-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.also-emoji { font-size: 1.6rem; }
.also-name { font-family: var(--ff-display); font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.also-tag { font-size: .72rem; color: var(--text-ghost); }
.also-arrow { font-size: .78rem; color: var(--terracotta); font-weight: 700; margin-top: auto; padding-top: 10px; }

/* ── BLOG ── */
.blog-section { padding: 76px 0 88px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--line); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 42px rgba(0,0,0,.09); }
.blog-card-img { height: 200px; background: var(--ivory3); overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { flex: 1; padding: 24px 22px; display: flex; flex-direction: column; }
.blog-cat { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; }
.blog-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 10px; letter-spacing: -.01em; }
.blog-excerpt { font-size: .85rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.blog-meta { font-size: .72rem; color: var(--text-ghost); display: flex; align-items: center; gap: 10px; }
.blog-meta span::before { content: '·'; margin-right: 10px; }
.blog-meta span:first-child::before { display: none; }

/* single post */
.post-hero { background: var(--ink2); padding: 60px 0; }
.post-content { padding: 60px 0 80px; }
.post-content .entry-content h2 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 36px 0 14px; }
.post-content .entry-content h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 28px 0 12px; }
.post-content .entry-content p { font-size: .97rem; line-height: 1.82; color: var(--text-dim); margin-bottom: 18px; }
.post-content .entry-content ul, .post-content .entry-content ol { margin: 0 0 18px 24px; }
.post-content .entry-content li { font-size: .95rem; line-height: 1.75; color: var(--text-dim); margin-bottom: 6px; }
.post-content .entry-content a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.post-content .entry-content blockquote { border-left: 3px solid var(--terracotta); background: rgba(192,68,42,.07); padding: 18px 22px; margin: 24px 0; font-family: var(--ff-display); font-style: italic; color: var(--text); }

/* ── ABOUT ── */
.about-hero { background: var(--ink); padding: 88px 0; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%,rgba(192,68,42,.14) 0%,transparent 60%); pointer-events: none; }
.about-h1 { font-family: var(--ff-display); font-optical-sizing: auto; font-weight: 300; font-size: clamp(2.8rem,5vw,4.5rem); color: var(--ivory); line-height: 1.06; letter-spacing: -.03em; margin-bottom: 22px; }
.about-h1 strong { font-weight: 900; font-style: italic; color: var(--gold2); }
.about-sub { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 300; color: rgba(244,239,230,.5); line-height: 1.75; max-width: 560px; }
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: var(--ff-display); font-optical-sizing: auto; font-weight: 700; font-size: 2rem; color: var(--ink); margin-bottom: 18px; letter-spacing: -.025em; }
.about-text p { font-size: .97rem; line-height: 1.82; color: var(--text-dim); margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 2px; }
.value-row { background: rgba(255,255,255,.5); border: 1px solid var(--line); padding: 22px 26px; display: flex; gap: 18px; align-items: flex-start; transition: background .2s; }
.value-row:hover { background: #fff; }
.value-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.value-title { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.value-desc { font-size: .85rem; color: var(--text-dim); line-height: 1.65; }

/* ── CONTACT ── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: var(--ff-display); font-optical-sizing: auto; font-weight: 700; font-size: 2rem; color: var(--ink); margin-bottom: 16px; letter-spacing: -.025em; }
.contact-info p { font-size: .97rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 28px; }
.contact-detail { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; align-items: center; gap: 14px; font-size: .88rem; color: var(--text-dim); }
.contact-row strong { color: var(--ink); width: 70px; flex-shrink: 0; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); }
.form-input, .form-textarea {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--terracotta); }
.form-textarea { min-height: 130px; resize: vertical; }

/* ── FOOTER ── */
#site-footer { background: #0e0e0c; border-top: 1px solid rgba(255,255,255,.06); padding: 64px 56px 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; max-width: 1180px; margin: 0 auto 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand-logo { font-family: var(--ff-display); font-weight: 900; font-size: 1.5rem; color: var(--ivory); text-decoration: none; letter-spacing: -.03em; display: block; margin-bottom: 13px; }
.footer-brand-logo em { font-style: italic; color: var(--terracotta); }
.footer-brand-desc { font-family: var(--ff-display); font-size: .9rem; font-weight: 300; font-style: italic; color: rgba(244,239,230,.3); line-height: 1.72; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-chip { font-size: .68rem; font-weight: 600; letter-spacing: .08em; color: rgba(244,239,230,.35); border: 1px solid rgba(255,255,255,.1); padding: 5px 12px; text-decoration: none; transition: color .2s, border-color .2s; }
.social-chip:hover { color: var(--ivory); border-color: rgba(255,255,255,.3); }
.footer-col-title { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,230,.28); margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: .88rem; color: rgba(244,239,230,.38); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col-links a:hover { color: rgba(244,239,230,.75); }
.footer-col-links a::before { content: ''; display: inline-block; width: 4px; height: 4px; background: rgba(244,239,230,.15); border-radius: 50%; flex-shrink: 0; }
.footer-bottom { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 24px; }
.footer-disclaimer { font-size: .7rem; color: rgba(244,239,230,.18); line-height: 1.8; max-width: 640px; }
.footer-disclaimer strong { color: rgba(244,239,230,.28); }
.footer-bottom-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-copy { font-size: .7rem; color: rgba(244,239,230,.18); letter-spacing: .06em; white-space: nowrap; }
.footer-legal-links { display: flex; gap: 14px; }
.footer-legal-links a { font-size: .68rem; color: rgba(244,239,230,.22); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: rgba(244,239,230,.5); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp .7s var(--ease) both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container, .container-sm { padding: 0 28px; }
  #site-header .container { padding: 0 24px; }
  #primary-navigation { display: none; }
  #primary-navigation.open { display: block; position: fixed; top: 62px; left: 0; right: 0; background: rgba(244,239,230,.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 20px 24px; z-index: 499; }
  #primary-navigation.open ul { flex-direction: column; gap: 0; }
  #primary-navigation.open li a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .menu-toggle { display: flex; }
  .offers-grid, .how-grid, .testi-grid, .blog-grid, .about-grid, .contact-grid, .pros-cons, .footer-top { grid-template-columns: 1fr; }
  .also-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  #site-footer { padding: 48px 24px 32px; }
  .nl-section { padding: 64px 24px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom-right { align-items: flex-start; }
  .section-top { padding: 50px 0 32px; }
  .about-grid { gap: 36px; }
}
@media (max-width: 600px) {
  .also-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .score-box { flex-direction: column; gap: 20px; padding: 26px 22px; }
}

/* ── WORDPRESS SPECIFIC ── */
.wp-block-image { margin: 24px 0; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { text-align: center; margin: 24px auto; }
.wp-caption-text { font-size: .82rem; color: var(--text-ghost); text-align: center; margin-top: 6px; }
.wp-pagenavi, .navigation.pagination { padding: 40px 0; text-align: center; }
.wp-pagenavi a, .wp-pagenavi span, .nav-links .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid var(--line); font-size: .82rem; font-weight: 600; color: var(--text-dim); text-decoration: none; transition: all .2s; }
.wp-pagenavi a:hover, .nav-links .page-numbers:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.wp-pagenavi span.current, .nav-links .page-numbers.current { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
