@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..700;1,9..144,400;1,9..144,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #e8f0ed;
  --bg-deep: #0c1f1c;
  --surface: #ffffff;
  --surface-soft: #f3faf7;
  --line: rgba(12, 31, 28, 0.1);
  --ink: #0c1f1c;
  --ink-2: #1e3d38;
  --ink-3: #4a6b64;
  --accent: #0d9488;
  --accent-hover: #0f7669;
  --accent-soft: rgba(13, 148, 136, 0.12);
  --coral: #ea580c;
  --coral-soft: rgba(234, 88, 12, 0.12);
  --good: #15803d;
  --bad: #b91c1c;
  --warn-bg: #fff7ed;
  --warn-border: #fdba74;
  --max: 1080px;
  --sans: 'Outfit', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(12, 31, 28, 0.08);
  --shadow-sm: 0 4px 20px rgba(12, 31, 28, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(13, 148, 136, 0.15), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234, 88, 12, 0.08), transparent 45%);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent); text-underline-offset: 3px; }
.wrap { width: min(100% - 32px, var(--max)); margin-inline: auto; position: relative; z-index: 1; }

/* GeoEdge / compliance — visible disclosure */
.ad-strip {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.45;
  position: relative;
  z-index: 20;
}
.ad-strip strong { color: #fde68a; font-weight: 600; }

/* Header */
.masthead {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 15;
  box-shadow: var(--shadow-sm);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.masthead-logo { display: flex; flex-direction: column; gap: 2px; }
.logo-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.masthead-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.5;
}
.masthead-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #0f7669);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
  white-space: nowrap;
}
.masthead-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

/* Hero */
.hero {
  padding: 48px 0 32px;
  position: relative;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 40px;
  align-items: start;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero h1 .underline {
  background: linear-gradient(transparent 65%, var(--coral-soft) 65%);
  text-decoration: none;
}
.hero-standfirst {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.6;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 22px;
  max-width: 540px;
}
.hero-byline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.hero-byline span:not(:last-child)::after {
  content: '·';
  margin-left: 18px;
  color: var(--line);
}
.hero-sidebar {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.sidebar-verdict {
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
.verdict-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}
.verdict-result {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.sidebar-price-box {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 14px;
  text-align: center;
}
.price-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.price-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin: 6px 0;
  letter-spacing: -0.02em;
}
.price-where { font-size: 13px; color: var(--ink-3); }
.btn-buy {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--coral), #c2410c);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
}
.btn-buy:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234, 88, 12, 0.4); }
.sidebar-note { font-size: 11px; color: var(--ink-3); text-align: center; margin-top: 10px; line-height: 1.5; }
.hero-img-strip {
  margin-top: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  min-height: 200px;
}
.hero-img-strip img {
  width: min(100%, 320px);
  object-fit: contain;
  padding: 20px;
  margin: auto;
}
.hero-img-strip .img-caption {
  flex: 1;
  min-width: 240px;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-3);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface-soft);
}

