@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/hanken-grotesk-400.woff2?v=9") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/hanken-grotesk-600.woff2?v=9") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/hanken-grotesk-700.woff2?v=9") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.woff2?v=9") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-500.woff2?v=9") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.woff2?v=9") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono-500.woff2?v=9") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --gold: #dac190;
  --gold-2: #e1cea4;
  --on-gold: #000;
  --navy: #002f5d;
  --bg: #000;
  --card: rgba(10, 10, 11, 0.88);
  --text: #e7e1dc;
  --heading: #fff;
  --muted: #cec5b8;
  --line: rgba(218, 193, 144, 0.18);
  --nav-bg: rgba(0, 0, 0, 0.82);
  --panel-bg: rgba(10, 10, 11, 0.82);
  --footer-bg: rgba(10, 10, 11, 0.92);
  --soft-bg: rgba(0, 0, 0, 0.4);
}

:root[data-theme="light"] {
  color-scheme: light;
  --gold: #7a5720;
  --gold-2: #5c4015;
  --on-gold: #fff;
  --bg: #f7f3ea;
  --card: #fffdf8;
  --text: #2a261f;
  --heading: #161412;
  --muted: #5a5449;
  --line: rgba(22, 20, 18, 0.12);
  --nav-bg: rgba(255, 253, 248, 0.94);
  --panel-bg: #efe8d8;
  --footer-bg: #ebe3d3;
  --soft-bg: rgba(22, 20, 18, 0.04);
  --card-shadow: 0 14px 32px rgba(22, 20, 18, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.6;
}
h1, h2, h3, h4 { color: var(--heading); font-family: "Hanken Grotesk", sans-serif; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.wrap { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.muted { color: var(--muted); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
}
.nav-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo-image { display: none; width: auto; height: 28px; }
html:not([data-theme="light"]) .logo-image-dark,
html[data-theme="light"] .logo-image-light { display: block; }
.nav-links { display: flex; flex-wrap: nowrap; gap: 20px; }
.nav-links a, .nav-cta, .lang-switch {
  font: 500 11px Manrope, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--muted);
  padding-bottom: 3px;
  background: linear-gradient(var(--gold), var(--gold)) 0 100% / 0 1.5px no-repeat;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a[aria-current="location"] {
  color: var(--gold);
  background-size: 100% 1.5px;
}
.nav-mobile-consult { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}
.lang-switch a { color: var(--muted); }
.lang-switch a:hover, .lang-switch a[aria-current="page"] { color: var(--gold); }
.nav-cta { padding: 10px 16px; background: var(--gold); color: var(--on-gold); white-space: nowrap; }
.nav-cta:hover { background: var(--gold-2); }
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  place-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  background: var(--soft-bg);
  color: var(--gold);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 17px; height: 1px; background: currentColor; }
.theme-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--soft-bg);
  color: var(--gold);
  cursor: pointer;
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.7; }
.theme-icon-moon { display: none; }
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid var(--gold);
  cursor: pointer;
  font: 500 12px Manrope, system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.btn-gold { border-color: var(--gold); background: var(--gold); color: var(--on-gold); }
.btn-gold:hover { background: var(--gold-2); box-shadow: 0 0 18px rgba(118,89,30,.24); }
.btn:disabled { cursor: wait; opacity: .6; }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: color-mix(in srgb, var(--gold) 10%, transparent); }
.btn-full { width: 100%; }

.card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow, none);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.card:hover { border-color: color-mix(in srgb, var(--gold) 55%, transparent); }
.card.col { display: flex; flex-direction: column; }
.kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font: 500 11px Manrope, system-ui, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section { padding: 88px 0; scroll-margin-top: 88px; }
.section-head { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: 0; }
.section-head p { margin-top: 10px; color: var(--muted); font-size: 17px; }
.panel { background: var(--panel-bg); }

.hero { position: relative; display: flex; min-height: 82vh; align-items: center; padding: 104px 0 64px; }
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}
.hero .wrap { position: relative; text-align: center; }
.hero h1 { margin: 12px 0 20px; font-size: clamp(38px, 6.4vw, 68px); line-height: 1.06; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { max-width: 720px; margin: 0 auto 32px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 16px; }
.hero-note {
  margin-bottom: 42px;
  color: var(--muted);
  font: 500 11px Manrope, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr)); gap: 12px; text-align: center; }
.chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 132px;
  padding: 22px 14px 18px;
  color: var(--heading);
  font: 500 12px Manrope, system-ui, sans-serif;
  letter-spacing: .05em;
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: balance;
}
.chip svg { width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.chip-note {
  max-width: 16em;
  color: var(--muted);
  font: 500 11px Manrope, system-ui, sans-serif;
  letter-spacing: .02em;
  text-transform: none;
  line-height: 1.4;
}

#kontakt { scroll-margin-top: 88px; }

.contact-section {
  padding: 88px 0 112px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--gold) 7%, transparent), transparent 55%),
    var(--bg);
}
.contact-copy .kicker { margin-bottom: 8px; }
.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.contact-copy .visiting-card { margin-top: 28px; }
.contact-form h3 { margin-bottom: 8px; font-size: 22px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; flex: 0 0 auto; }
.form-consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.consultation-section {
  padding: 88px 0 112px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--gold) 7%, transparent), transparent 55%),
    var(--bg);
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 400px);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.consultation-main h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.consultation-lead {
  max-width: 38rem;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.consultation-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.consultation-highlights li {
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  background: color-mix(in srgb, var(--gold) 6%, transparent);
  color: var(--heading);
  font: 500 13px Manrope, system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.consultation-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.consultation-direct {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.consultation-direct a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consultation-aside {
  display: grid;
  gap: 16px;
}

.consultation-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--card-shadow, none);
}

.consultation-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.consultation-steps li:last-child { border-bottom: 0; }

.consultation-step-index {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  color: var(--gold);
  font: 600 12px "JetBrains Mono", ui-monospace, monospace;
}

.consultation-steps h3 {
  margin: 0 0 4px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 600;
}

.consultation-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.visiting-card {
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 92%, transparent);
}

.visiting-card-brand {
  margin: 0;
  color: var(--gold);
  font: 500 10px "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.visiting-card h3 {
  margin: 12px 0 4px;
  color: var(--heading);
  font-size: 1.125rem;
  line-height: 1.25;
}

.visiting-card-role {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.visiting-card-meta {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.visiting-card-cta {
  margin-top: 16px;
}

.readmore-body.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.readmore-trigger {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  color: var(--gold);
  font: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background-size .25s ease, opacity .2s ease;
}
.readmore-trigger:hover {
  opacity: .9;
  background-size: 100% 1px;
}

.readmore-modal {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  width: auto;
  max-width: none;
  margin: 0;
}
.readmore-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 20px 16px;
  overflow: auto;
}
.readmore-modal::backdrop {
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .32s ease, display .32s allow-discrete, overlay .32s allow-discrete;
}
.readmore-modal[open]::backdrop,
.readmore-modal.is-open::backdrop { opacity: 1; }
@starting-style {
  .readmore-modal[open]::backdrop { opacity: 0; }
}
.readmore-modal-panel {
  position: relative;
  width: min(560px, 100%);
  margin: auto;
  padding: 28px 24px;
  max-height: min(80vh, 640px);
  overflow: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(22px) scale(.96);
  transition: opacity .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
}
.readmore-modal.is-open .readmore-modal-panel {
  opacity: 1;
  transform: none;
}
.readmore-modal.is-closing .readmore-modal-panel {
  opacity: 0;
  transform: translateY(12px) scale(.98);
}
.readmore-modal-panel h3 {
  margin: 0 36px 16px 0;
  font-size: 22px;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease .06s, transform .32s cubic-bezier(.22, 1, .36, 1) .06s;
}
.readmore-modal-content {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .32s ease .12s, transform .36s cubic-bezier(.22, 1, .36, 1) .12s;
}
.readmore-modal.is-open .readmore-modal-panel h3,
.readmore-modal.is-open .readmore-modal-content {
  opacity: 1;
  transform: none;
}
.readmore-modal-content .is-clamped,
.readmore-modal-content .readmore-body {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.readmore-modal-content .list { margin-top: 12px; }
@media (prefers-reduced-motion: reduce) {
  .readmore-modal::backdrop,
  .readmore-modal-panel,
  .readmore-modal-panel h3,
  .readmore-modal-content,
  .readmore-trigger {
    transition: none;
    transform: none;
  }
  .readmore-modal[open] .readmore-modal-panel,
  .readmore-modal[open] .readmore-modal-panel h3,
  .readmore-modal[open] .readmore-modal-content { opacity: 1; }
}
.readmore-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.readmore-close:hover {
  border-color: color-mix(in srgb, var(--gold) 55%, transparent);
  transform: rotate(90deg);
}

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 16px; }
.featured-service { margin-bottom: 16px; border-left: 3px solid var(--gold); }
.featured-service h3 { margin-bottom: 12px; font-size: 26px; }
.spec-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 32px; }
.spec-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: 16px; }
.spec-item { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); color: var(--heading); font-size: 14px; }
.service-card h3 { margin-bottom: 14px; }
.service-card > .muted { margin-bottom: 12px; }
.dot { width: 6px; height: 6px; flex-shrink: 0; margin-top: 7px; border-radius: 50%; background: var(--gold); }
.list { display: grid; gap: 10px; color: var(--muted); font-size: 14px; list-style: none; }
.list li { display: flex; align-items: flex-start; gap: 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { padding: 4px 8px; border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent); color: var(--gold); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.founder { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 24px; }
.founder picture, .founder > img { min-width: 0; max-width: 100%; }
.founder picture { display: block; height: 100%; }
.founder img { width: 100%; height: 100%; min-height: 480px; max-width: 100%; border: 1px solid var(--line); object-fit: cover; }
.founder-copy > h3 { color: var(--gold); font-size: 36px; }
.founder-role { margin: 6px 0 20px; color: var(--muted); }
.founder-bio { margin-bottom: 8px; color: var(--heading); font-size: 18px; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: 12px; margin: 28px 0; }
.pillar { padding: 20px 12px; border: 1px solid var(--line); background: var(--soft-bg); text-align: center; }
.pillar h4 { margin: 8px 0; color: var(--gold); font: 500 12px Manrope, system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.pillar p { color: var(--muted); font-size: 12px; }
.row { display: flex; flex-wrap: wrap; gap: 10px; }

.project h3 { margin-bottom: 8px; font-size: 18px; }
.project .cat, .knowledge-list .cat { margin-bottom: 8px; color: var(--gold); font: 500 10px Manrope, system-ui, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.project > p:not(.cat) { flex: 1; color: var(--muted); font-size: 14px; }
.more { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--gold); font: 500 11px Manrope, system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }

.shop { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 16px; }
.shop h3 { margin: 8px 0 20px; font-size: 22px; text-align: center; }
.shop .list { flex: 1; margin-bottom: 24px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 12px; margin-top: 20px; }
.step { display: flex; align-items: center; gap: 12px; }
.num { display: grid; width: 40px; height: 40px; flex-shrink: 0; place-items: center; border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent); color: var(--gold); }
.step h3 { color: var(--heading); font: 500 12px Manrope, system-ui, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.step p { color: var(--muted); font-size: 12px; }

.knowledge { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 16px; }
.knowledge-list > p:not(.cat) { margin: 12px 0; color: var(--heading); }
.knowledge-list strong { color: var(--gold); }
.knowledge-list span { color: var(--muted); font-size: 13px; }

.contact-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 32px; align-items: start; }
.contact-copy h3 { margin-bottom: 8px; font-size: 22px; }
.contact-lead { max-width: 560px; color: var(--muted); font-size: 15px; }
.contact-nap {
  margin-top: 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
.contact-nap a { color: var(--gold); }
.contact-form { position: relative; display: grid; gap: 12px; }
.form-field { display: grid; gap: 8px; }
.form-field label {
  color: var(--gold);
  font: 500 11px Manrope, system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--soft-bg);
  color: var(--heading);
  font: inherit;
  padding: 10px 12px;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:hover, .form-field textarea:hover { border-color: color-mix(in srgb, var(--gold) 60%, transparent); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); outline: 1px solid var(--gold); }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { color: var(--muted); font-size: 12px; }
.form-notice a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 1.5em; font-size: 14px; }
.form-status[data-state="success"] { color: #5dbb7a; }
.form-status[data-state="error"] { color: #e27b72; }

footer { padding: 28px 0; border-top: 1px solid var(--line); background: var(--footer-bg); }
.foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.foot .logo-image { height: 22px; }
.foot nav { display: flex; flex-wrap: wrap; gap: 20px; }
.foot nav a, .foot small, .foot button { color: var(--muted); font-size: 12px; }
.foot nav a:hover, .foot button:hover { color: var(--gold); }
.foot button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--card-shadow, none);
}
.faq-item h3 { margin-bottom: 8px; font-size: 18px; }
.faq-item p { color: var(--muted); font-size: 15px; }
.article-body { margin-top: 10px; color: var(--muted); font-size: 14px; }

