@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f4f1e9;
  --surface: #fbf9f3;
  --surface-2: #14171c;
  --surface-3: #1d2229;
  --ink: #1a1d22;
  --muted: #6f6c62;
  --muted-dark: #a8a49a;
  --accent: #b98a2e;
  --accent-soft: #d8b968;
  --accent-2: #24443c;
  --border: #e3dccb;
  --border-dark: #2b3038;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --fs-display: clamp(2.6rem, 5.4vw, 4.4rem);
  --fs-h1: clamp(2.2rem, 4.5vw, 3.4rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.15rem, 1.8vw, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.88rem;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 56px;
  --space-xl: 96px;
  --radius-sm: 3px;
  --radius-md: 8px;
  --shadow-sm: 0 2px 10px rgba(20, 18, 8, 0.08);
  --shadow-md: 0 14px 40px rgba(20, 18, 8, 0.16);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}
main { flex: 1 0 auto; margin-top: 0; }
img { display: block; max-width: 100%; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--surface-2); padding: 10px 18px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.overline {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.overline-dark { color: var(--accent); }
.tickline {
  height: 12px;
  width: 180px;
  margin: var(--space-sm) 0 var(--space-md);
  background-image: repeating-linear-gradient(90deg, var(--accent) 0 1px, transparent 1px 9px);
  opacity: 0.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  min-height: 44px;
}
.btn-gold { background: var(--accent); color: #17130a; border-radius: var(--radius-sm); }
.btn-gold:hover { background: var(--accent-soft); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(216, 185, 104, 0.5); color: var(--accent-soft); border-radius: var(--radius-sm); }
.btn-ghost:hover { border-color: var(--accent-soft); background: rgba(216, 185, 104, 0.08); }
.btn-full { width: 100%; justify-content: center; }
.spec-chip {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 2px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 23, 28, 0.96);
  border-bottom: 1px solid rgba(185, 138, 46, 0.35);
}
.header-inner { display: flex; align-items: center; gap: var(--space-md); padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { width: 50px; height: 50px; border-radius: var(--radius-sm); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f2ede1;
  font-weight: 600;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: var(--space-md); }
.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfcaba;
  padding: 10px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover { color: var(--accent-soft); border-color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.ad-badge {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(216, 185, 104, 0.45);
  padding: 4px 10px;
  border-radius: 2px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfcaba;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.icon-btn:hover { color: var(--accent-soft); background: rgba(216, 185, 104, 0.1); }
.nav-toggle { display: none; background: none; border: none; color: #cfcaba; font-size: 1.3rem; width: 44px; height: 44px; cursor: pointer; }
.hero {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  color: #f2ede1;
  padding: var(--space-xl) 0 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 17, 22, 0.94) 0%, rgba(14, 17, 22, 0.82) 45%, rgba(14, 17, 22, 0.45) 100%),
    linear-gradient(0deg, rgba(14, 17, 22, 0.92) 0%, transparent 45%);
}
.hero::after {
  content: "XII";
  position: absolute;
  top: 40px;
  right: 4%;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 15rem);
  color: rgba(242, 237, 225, 0.06);
  pointer-events: none;
  line-height: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: var(--fs-display); font-weight: 500; letter-spacing: 0.01em; }
.hero .lead { color: var(--muted-dark); max-width: 52ch; margin-bottom: var(--space-md); font-size: 1.06rem; font-weight: 300; }
.hero-cta { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-badges {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  border-top: 1px solid rgba(216, 185, 104, 0.25);
  padding: var(--space-md) 0;
}
.badge-item { display: flex; gap: 14px; align-items: center; }
.badge-item i { color: var(--accent); font-size: 1.25rem; width: 44px; height: 44px; border: 1px solid var(--border-dark); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-item strong { display: block; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.badge-item span { font-size: var(--fs-small); color: var(--muted-dark); }
.section-journal { padding: var(--space-xl) 0; background: var(--bg); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-md); margin-bottom: var(--space-lg); }
.section-head h2 { font-size: var(--fs-h2); }
.view-all {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(185, 138, 46, 0.4);
  padding-bottom: 4px;
  white-space: nowrap;
}
.view-all:hover { color: var(--ink); border-color: var(--ink); }
.journal-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--space-md); }
.journal-feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.journal-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.journal-feature .journal-media { aspect-ratio: 16 / 10; }
.journal-media img { transition: transform 0.6s ease; }
.journal-feature:hover .journal-media img, .journal-card:hover .journal-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 2px;
  color: #17130a;
}
.badge-static { position: static; }
.badge-story { background: var(--accent); }
.badge-health { background: #7ba05f; }
.badge-guide { background: #c96f3a; }
.badge-lifestyle { background: #8a6fa8; }
.badge-tech { background: #4f7d99; }
.date {
  position: absolute;
  right: 14px;
  bottom: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: #f2ede1;
  background: rgba(20, 23, 28, 0.72);
  padding: 4px 10px;
  border-radius: 2px;
}
.journal-feature h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); padding: var(--space-md) var(--space-md) 0; }
.journal-feature h3 a, .journal-card h3 a { transition: color 0.2s ease; }
.journal-feature h3 a:hover, .journal-card h3 a:hover { color: var(--accent); }
.journal-feature p { padding: var(--space-sm) var(--space-md) 0; color: var(--muted); }
.read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: var(--space-sm) var(--space-md) var(--space-md);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.read:hover { gap: 12px; }
.journal-side { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.journal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.journal-card h3 { font-size: var(--fs-h3); padding: var(--space-sm) var(--space-sm) 0; }
.journal-card .read { margin: auto var(--space-sm) var(--space-sm); padding-top: var(--space-sm); }
.section-banners { padding: 0 0 var(--space-xl); background: var(--bg); }
.banners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  min-height: 170px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.banner:hover { transform: translateY(-4px); }
.banner h3 { font-size: var(--fs-h3); margin-bottom: 6px; }
.banner .overline { margin-bottom: 8px; }
.banner .read { margin: 0; }
.banner img { width: 96px; height: 120px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.banner-light { background: var(--surface); border: 1px solid var(--border); }
.banner-dark { background: var(--surface-2); color: #f2ede1; }
.banner-green { background: var(--accent-2); color: #eef3ee; }
.banner-green .overline { color: #bcd8c4; }
.banner-green .read { color: #bcd8c4; }
.section-tiles { background: var(--surface-2); padding: var(--space-xl) 0; }
.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.tile { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-dark); min-height: 420px; display: flex; align-items: flex-end; }
.tile-media { position: absolute; inset: 0; }
.tile-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 23, 28, 0.05) 30%, rgba(20, 23, 28, 0.92) 88%); }
.tile-body { position: relative; z-index: 1; padding: var(--space-md); color: #f2ede1; }
.tile-body h3 { font-size: var(--fs-h2); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.tile-body p { color: var(--muted-dark); margin: 8px 0 12px; max-width: 30ch; }
.tile-body .read { margin: 0; }
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); padding: var(--space-md) 0; }
.trust-item { display: flex; gap: 14px; align-items: center; }
.trust-item i { color: var(--accent); font-size: 1.25rem; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-item span { font-size: var(--fs-small); color: var(--muted); }
.section-picks { padding: var(--space-xl) 0 var(--space-lg); background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.product { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-media { aspect-ratio: 1 / 1; background: #ece7db; }
.product-body { padding: var(--space-sm); }
.brand { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.product-body h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 500; margin: 6px 0 10px; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.product-foot { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--border); padding-top: 10px; }
.price { font-weight: 600; font-size: 1.05rem; }
.stars { font-size: 0.72rem; color: var(--accent); letter-spacing: 2px; }
.cat-row { background: var(--surface); border-top: 1px solid var(--border); padding: var(--space-lg) 0; }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md); text-align: center; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: var(--space-sm); border: 1px solid transparent; border-radius: var(--radius-md); transition: border-color 0.25s ease, background 0.25s ease; }
.cat-item:hover { border-color: var(--border); background: var(--bg); }
.cat-item i { font-size: 1.5rem; color: var(--accent); width: 64px; height: 64px; border: 1px solid var(--border); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.cat-title { font-size: 0.84rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.cat-link { font-size: 0.76rem; color: var(--muted); }
.cat-item:hover .cat-link { color: var(--accent); }
.section-consult {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(216, 185, 104, 0.1), transparent 60%),
    var(--accent-2);
  color: #eef3ee;
  padding: var(--space-xl) 0;
}
.consult-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: start; }
.consult-copy h2 { font-size: var(--fs-h2); margin-bottom: var(--space-sm); }
.consult-copy p { color: #c9d6cb; margin-bottom: var(--space-sm); max-width: 56ch; }
.usp { margin: var(--space-md) 0; display: grid; gap: 12px; }
.usp li { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.usp i { color: var(--accent-soft); }
.consult-media { position: relative; margin-top: var(--space-md); border: 1px solid rgba(216, 185, 104, 0.4); padding: 12px; background: rgba(20, 23, 28, 0.35); }
.consult-media img { aspect-ratio: 16 / 8; }
.chip-caption { position: absolute; bottom: 24px; left: 26px; background: var(--surface-2); color: var(--accent-soft); border-color: rgba(216, 185, 104, 0.5); }
.consult-form-card { background: var(--surface); color: var(--ink); border-radius: var(--radius-md); padding: var(--space-lg) var(--space-md); box-shadow: var(--shadow-md); border-top: 4px solid var(--accent); }
.consult-form-card h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.form-intro { color: var(--muted); font-size: var(--fs-small); margin-bottom: var(--space-md); }
.field { margin-bottom: var(--space-sm); }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-small); color: var(--muted); margin: var(--space-sm) 0; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.article-head { background: var(--surface-2); color: #f2ede1; padding: var(--space-xl) 0 var(--space-lg); }
.article-head h1 { font-size: var(--fs-h1); max-width: 22ch; }
.article-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: var(--space-sm); flex-wrap: wrap; }
.article-meta { color: var(--muted-dark); font-size: 0.9rem; letter-spacing: 0.06em; }
.article-body {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: calc(-1 * var(--space-md)) auto var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg) var(--space-md);
}
.article-lead { font-size: 1.15rem; color: var(--muted); margin-bottom: var(--space-md); }
.article-lead::first-letter {
  font-family: var(--font-display);
  font-size: 3.1em;
  float: left;
  line-height: 0.9;
  padding-right: 10px;
  color: var(--accent);
}
.article-body h2 { font-size: 1.5rem; margin: var(--space-md) 0 var(--space-sm); }
.article-body p { margin-bottom: var(--space-sm); }
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  border-left: 3px solid var(--accent);
  padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
  margin: var(--space-md) 0;
  color: var(--ink);
}
.callout {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  font-size: 0.95rem;
}
.chart {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  display: grid;
  gap: 12px;
}
.chart figcaption {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.chart-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; align-items: center; font-size: 0.88rem; }
.chart-label { font-weight: 500; }
.chart-track { display: block; background: var(--border); height: 10px; border-radius: 2px; overflow: hidden; }
.chart-bar { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }
.w-25 { width: 25%; }
.w-40 { width: 40%; }
.w-55 { width: 55%; }
.w-70 { width: 70%; }
.w-90 { width: 90%; }
.chart-value { color: var(--muted); min-width: 96px; text-align: right; }
.table-wrap { overflow-x: auto; margin: var(--space-md) 0; border: 1px solid var(--border); border-radius: var(--radius-md); }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: var(--surface); }
.table-wrap th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.table-wrap td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.table-wrap tr:last-child td { border-bottom: none; }
.article-cta {
  margin-top: var(--space-lg);
  background: var(--surface-2);
  color: #f2ede1;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.article-cta span { max-width: 46ch; color: var(--muted-dark); }
.site-footer { background: var(--surface-2); color: #cfcaba; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: var(--space-md); padding: var(--space-xl) 0 var(--space-lg); }
.footer-brand p { margin: var(--space-sm) 0; color: var(--muted-dark); max-width: 30ch; }
.nl-label { display: block; font-size: var(--fs-small); margin-bottom: 10px; color: var(--muted-dark); }
.nl-row { display: flex; gap: 8px; }
.nl-row input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  background: var(--surface-3);
  border: 1px solid var(--border-dark);
  color: #f2ede1;
  border-radius: var(--radius-sm);
}
.consent-light { color: var(--muted-dark); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f2ede1;
  margin-bottom: 6px;
  font-weight: 600;
}
.stand { display: block; font-size: 0.74rem; color: var(--muted-dark); margin-bottom: 10px; }
.footer-col ul { display: grid; gap: 10px; margin-top: 8px; }
.footer-col a { font-size: 0.92rem; color: var(--muted-dark); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-trust { display: flex; gap: var(--space-sm); flex-wrap: wrap; border-top: 1px solid var(--border-dark); padding-top: var(--space-md); padding-bottom: var(--space-md); }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--muted-dark);
}
.chip i { color: var(--accent); }
.footer-bottom { padding-bottom: var(--space-lg); }
.disclaimer { font-size: 0.84rem; color: #7d7a72; line-height: 1.7; border-top: 1px solid var(--border-dark); padding-top: var(--space-md); }
.footer-legal-line { display: flex; justify-content: space-between; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-md); font-size: 0.9rem; color: var(--muted-dark); }
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  background: var(--surface-2);
  color: var(--accent-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.thanks-main { background: var(--bg); }
.thanks-section { padding: var(--space-xl) 0; }
.thanks-card {
  width: min(760px, 92%);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  text-align: center;
}
.thanks-logo { width: 50px; height: 50px; margin: 0 auto var(--space-sm); border-radius: var(--radius-sm); }
.thanks-card h1 { font-size: var(--fs-h1); }
.thanks-card .overline { color: var(--accent); }
.thanks-card .tickline { margin-left: auto; margin-right: auto; }
.thanks-lead { font-size: 1.2rem; color: var(--muted); }
.thanks-card h2 { font-size: var(--fs-h3); margin: var(--space-md) 0 var(--space-sm); letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }
.steps { text-align: left; display: grid; gap: var(--space-sm); margin: 0 auto var(--space-md); max-width: 560px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-sm); }
.step-num { font-family: var(--font-display); font-size: 1.3rem; color: var(--accent); min-width: 34px; }
.thanks-info { background: var(--surface-2); color: var(--muted-dark); border-radius: var(--radius-md); padding: var(--space-sm) var(--space-md); max-width: 560px; margin: 0 auto var(--space-md); }
.thanks-info h3 { color: #f2ede1; font-size: 1.05rem; margin-bottom: 6px; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 40px 20px; word-break: break-word; }
.legal-content h1 { font-size: 2rem; margin-bottom: 16px; }
.legal-content h2 { font-size: 1.5rem; margin: 28px 0 10px; }
.legal-content p { margin-bottom: 12px; }
@media (max-width: 1024px) {
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .banners-grid { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: 1fr; }
  .tile { min-height: 320px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .consult-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border-dark);
    display: none;
    margin: 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: var(--space-sm) 4%; }
  .main-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--border-dark); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .journal-side { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .chart-row { grid-template-columns: 90px 1fr; }
  .chart-value { grid-column: 2; text-align: left; min-width: 0; }
}
@media (max-width: 520px) {
  .hero-badges { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal-line { flex-direction: column; }
  .logo-text { font-size: 1.05rem; letter-spacing: 0.2em; }
  body { font-size: 0.95rem; }
  .footer-col a { font-size: 0.88rem; }
  .article-body { padding: var(--space-md) var(--space-sm); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.legal-hero { background: var(--surface-2); color: #f2ede1; padding: var(--space-xl) 0 var(--space-lg); word-break: break-all; }
.legal-hero h1 { font-size: var(--fs-h1); word-break: break-all; }
.legal-hero .overline { color: var(--accent-soft); word-break: break-all; }
.legal-hero .legal-stand { word-break: break-all; }
.legal-stand { color: var(--muted-dark); font-size: 0.9rem; letter-spacing: 0.06em; margin-top: 10px; }
.legal-content { padding-bottom: var(--space-xl); }
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin: 0 0 var(--space-lg);
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.legal-toc-title {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.legal-toc a { color: var(--accent); font-size: 0.95rem; transition: color 0.2s ease; }
.legal-toc a:hover { color: var(--ink); }
.legal-content h2 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: var(--space-lg) 0 var(--space-sm);
  font-size: 1.45rem;
}
.legal-content h2::before { content: "§"; color: var(--accent); font-family: var(--font-display); }
.legal-content h3 { font-size: 1.15rem; margin: var(--space-md) 0 var(--space-xs); }
.legal-content p { color: #3c3f45; }
.legal-list { margin: var(--space-sm) 0 var(--space-md); display: grid; gap: 8px; }
.legal-list li { position: relative; padding-left: 22px; }
.legal-list li::before { content: "◆"; position: absolute; left: 0; top: 0.5em; font-size: 0.6em; color: var(--accent); }
.legal-callout {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  font-size: 0.95rem;
}
.legal-callout strong { display: block; margin-bottom: 4px; }
@media (max-width: 520px) {
  .legal-hero { padding: var(--space-lg) 0 var(--space-md); }
  .legal-content h2 { font-size: 1.25rem; }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}
[data-aos="flip-left"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}
[data-aos="flip-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hero-copy-wrap,
  .journal-grid > *,
  .banners-grid > *,
  .tiles-grid > *,
  .products-grid > *,
  .consult-grid > *,
  .journal-side > * {
    min-width: 0;
    max-width: 100%;
  }
}

.header-inner {
  flex-wrap: wrap;
}

.hero-badges > *,
.trust-grid > *,
.journal-grid > *,
.banners-grid > *,
.tiles-grid > *,
.products-grid > *,
.consult-grid > *,
.cat-grid > *,
.footer-grid > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .trust-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
  .logo {
    flex-direction: column;
  }
  .ad-badge,
  .logo-text,
  .footer-col {
    word-break: break-all;
  }
  .logo-text {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1200px, 94%);
  }
  .hero {
    padding-top: var(--space-lg);
  }
  .section-journal,
  .section-banners,
  .section-tiles,
  .section-picks,
  .section-consult,
  .thanks-section {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
  .consult-form-card,
  .thanks-card {
    padding: var(--space-md) var(--space-sm);
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .btn {
    font-size: 0.75rem;
    padding: 12px 18px;
  }
  body {
    font-size: 0.92rem;
  }
}