/* Sections */
.compare-section { padding: 56px 0; }
.section-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.rule-line { flex: 1; height: 2px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.rule-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.section-h {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.section-deck { font-size: 15px; color: var(--ink-3); margin-bottom: 32px; max-width: 580px; line-height: 1.65; }

.big-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.compare-col { padding: 22px 18px; border-right: 1px solid var(--line); }
.compare-col:last-child { border-right: none; background: var(--accent-soft); }
.compare-col-head { padding-bottom: 14px; border-bottom: 2px solid var(--accent); margin-bottom: 14px; }
.col-rank { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); display: block; margin-bottom: 6px; }
.col-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.col-name.winner { color: var(--accent-hover); }
.winner-stamp {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.compare-rows { display: grid; gap: 10px; }
.compare-row { font-size: 13px; line-height: 1.5; }
.compare-row .cr-label { color: var(--ink-3); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }
.compare-row .cr-val { color: var(--ink-2); }
.cr-val.good { color: var(--good); font-weight: 600; }
.cr-val.bad { color: var(--bad); font-weight: 600; }
.cr-val.mid { color: var(--ink-3); }
.compare-note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  line-height: 1.55;
}
.compare-cta-col { margin-top: 14px; }

.criteria-wrap { margin-top: 28px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.criteria-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.criteria-table th {
  background: var(--bg-deep);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.criteria-table th.th-winner { background: var(--accent-hover); }
.criteria-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.criteria-table tr:last-child td { border-bottom: none; }
.criteria-table tr:nth-child(even) td { background: var(--surface-soft); }
.criteria-table tr:nth-child(even) td.td-winner { background: var(--accent-soft); }
.td-winner { background: var(--accent-soft); font-weight: 600; color: var(--accent-hover); }
.td-bad { color: var(--bad); font-weight: 500; }
.td-mid { color: var(--ink-3); }
.td-good { color: var(--good); font-weight: 600; }

.product-strip {
  background: var(--surface);
  padding: 48px 0;
  margin-top: 8px;
  border-block: 1px solid var(--line);
}
.product-inner { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start; }
.product-photo {
  background: var(--surface-soft);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.product-photo img { max-height: 200px; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08)); }
.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 16px 0;
}
.spec-cell { padding: 12px 14px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); background: var(--surface); }
.spec-cell:nth-child(even) { border-right: none; }
.spec-cell:nth-last-child(-n+2) { border-bottom: none; }
.spec-cell dt { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.spec-cell dd { font-size: 13px; color: var(--ink); }
.highlight-box {
  background: var(--coral-soft);
  color: var(--coral);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
}
.checklist-inline { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 0; margin: 14px 0; }
.checklist-inline li {
  font-size: 13px;
  color: var(--ink-2);
  width: 50%;
  padding-right: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checklist-inline li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.gallery-section { padding: 52px 0 56px; }
.gallery-deck { font-size: 15px; color: var(--ink-3); margin-bottom: 22px; max-width: 640px; line-height: 1.65; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-item--contain img { object-fit: contain; padding: 12px; background: var(--surface-soft); }
@media (min-width: 700px) {
  .gallery-grid--lg { grid-template-columns: repeat(4, 1fr); }
}

.howto-section { padding: 52px 0; }
.howto-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.howto-steps { counter-reset: step; }
.howto-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}
.howto-step:first-child { padding-top: 0; }
.howto-step:last-child { border-bottom: none; }
.step-n {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.step-n::before { content: counter(step); }
.howto-step h3 { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.howto-step p { font-size: 14px; color: var(--ink-3); line-height: 1.65; }
.howto-aside {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.aside-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--accent-hover); margin-bottom: 14px; }
.tip-list { list-style: none; display: grid; gap: 12px; }
.tip-list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.tip-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.aside-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}

.opinions-section {
  background: var(--surface);
  padding: 48px 0;
  border-block: 1px solid var(--line);
}
.opinions-intro { font-size: 14px; color: var(--ink-3); margin-bottom: 16px; max-width: 720px; line-height: 1.65; }
.opinions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.opinion-card {
  background: var(--surface-soft);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  position: relative;
}
.opinion-card::before {
  content: '“';
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent-soft);
  position: absolute;
  top: 18px;
  right: 18px;
}
.op-text { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin-bottom: 14px; padding-right: 20px; }
.op-rating { font-size: 13px; color: var(--coral); letter-spacing: 2px; margin-bottom: 8px; }
.op-sig { font-size: 12px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; }

.faq-section { padding: 52px 0; }
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.faq-sidebar-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  position: sticky;
  top: 88px;
}
.faq-sidebar-title em { font-style: italic; color: var(--accent); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item.open .faq-a {
  max-height: 2000px;
  padding: 0 0 18px;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--accent-hover); }
.faq-toggle {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.75;
  padding: 0;
  transition: max-height 0.45s var(--ease), padding 0.25s;
}

.closing { padding: 48px 0; background: linear-gradient(160deg, var(--bg-deep) 0%, #134e4a 100%); color: rgba(255, 255, 255, 0.85); }
.closing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.closing p { font-size: 15px; color: rgba(255, 255, 255, 0.7); }
.closing-action { text-align: center; flex-shrink: 0; }
.btn-main {
  display: inline-block;
  background: #fff;
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.btn-main:hover { color: var(--bg-deep); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25); }
.closing-note { font-size: 11px; color: rgba(255, 255, 255, 0.55); margin-top: 10px; line-height: 1.5; }

/* Light sections: primary CTA */
.product-strip .btn-main,
.hero .btn-main {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.35);
}
.product-strip .btn-main:hover,
.hero .btn-main:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.45);
}

