:root {
  --c-bg:        #0b0e14;
  --c-bg-2:      #11161f;
  --c-ink:       #e9e6dd;
  --c-ink-dim:   #a8a496;
  --c-blue:      #1a2b54;
  --c-blue-2:    #243b73;
  --c-green:     #2d4a39;
  --c-gold:      #c9a227;
  --c-gold-2:    #b8860b;
  --c-rule:      rgba(201, 162, 39, 0.25);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ───── Nav ───── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  backdrop-filter: blur(12px);
  background: rgba(11, 14, 20, 0.6);
  border-bottom: 1px solid var(--c-rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
}

.brand-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--c-gold);
}

.brand-em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-ink);
  opacity: 0.85;
}

.brand-sub {
  font-style: italic;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  margin-top: 2px;
}

.nav nav {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 400;
}

.nav nav a {
  color: var(--c-ink-dim);
  transition: color 0.2s;
}

.nav nav a:hover { color: var(--c-gold); }

.nav nav a.lang-switch {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border: 1px solid var(--c-rule);
  color: var(--c-gold);
  transition: border-color 0.2s, background 0.2s;
}

.nav nav a.lang-switch:hover {
  border-color: var(--c-gold);
  background: rgba(201, 162, 39, 0.08);
}

/* ── Hamburger toggle (hidden on desktop) ─────────────────────── */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--c-rule);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s;
  position: relative;
  z-index: 60;
}

.nav-toggle:hover { border-color: var(--c-gold); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-gold);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11, 14, 20, 0.45) 0%, rgba(11, 14, 20, 0.85) 70%),
    linear-gradient(180deg, rgba(26, 43, 84, 0.4) 0%, rgba(11, 14, 20, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 120px 32px 80px;
}

.hero-emblem {
  display: block;
  width: clamp(280px, 38vw, 520px);
  height: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 32px rgba(201, 162, 39, 0.3));
  animation: emblem-in 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes emblem-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--c-gold);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-bottom: 28px;
}

.lede {
  font-size: 1.18rem;
  color: var(--c-ink-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}

.btn-primary:hover {
  background: var(--c-gold-2);
  border-color: var(--c-gold-2);
}

.btn-ghost {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.btn-ghost:hover {
  background: rgba(201, 162, 39, 0.1);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--c-gold);
  font-size: 1.4rem;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ───── Sections ───── */
section {
  padding: 120px 0;
  border-bottom: 1px solid var(--c-rule);
}

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--c-gold);
  margin-bottom: 24px;
}

section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin-bottom: 32px;
  max-width: 820px;
}

.section-lede {
  font-size: 1.15rem;
  color: var(--c-ink-dim);
  max-width: 720px;
  margin-bottom: 64px;
}

.section-aside {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-ink-dim);
  border-left: 1px solid var(--c-rule);
  padding-left: 22px;
  margin: -40px 0 64px;
  max-width: 720px;
}

.section-aside em {
  font-style: normal;
  color: var(--c-gold);
}

/* ───── Problem ───── */
.problem { background: var(--c-bg-2); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.grid-3 article h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--c-gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-rule);
}

.grid-3 article p {
  color: var(--c-ink-dim);
  font-size: 0.98rem;
}

/* ───── Solution stages ───── */
.stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.stage {
  padding: 36px 32px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-rule);
  position: relative;
}

.stage::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 60px;
  background: var(--c-gold);
}

.stage-num {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  color: var(--c-gold);
  margin-bottom: 14px;
}

.stage h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--c-ink);
  margin-bottom: 18px;
  line-height: 1.2;
}

.stage h3 .latin {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--c-ink-dim);
  margin-top: 4px;
}

.stage p {
  color: var(--c-ink-dim);
  font-size: 0.98rem;
}

/* ───── Emblem divider ───── */
.emblem-divider {
  text-align: center;
  padding: 96px 32px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-rule);
}

.emblem-divider .emblem-mark {
  width: clamp(240px, 28vw, 380px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 32px rgba(201, 162, 39, 0.22));
}

.emblem-divider .emblem-motto {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--c-gold);
  margin-top: 24px;
}

/* ───── Creature dividers (vulture / pig) ───── */
.creature-divider {
  background: var(--c-bg);
  padding: 64px 0;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  overflow: hidden;
  position: relative;
}

.creature-divider::before,
.creature-divider::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 12%;
  pointer-events: none;
  z-index: 1;
}

.creature-divider::before {
  left: 0;
  background: linear-gradient(to right, var(--c-bg), transparent);
}

.creature-divider::after {
  right: 0;
  background: linear-gradient(to left, var(--c-bg), transparent);
}