.cookie-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--nav-bg) 94%, transparent);
  backdrop-filter: blur(20px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .22);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}
.cookie-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 11px 16px;
  font-size: 11px;
}

html[data-theme="light"] .hero .lead { color: var(--text); }
html[data-theme="light"] .kicker,
html[data-theme="light"] .hero h1 em { color: var(--gold); }

@media (prefers-reduced-motion: no-preference) {
  body, .nav, .card, footer, .cookie-bar { transition: color .2s, background-color .2s, border-color .2s; }
}
@media (max-width: 980px) {
  .chips, .grid-3, .shop, .steps, .founder, .spec-top, .spec-items, .pillars, .knowledge, .contact-layout { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: grid; }
  .nav-links {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0,0,0,.24);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .nav-links .nav-mobile-consult { display: block; color: var(--gold); }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1280px); }
  .chips, .grid-3, .shop, .steps, .founder, .spec-top, .spec-items, .pillars, .knowledge, .contact-layout, .consultation-layout { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding-top: 96px; text-align: left; }
  .hero .wrap { text-align: left; }
  .hero .lead { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .nav-cta { display: none; }
  .btn { width: 100%; padding-inline: 18px; }
  .founder img { min-height: 360px; }
  .contact-layout { gap: 24px; }
  .contact-section { padding: 64px 0 96px; }
  .consultation-section { padding: 64px 0 96px; }
  .consultation-actions .btn { width: 100%; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1 1 auto; }
}
