:root {
  --ink: #1c1118;
  --ink-2: #241620;
  --ink-3: #30202b;
  --cream: #fff4d8;
  --paper: #efd2a7;
  --muted: #c8a27d;
  --brass: #c58a46;
  --brass-2: #ffd07a;
  --copper: #ff7d5f;
  --rose: #ff85b6;
  --cyan: #83efff;
  --violet: #c3a2ff;
  --line: rgba(255, 222, 170, 0.18);
  --line-strong: rgba(255, 222, 170, 0.34);
  --panel: rgba(255, 244, 216, 0.055);
  --panel-2: rgba(255, 244, 216, 0.085);
  --shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  --glow: 0 0 34px rgba(255, 133, 182, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1500px;
  --section: 58px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 12% -4%,
      rgba(255, 133, 182, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 0%,
      rgba(131, 239, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #24131e 0%, #150d13 46%, #1b1118 100%);
  color: var(--cream);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p {
  margin: 0 0 1rem;
}
.container {
  width: min(calc(100% - 34px), var(--container));
  margin-inline: auto;
}
.section {
  padding: var(--section) 0;
}
.section-compact {
  padding: 42px 0;
}
.section-line {
  border-top: 1px solid var(--line);
  position: relative;
}
.section-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: min(820px, 70vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    var(--brass-2),
    var(--rose),
    var(--cyan),
    transparent
  );
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass-2), var(--cyan));
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}
.section-head h2,
.page-hero h1,
.article-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 4.4rem);
}
.section-head p,
.page-hero p {
  color: var(--paper);
  font-size: 1.02rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 222, 170, 0.34);
  border-radius: 999px;
  padding: 11px 17px;
  background: linear-gradient(135deg, var(--brass-2), var(--rose));
  color: #1a0f14;
  font-weight: 950;
  letter-spacing: 0.015em;
  box-shadow: 0 12px 30px rgba(255, 125, 95, 0.18);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s;
}
.btn:hover,
.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 17px 36px rgba(255, 125, 95, 0.22);
}
.btn-soft {
  background: rgba(255, 244, 216, 0.07);
  color: var(--cream);
  box-shadow: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(
    180deg,
    rgba(27, 17, 24, 0.92),
    rgba(27, 17, 24, 0.72)
  );
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rose),
    var(--brass-2),
    var(--cyan),
    transparent
  );
  opacity: 0.78;
}
.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}
.brand img {
  width: min(210px, 46vw);
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 222, 170, 0.16);
  border-radius: 999px;
  background: rgba(255, 244, 216, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: #f4d6b1;
  font-weight: 850;
  font-size: 0.88rem;
  transition: 0.2s ease;
}
.site-nav a:hover,
.site-nav a.is-active {
  background: linear-gradient(
    135deg,
    rgba(255, 133, 182, 0.18),
    rgba(131, 239, 255, 0.12)
  );
  color: #fff8df;
  box-shadow: inset 0 0 0 1px rgba(255, 222, 170, 0.13);
}
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 244, 216, 0.065);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
  transition: 0.22s;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  padding: 24px 0 42px;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 18px;
  align-items: stretch;
  min-height: clamp(450px, 68svh, 610px);
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 244, 216, 0.09),
    rgba(255, 244, 216, 0.035)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255, 222, 170, 0.18);
  border-radius: 22px;
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  overflow: hidden;
  z-index: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(25, 15, 22, 0.94) 0%,
      rgba(25, 15, 22, 0.8) 43%,
      rgba(25, 15, 22, 0.52) 100%
    ),
    radial-gradient(
      circle at 73% 24%,
      rgba(255, 133, 182, 0.22),
      transparent 30%
    );
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-copy,
.hero-stack {
  position: relative;
  z-index: 1;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
  padding: 34px 26px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  margin: 10px 0 14px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--brass-2), var(--rose), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 720px;
  color: #f2d5ae;
  font-size: clamp(1rem, 1.35vw, 1.19rem);
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.kpi {
  padding: 13px;
  border: 1px solid rgba(255, 222, 170, 0.16);
  border-radius: 16px;
  background: rgba(14, 8, 12, 0.46);
}
.kpi strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--brass-2);
}
.kpi span {
  display: block;
  color: var(--paper);
  font-size: 0.84rem;
  margin-top: 4px;
}
.hero-stack {
  display: grid;
  align-content: end;
  gap: 12px;
}
.desk-card,
.ticker-card,
.read-card {
  border: 1px solid rgba(255, 222, 170, 0.18);
  border-radius: 22px;
  background: rgba(22, 13, 19, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: var(--glow);
  overflow: hidden;
}
.desk-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.desk-card div {
  padding: 16px;
}
.desk-card h3,
.read-card h3 {
  font-family: Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.05;
  margin: 0 0 8px;
}
.desk-card p,
.read-card p {
  color: #e9cba4;
  font-size: 0.95rem;
}
.read-card {
  padding: 17px;
}
.ticker-card {
  padding: 12px;
  white-space: nowrap;
  overflow: hidden;
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 23s linear infinite;
}
.ticker span {
  padding-right: 42px;
  color: #f3d1ac;
  font-weight: 850;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.grid {
  display: grid;
  gap: 18px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card,
.review-card,
.guide-card,
.article-card,
.info-card,
.legal-card,
.contact-card {
  border: 1px solid rgba(255, 222, 170, 0.17);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 244, 216, 0.07),
    rgba(255, 244, 216, 0.035)
  );
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.card:hover,
.review-card:hover,
.guide-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(131, 239, 255, 0.34);
  background: linear-gradient(
    180deg,
    rgba(255, 244, 216, 0.09),
    rgba(255, 244, 216, 0.045)
  );
}
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.wide-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-body {
  padding: 18px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.tag::before {
  content: "✦";
  color: var(--brass-2);
}
.card h3,
.review-card h3,
.guide-card h3,
.article-card h3,
.info-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.26rem, 1.75vw, 1.9rem);
  line-height: 1.08;
  margin: 9px 0 9px;
}
.card p,
.review-card p,
.guide-card p,
.article-card p,
.info-card p {
  color: #e8caa2;
}
.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 12px;
}
.score {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brass-2), var(--rose));
  color: #170f16;
  font-weight: 1000;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.feature-large {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  min-height: 340px;
}
.feature-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-large .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.rail-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 222, 170, 0.17);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 222, 170, 0.13);
}
.rail-box div {
  padding: 20px;
  background: rgba(22, 13, 19, 0.88);
}
.rail-box strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--brass-2);
  line-height: 1;
}
.rail-box span {
  display: block;
  color: var(--paper);
  font-size: 0.9rem;
  margin-top: 6px;
}
.quote-band {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 222, 170, 0.2);
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(255, 125, 95, 0.12),
    rgba(131, 239, 255, 0.06)
  );
  overflow: hidden;
}
.quote-band::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(255, 222, 170, 0.18);
  border-radius: 50%;
}
.quote-band p {
  font-family: Georgia, serif;
  font-size: clamp(1.65rem, 2.6vw, 2.9rem);
  line-height: 1.08;
  margin: 0;
}
.quote-band span {
  display: block;
  color: var(--muted);
  margin-top: 12px;
}
.newsletter-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 520px);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 133, 182, 0.14), transparent 36%),
    linear-gradient(
      135deg,
      rgba(255, 244, 216, 0.075),
      rgba(255, 244, 216, 0.035)
    );
}
.newsletter-block h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1;
  margin: 0 0 10px;
}
.form-grid {
  display: grid;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 222, 170, 0.22);
  border-radius: 15px;
  background: rgba(16, 9, 14, 0.76);
  color: var(--cream);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: 0.18s;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(131, 239, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(131, 239, 255, 0.08);
}
textarea {
  min-height: 138px;
  resize: vertical;
}
.form-status {
  min-height: 1.35em;
  color: #d8ff9d;
  font-weight: 850;
  margin: 0;
}
.form-status.is-error {
  color: #ffb4a8;
}
.mini-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
}
.mini-form input {
  border-radius: 999px;
}
.mini-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  background: var(--brass-2);
  color: #170f16;
  font-weight: 950;
  cursor: pointer;
}
.page-hero {
  padding: 48px 0 28px;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 560px);
  gap: 22px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 6.8rem);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.breadcrumb a {
  color: var(--cyan);
  font-weight: 850;
}
.content-panel {
  padding: 24px;
}
.content-panel h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.05;
  margin: 0 0 12px;
}
.content-panel p,
.content-panel li {
  color: #e9cba4;
}
.text-columns {
  columns: 2;
  column-gap: 34px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: 18px;
}
.contact-card {
  padding: 22px;
}
.contact-note {
  display: grid;
  gap: 12px;
}
.contact-note div {
  padding: 16px;
  border: 1px solid rgba(255, 222, 170, 0.15);
  border-radius: 16px;
  background: rgba(255, 244, 216, 0.05);
}
.contact-note strong {
  display: block;
  color: var(--brass-2);
  margin-bottom: 5px;
}
.article-header {
  padding: 52px 0 24px;
}
.article-header h1 {
  font-size: clamp(2.7rem, 5.2vw, 6.6rem);
  max-width: 1180px;
}
.article-header p {
  max-width: 850px;
  color: var(--paper);
  font-size: 1.08rem;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 222, 170, 0.2);
  box-shadow: var(--shadow);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px) 310px;
  gap: 34px;
  align-items: start;
}
.article-content {
  font-size: 1.06rem;
  color: #f3ddbd;
}
.article-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.06;
  margin: 36px 0 12px;
  color: var(--cream);
}
.article-content h3 {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  margin: 24px 0 8px;
  color: var(--brass-2);
}
.article-content p {
  margin-bottom: 16px;
}
.article-content ul,
.article-content ol {
  padding-left: 22px;
}
.article-content blockquote {
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid var(--brass-2);
  background: rgba(255, 244, 216, 0.06);
  border-radius: 0 18px 18px 0;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.32;
  color: #fff0ce;
}
.article-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}
.aside-card {
  border: 1px solid rgba(255, 222, 170, 0.18);
  background: rgba(255, 244, 216, 0.055);
  border-radius: 19px;
  padding: 17px;
}
.aside-card h3 {
  font-family: Georgia, serif;
  margin: 0 0 8px;
  color: var(--brass-2);
}
.aside-card a {
  display: block;
  color: var(--cyan);
  font-weight: 850;
  margin-top: 9px;
}
.legal-card {
  padding: clamp(20px, 3vw, 34px);
}
.legal-card h2 {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.1;
  margin: 26px 0 10px;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p,
.legal-card li {
  color: #e8caa2;
}
.legal-card ul {
  padding-left: 20px;
}
.site-footer {
  padding: 44px 0 24px;
  background: linear-gradient(
    180deg,
    rgba(20, 12, 18, 0.16),
    rgba(8, 5, 8, 0.75)
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1.2fr;
  gap: 22px;
}
.footer-logo img {
  width: 188px;
}
.footer-grid h3 {
  font-family: Georgia, serif;
  color: var(--brass-2);
  margin: 0 0 10px;
}
.footer-grid a {
  display: block;
  color: #ebd0ad;
  margin: 6px 0;
}
.footer-grid p {
  color: #dcc09a;
}
.footer-email {
  font-weight: 950;
  color: var(--cyan) !important;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 100;
  width: min(900px, calc(100% - 26px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 222, 170, 0.28);
  border-radius: 22px;
  background: rgba(27, 17, 24, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.cookie-banner p {
  margin: 4px 0 0;
  color: #e3c7a1;
}
.cookie-banner a {
  color: var(--cyan);
  font-weight: 850;
}
.cookie-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.cookie-banner[hidden] {
  display: none;
}
.not-found {
  text-align: center;
  padding: 90px 0;
}
.not-found h1 {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.86;
  margin: 0;
  background: linear-gradient(90deg, var(--brass-2), var(--rose), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}
.not-found p {
  max-width: 650px;
  margin: 12px auto 24px;
  color: var(--paper);
}
@media (max-width: 1180px) {
  :root {
    --section: 52px;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }
  .ticker-card {
    grid-column: 1/-1;
  }
  .feature-large,
  .feature-strip,
  .newsletter-block,
  .page-hero-inner,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .text-columns {
    columns: 1;
  }
  .rail-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .nav-shell {
    min-height: 66px;
  }
  .brand img {
    width: 184px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 74px;
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 20px;
    background: rgba(27, 17, 24, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav a {
    padding: 12px 13px;
  }
  .hero {
    padding: 18px 0 34px;
  }
  .hero-shell {
    padding: 10px;
    border-radius: 22px;
  }
  .hero-shell::before {
    display: none;
  }
  .hero-media {
    inset: 10px;
    border-radius: 17px;
  }
  .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(25, 15, 22, 0.86),
      rgba(25, 15, 22, 0.82)
    );
  }
  .hero-copy {
    padding: 30px 15px 16px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 5rem);
  }
  .hero-kpis,
  .hero-stack,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .desk-card img {
    aspect-ratio: 16/9;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .section {
    padding: 44px 0;
  }
  .section-compact {
    padding: 34px 0;
  }
  .feature-large {
    display: block;
  }
  .feature-large img {
    aspect-ratio: 1/1;
    height: auto;
  }
  .form-row,
  .mini-form {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 38px 0 24px;
  }
  .article-header {
    padding: 38px 0 22px;
  }
  .article-hero-img {
    aspect-ratio: 16/11;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 12px;
  }
  .cookie-actions .btn {
    flex: 1;
  }
  .rail-box {
    grid-template-columns: 1fr;
  }
  .content-panel,
  .contact-card {
    padding: 19px;
  }
  .newsletter-block {
    padding: 19px;
  }
  .quote-band {
    padding: 24px;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }
  .brand img {
    width: 168px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-kpis {
    gap: 8px;
  }
  .page-hero h1,
  .article-header h1 {
    font-size: clamp(2.4rem, 15vw, 4.2rem);
  }
  .card-body {
    padding: 16px;
  }
  .footer-bottom {
    display: grid;
  }
  .cookie-actions {
    display: grid;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

/* === V3 production polish: compact full-bleed hero, calmer type, stronger forms === */
:root {
  --container: 1560px;
  --section: 48px;
}
body {
  line-height: 1.54;
}
.container {
  width: min(calc(100% - 40px), var(--container));
}
.section {
  padding: var(--section) 0;
}
.section-compact {
  padding: 34px 0;
}
.section-head {
  gap: 18px;
  margin-bottom: 20px;
}
.section-head h2 {
  font-size: clamp(1.76rem, 3vw, 3.65rem);
  letter-spacing: -0.038em;
}
.section-head p,
.page-hero p {
  font-size: 0.98rem;
  line-height: 1.56;
}
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.site-header {
  background: linear-gradient(
    180deg,
    rgba(25, 15, 22, 0.96),
    rgba(25, 15, 22, 0.84)
  );
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}
.site-header.is-scrolled {
  background: rgba(21, 13, 18, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}
.nav-shell {
  min-height: 64px;
  transition: min-height 0.2s ease;
}
.site-header.is-scrolled .nav-shell {
  min-height: 58px;
}
.brand {
  min-width: 172px;
}
.brand img {
  width: min(190px, 42vw);
}
.site-nav {
  gap: 4px;
  padding: 5px;
  background: rgba(255, 244, 216, 0.055);
}
.site-nav a {
  padding: 7px 12px;
  font-size: 0.84rem;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.btn,
.button {
  position: relative;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 232, 180, 0.42);
  background: linear-gradient(135deg, #ffd986 0%, #ff91b9 48%, #9af2ff 100%);
  color: #160c12;
  box-shadow:
    0 12px 28px rgba(255, 125, 95, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  overflow: hidden;
}
.btn::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::before,
.button:hover::before {
  transform: translateX(120%);
}
.btn-soft {
  background: rgba(255, 244, 216, 0.075);
  color: #fff1cf;
  border-color: rgba(255, 222, 170, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.btn-soft:hover {
  background: rgba(255, 244, 216, 0.11);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 0;
  overflow: hidden;
  background: #130b11;
}
.hero .container.hero-shell {
  width: 100%;
  margin: 0;
  max-width: none;
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  align-items: center;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-shell::before {
  display: none;
}
.hero-media {
  inset: 0;
  border-radius: 0;
  z-index: 0;
}
.hero-media::after {
  background:
    linear-gradient(
      90deg,
      rgba(17, 9, 15, 0.96) 0%,
      rgba(17, 9, 15, 0.84) 42%,
      rgba(17, 9, 15, 0.36) 75%,
      rgba(17, 9, 15, 0.62) 100%
    ),
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 217, 134, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 78% 30%,
      rgba(255, 133, 182, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(19, 11, 17, 0.16), rgba(19, 11, 17, 0.72));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03) brightness(0.92);
}
.hero-copy {
  min-width: 0;
  max-width: 760px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2 + 20px));
  padding: 42px 0 38px;
}
.hero h1 {
  font-size: clamp(2.65rem, 5.1vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.058em;
  margin: 8px 0 12px;
}
.hero-lead {
  max-width: 660px;
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.58;
  color: #f0d5ae;
}
.hero-actions {
  margin-top: 12px;
  gap: 9px;
}
.hero-kpis {
  max-width: 580px;
  gap: 8px;
  margin-top: 14px;
}
.kpi {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(14, 8, 12, 0.54);
  backdrop-filter: blur(8px);
}
.kpi strong {
  font-size: 1.32rem;
}
.kpi span {
  font-size: 0.78rem;
  line-height: 1.25;
}
.hero-stack {
  align-self: center;
  align-content: center;
  gap: 10px;
  max-width: 380px;
  width: 100%;
  
  padding: 26px 0;
  
}
.desk-card,
.ticker-card,
.read-card {
  border-radius: 18px;
  background: rgba(22, 13, 19, 0.76);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
}
.desk-card img {
  aspect-ratio: 16/8.5;
  object-fit: cover;
  object-position: center;
}
.desk-card div {
  padding: 13px 14px 14px;
}
.desk-card h3,
.read-card h3 {
  font-size: 1.18rem;
  line-height: 1.08;
  margin-bottom: 6px;
}
.desk-card p,
.read-card p {
  font-size: 0.88rem;
  line-height: 1.48;
  margin-bottom: 0;
}
.read-card {
  padding: 14px;
}
.ticker-card {
  padding: 10px;
}
.ticker span {
  font-size: 0.76rem;
}

.grid {
  gap: 16px;
}
.card,
.review-card,
.guide-card,
.article-card,
.info-card,
.legal-card,
.contact-card {
  border-radius: 20px;
}
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(
    135deg,
    rgba(255, 244, 216, 0.08),
    rgba(131, 239, 255, 0.05)
  );
}
.wide-img,
.feature-large img,
.desk-card img,
.article-hero-img {
  object-fit: cover;
  object-position: center;
}
.card-body {
  padding: 16px;
}
.card h3,
.review-card h3,
.guide-card h3,
.article-card h3,
.info-card h3 {
  font-size: clamp(1.12rem, 1.42vw, 1.55rem);
  line-height: 1.12;
  margin: 8px 0 8px;
}
.card p,
.review-card p,
.guide-card p,
.article-card p,
.info-card p {
  font-size: 0.94rem;
  line-height: 1.54;
}
.meta {
  font-size: 0.78rem;
  margin-top: 10px;
}
.score {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 0.92rem;
}
.feature-large {
  min-height: 300px;
}
.feature-large .card-body {
  padding: 20px;
}
.rail-box div {
  padding: 17px;
}
.rail-box strong {
  font-size: 1.55rem;
}
.quote-band {
  padding: 24px;
  border-radius: 22px;
}
.quote-band p {
  font-size: clamp(1.38rem, 2.15vw, 2.35rem);
}

.newsletter-block {
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 133, 182, 0.13), transparent 34%),
    linear-gradient(
      135deg,
      rgba(255, 244, 216, 0.08),
      rgba(255, 244, 216, 0.04)
    );
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}
.newsletter-block h2 {
  font-size: clamp(1.55rem, 2.75vw, 2.95rem);
  letter-spacing: -0.035em;
}
.newsletter-block p {
  max-width: 760px;
  color: #edd0aa;
}
.form-grid {
  gap: 10px;
}
.form-row {
  gap: 10px;
}
label {
  display: inline-flex;
  margin-bottom: 6px;
  color: #ffdfad;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
input,
textarea,
select {
  min-height: 44px;
  border-radius: 13px;
  background: linear-gradient(
    180deg,
    rgba(12, 7, 11, 0.82),
    rgba(27, 16, 23, 0.72)
  );
  border: 1px solid rgba(255, 222, 170, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 26px rgba(0, 0, 0, 0.12);
  padding: 12px 13px;
}
textarea {
  min-height: 126px;
}
input::placeholder,
textarea::placeholder {
  color: rgba(239, 210, 167, 0.55);
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(131, 239, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(131, 239, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.form-status {
  font-size: 0.9rem;
  line-height: 1.35;
  color: #dfffad;
}
.form-status:not(:empty) {
  padding: 10px 12px;
  border: 1px solid rgba(216, 255, 157, 0.24);
  border-radius: 13px;
  background: rgba(216, 255, 157, 0.075);
}
.form-status.is-error:not(:empty) {
  border-color: rgba(255, 180, 168, 0.28);
  background: rgba(255, 180, 168, 0.07);
}
form .btn {
  width: max-content;
}
.contact-card {
  padding: 20px;
}
.contact-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.1vw, 2.35rem);
  line-height: 1;
  margin: 8px 0 8px;
}
.contact-note {
  gap: 10px;
}
.contact-note div {
  padding: 14px;
  border-radius: 15px;
}
.mini-form {
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.mini-form input {
  min-height: 40px;
}
.mini-form button {
  min-height: 40px;
  padding: 0 16px;
  background: linear-gradient(135deg, #ffd986, #ff91b9);
  box-shadow: 0 10px 24px rgba(255, 125, 95, 0.14);
}

.page-hero {
  padding: 38px 0 22px;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 4.3vw, 5.2rem);
}
.article-header {
  padding: 40px 0 20px;
}
.article-header h1 {
  font-size: clamp(2.25rem, 4.3vw, 5.15rem);
  letter-spacing: -0.05em;
}
.article-header p {
  font-size: 1rem;
  line-height: 1.6;
}
.article-hero-img {
  aspect-ratio: 16/7.5;
  max-height: 520px;
}
.article-content {
  font-size: 1rem;
  line-height: 1.64;
}
.article-content h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
  margin: 30px 0 10px;
}
.article-content h3 {
  font-size: 1.28rem;
}
.legal-card {
  padding: clamp(18px, 2.4vw, 28px);
}
.legal-card h2 {
  font-size: 1.55rem;
}
.site-footer {
  padding: 38px 0 22px;
}
.footer-grid {
  gap: 18px;
}
.footer-logo img {
  width: 174px;
}

@media (max-width: 1180px) {
  .hero .container.hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    margin-left: 0;
    padding: 42px max(18px, calc((100vw - var(--container)) / 2 + 18px)) 16px;
    max-width: 820px;
  }
  .hero-stack {
    max-width: none;
    margin-right: 0;
    padding: 0 max(18px, calc((100vw - var(--container)) / 2 + 18px)) 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-stack .ticker-card {
    grid-column: 1/-1;
  }
}
@media (max-width: 820px) {
  :root {
    --section: 40px;
  }
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .nav-shell {
    min-height: 60px;
  }
  .site-header.is-scrolled .nav-shell {
    min-height: 58px;
  }
  .brand img {
    width: 166px;
  }
  .site-nav {
    top: 68px;
  }
  .hero .container.hero-shell {
    min-height: 0;
  }
  .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(17, 9, 15, 0.82),
      rgba(17, 9, 15, 0.9) 55%,
      rgba(17, 9, 15, 0.96)
    );
  }
  .hero-copy {
    padding: 34px 12px 16px;
  }
  .hero h1 {
    font-size: clamp(2.34rem, 12.5vw, 4.15rem);
    line-height: 0.96;
  }
  .hero-lead {
    font-size: 0.95rem;
  }
  .hero-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-stack {
    grid-template-columns: 1fr;
    padding: 0 12px 28px;
  }
  .read-card {
    display: none;
  }
  .desk-card img {
    aspect-ratio: 16/9;
  }
  .section-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.7rem);
  }
  .feature-large {
    min-height: 0;
  }
  .feature-large img {
    aspect-ratio: 1/1;
  }
  form .btn {
    width: 100%;
  }
  .newsletter-block {
    padding: 18px;
  }
  .article-hero-img {
    aspect-ratio: 16/10;
    max-height: none;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }
  .hero-copy {
    padding: 30px 10px 14px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-kpis {
    grid-template-columns: 1fr;
  }
  .kpi {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .kpi span {
    margin-top: 0;
  }
  .card-body {
    padding: 14px;
  }
  .page-hero h1,
  .article-header h1 {
    font-size: clamp(2.05rem, 13vw, 3.65rem);
  }
  input,
  textarea,
  select {
    font-size: 16px;
  }
}
.btn:disabled,
.button:disabled,
.mini-form button:disabled {
  opacity: 0.68;
  cursor: progress;
  transform: none;
  filter: saturate(0.82);
}
.btn.is-loading,
.button.is-loading {
  pointer-events: none;
}