.creature-divider img {
  display: block;
  max-width: min(46%, 640px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 36px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 28px rgba(201, 162, 39, 0.12));
  opacity: 0.92;
  position: relative;
  z-index: 2;
}

/* Size modifiers — used to frame the Lösung section */
.creature-divider--small img  { max-width: min(26%, 360px); }
.creature-divider--medium img { max-width: min(23%, 320px); }
.creature-divider--beer img   { max-width: min(11%, 155px); }

@media (max-width: 720px) {
  .creature-divider--small img  { max-width: 50%; }
  .creature-divider--medium img { max-width: 44%; }
  .creature-divider--beer img   { max-width: 27%; }
}

/* Light variant — white radial spotlight behind the creature */
.creature-divider--light {
  background:
    radial-gradient(ellipse 70% 90% at center,
      rgba(255, 255, 255, 0.32) 0%,
      rgba(255, 255, 255, 0.20) 22%,
      rgba(255, 255, 255, 0.10) 45%,
      rgba(255, 255, 255, 0.04) 68%,
      var(--c-bg) 92%);
}

.creature-divider--light::before,
.creature-divider--light::after {
  /* Drop the side fade gradients on the light variant —
     the radial already feathers the edges naturally. */
  display: none;
}

.creature-divider--light img {
  opacity: 1;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.45))
          drop-shadow(0 0 36px rgba(201, 162, 39, 0.25));
}

@media (max-width: 720px) {
  .creature-divider { padding: 40px 0; }
  .creature-divider img { max-width: 70%; }
}

/* ───── Objections ───── */
.objection-list {
  list-style: none;
  counter-reset: obj;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.objection-list li {
  counter-increment: obj;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--c-rule);
  position: relative;
}

.objection-list li::before {
  content: counter(obj, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  color: var(--c-gold);
  font-size: 1.4rem;
  align-self: start;
  min-width: 2.5em;
}

.objection-list .obj-q {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--c-ink);
  margin-bottom: 14px;
}

.objection-list .obj-q {
  grid-column: 2;
}

.objection-list .obj-a {
  grid-column: 2;
  color: var(--c-ink-dim);
  font-size: 1rem;
  max-width: 78ch;
}

.objection-list .obj-a::before {
  content: "→ ";
  color: var(--c-gold);
  font-weight: 500;
}

/* ───── Loop ───── */
.loop {
  background: var(--c-bg-2);
}

.loop-hint {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  margin-top: 40px;
  margin-bottom: 8px;
  opacity: 0.7;
}

.loop-steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.loop-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-rule);
  transition: background 0.2s, padding-left 0.2s;
  cursor: help;
  outline: none;
}

.loop-steps li:hover,
.loop-steps li:focus-visible {
  padding-left: 12px;
}

.loop-steps li:focus-visible {
  background: rgba(201, 162, 39, 0.04);
}

.ls-math {
  grid-column: 2;
  font-family: var(--sans);
  font-feature-settings: "tnum" 1;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: var(--c-ink-dim);
  border-left: 2px solid var(--c-rule);
  padding-left: 16px;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    opacity   0.3s ease 0.05s,
    margin-top 0.45s ease,
    border-left-color 0.3s ease;
}

.ls-math strong {
  color: var(--c-gold);
  font-weight: 500;
}

.ls-math .ls-eq {
  color: var(--c-gold);
  font-weight: 500;
  padding: 0 2px;
}

.loop-steps li:hover .ls-math,
.loop-steps li:focus-within .ls-math {
  max-height: 140px;
  opacity: 1;
  margin-top: 14px;
  border-left-color: var(--c-gold);
}

.loop-steps .ls-num {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  color: var(--c-gold);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.02em;
  min-width: 2.5em;
}

.loop-steps .ls-text {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--c-ink);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}

.loop-final .ls-text {
  color: var(--c-gold);
}

.loop-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--c-gold);
  text-align: right;
  margin-top: 32px;
  letter-spacing: 0.08em;
}

/* ───── Feasibility ───── */
.feasibility { background: var(--c-bg-2); }

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-gold);
  border-left: 2px solid var(--c-gold);
  padding-left: 24px;
  margin: 0 0 64px;
  max-width: 700px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 96px;
  padding: 48px 0;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  display: block;
  font-size: 0.92rem;
  color: var(--c-ink-dim);
  letter-spacing: 0.02em;
}

.stat-label em {
  display: block;
  font-style: italic;
  color: var(--c-ink-dim);
  opacity: 0.7;
  font-size: 0.85rem;
  margin-top: 4px;
}

.feas-grid { margin-top: 0; }