.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 0 32px;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand .f-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.footer-brand p { max-width: 300px; margin-top: 10px; line-height: 1.65; color: rgba(255, 255, 255, 0.5); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: rgba(255, 255, 255, 0.45); text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-contact { margin-top: 6px; font-size: 12px; }
.footer-contact a { color: rgba(255, 255, 255, 0.45); }
.footer-contact a:hover { color: rgba(255, 255, 255, 0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.vis { opacity: 1; transform: none; }
.rl { opacity: 0; transform: translateX(-16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.rl.vis { opacity: 1; transform: none; }
.rr { opacity: 0; transform: translateX(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.rr.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.2s; }

/* Inner pages */
.page-main { padding: 40px 0 64px; }
.page-inner { max-width: 720px; margin: 0 auto; }
.page-hero {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.page-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-lead { font-size: 16px; color: var(--ink-3); line-height: 1.65; }
.prose { font-size: 15px; color: var(--ink-2); line-height: 1.8; }
.prose p { margin-bottom: 1em; }
.prose h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.75em 0 0.6em;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}
.prose ul { padding-left: 1.25em; margin-bottom: 1em; }
.prose-meta { font-size: 13px; color: var(--ink-3); margin-top: 1.5em; }
.back-link-row { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.back-link { font-size: 14px; font-weight: 500; color: var(--ink-3); text-decoration: none; }
.back-link:hover { color: var(--accent); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.contact-row { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.contact-row a { font-weight: 500; }
.callout {
  background: var(--accent-soft);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.65;
}
.callout strong { color: var(--accent-hover); }

/* Shop landing */
.shop-body { display: flex; flex-direction: column; min-height: 100vh; }
.shop-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 16px 64px; }
.shop-card {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 36px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.shop-card-head { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 2px solid var(--accent); }
.shop-card-head .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 6px;
}
.shop-card-head h1 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.shop-card > p { font-size: 14px; color: var(--ink-3); margin-bottom: 18px; line-height: 1.65; }
.prod-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.prod-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 8px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.prod-row strong { display: block; font-family: var(--serif); font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.prod-row .price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.shop-disc {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 18px;
}
.shop-disc strong { color: var(--coral); }
.shop-disc-url { font-family: ui-monospace, monospace; font-size: 11px; color: var(--accent); display: block; margin-top: 6px; word-break: break-all; }
.shop-back { display: block; text-align: center; margin-top: 16px; font-size: 14px; color: var(--ink-3); text-decoration: none; font-weight: 500; }
.shop-back:hover { color: var(--accent); }

.step-box {
  display: flex;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.step-box .step-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.step-content h3 { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.step-content p { font-size: 13px; color: var(--ink-3); line-height: 1.65; }

.footer-simple .footer-bottom { justify-content: space-between; }
.footer-centered .footer-bottom { justify-content: center; flex-direction: column; align-items: center; text-align: center; gap: 10px; }

@media (max-width: 900px) {
  .hero-layout,
  .big-compare,
  .product-inner,
  .howto-layout,
  .closing-inner,
  .faq-layout { grid-template-columns: 1fr; }
  .hero-sidebar { order: -1; }
  .compare-col { border-right: none; border-bottom: 1px solid var(--line); }
  .compare-col:last-child { border-bottom: none; }
  .faq-sidebar-title { position: static; margin-bottom: 12px; }
  .opinions-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .big-compare { grid-template-columns: 1fr; }
  .opinions-grid { grid-template-columns: 1fr; }
  .checklist-inline li { width: 100%; }
  .product-specs-grid { grid-template-columns: 1fr; }
  .spec-cell { border-right: none; }
}

/* Utilities (article layout) */
.caption-meta { font-size: 12px; color: var(--ink-3); display: block; margin-top: 6px; }
.mt-rule { margin-top: 32px; }
.section-rule--tight { margin-bottom: 16px; }
.section-h--tight { margin-bottom: 6px; }
.section-h--spaced { margin-bottom: 24px; }
.product-lead { font-size: 14px; color: var(--ink-3); margin-bottom: 18px; line-height: 1.6; }
.price-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.price-row-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }
.price-row-num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.micro-note { font-size: 11px; color: var(--ink-3); margin-top: 10px; line-height: 1.5; }
.text-small-muted { font-size: 12px; color: var(--ink-3); }
.prod-price-note { display: block; margin-top: 4px; font-size: 12px; color: var(--ink-3); }
.inline-muted { display: inline; font-size: 13px; color: var(--ink-3); }