/* ───── Merch ───── */
.merch-grid {
  margin-bottom: 64px;
}

.merch-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--c-rule);
  background: var(--c-bg-2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.merch-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.merch-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f5dc;
  border-bottom: 1px solid var(--c-rule);
  transition: transform 0.4s ease;
}

.merch-card:hover .merch-card-img {
  transform: scale(1.03);
}

.merch-card-body {
  padding: 26px 28px 32px;
}

.merch-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.merch-card .price {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}

.merch-card p:last-child {
  color: var(--c-ink-dim);
  font-size: 0.95rem;
}

.merch-cta {
  text-align: center;
  margin-top: 48px;
}

.merch-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--c-ink-dim);
  font-style: italic;
}

.merch-note a,
.faq-list details p a {
  color: var(--c-gold);
  text-decoration: underline;
  text-decoration-color: var(--c-rule);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.merch-note a:hover,
.faq-list details p a:hover {
  text-decoration-color: var(--c-gold);
}

/* ───── FAQ ───── */
.faq { background: var(--c-bg-2); }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.faq-list details {
  border-top: 1px solid var(--c-rule);
  padding: 22px 0;
  transition: padding 0.2s;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--c-rule);
}

.faq-list summary {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color 0.2s;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--c-gold);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-list details[open] summary { color: var(--c-gold); }
.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  margin-top: 16px;
  color: var(--c-ink-dim);
  font-size: 1rem;
  max-width: 78ch;
}

/* ───── Footer ───── */
.footer {
  padding: 64px 0 48px;
  background: var(--c-bg);
  border-bottom: none;
  border-top: 1px solid var(--c-rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer .brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--c-gold);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.footer-em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-ink);
  opacity: 0.75;
}

.footer .motto {
  font-style: italic;
  color: var(--c-ink-dim);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--c-ink-dim);
  text-align: right;
}

.footer-links a:hover { color: var(--c-gold); }

.footer .copy {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-rule);
  font-size: 0.82rem;
  color: var(--c-ink-dim);
  opacity: 0.7;
}

/* ───── Legal page (Impressum / Datenschutz) ───── */
.legal-body { background: var(--c-bg); }

.legal {
  padding: 160px 0 96px;
  border-bottom: 1px solid var(--c-rule);
}

.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin-bottom: 16px;
}

.legal-lede {
  font-size: 1rem;
  color: var(--c-ink-dim);
  margin-bottom: 64px;
  font-style: italic;
}

.legal-section {
  padding: 32px 0;
  border-top: 1px solid var(--c-rule);
  max-width: 760px;
}

.legal-section:last-of-type {
  border-bottom: 1px solid var(--c-rule);
  margin-bottom: 56px;
}

.legal-section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--c-gold);
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.legal-section p {
  color: var(--c-ink-dim);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--c-ink-dim);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-section ul li {
  margin-bottom: 4px;
}

.legal-section ul li::marker {
  color: var(--c-gold);
}

.legal-section a {
  color: var(--c-gold);
  text-decoration: underline;
  text-decoration-color: var(--c-rule);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.legal-section a:hover { text-decoration-color: var(--c-gold); }

.legal-highlight {
  background: rgba(201, 162, 39, 0.04);
  border-left: 2px solid var(--c-gold);
  padding-left: 24px;
  margin-left: -24px;
  padding-right: 24px;
  border-top: 0;
}

.legal-highlight + .legal-section { border-top: 1px solid var(--c-rule); }

.legal-back {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.legal-back a {
  color: var(--c-gold);
  transition: opacity 0.2s;
}

.legal-back a:hover { opacity: 0.75; }

/* ───── Responsive ───── */
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav nav { gap: 16px; font-size: 0.82rem; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
}

@media (max-width: 720px) {
  .nav .brand-em { display: none; }
  .nav .brand-name { font-size: 1rem; }
  .nav .brand-sub { font-size: 0.7rem; letter-spacing: 0.14em; }

  /* Show hamburger, collapse nav into drawer */
  .nav-toggle { display: flex; }

  .nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 14, 20, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-rule);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  .nav nav.is-open {
    max-height: 85vh;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 24px 28px;
  }

  .nav nav a {
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
    color: var(--c-ink);
  }

  .nav nav a:last-of-type {
    border-bottom: none;
  }

  .nav nav a.lang-switch {
    margin-top: 16px;
    align-self: flex-start;
    border-bottom: 1px solid var(--c-rule);
  }
}

@media (max-width: 520px) {
  .nav .brand-text { display: none; }
  .brand-mark { width: 48px; height: 48px; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-emblem { width: clamp(220px, 56vw, 320px); }
  .cta { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}
