/* ─────────────────────────────────────────────────────────────────────
   Dirk Fellhauer — Markenstrategie
   Was wirkt, bleibt.
───────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Cardo:ital,wght@0,400;1,400&family=Josefin+Sans:wght@200;300;400&display=swap');

/* Tokens — Dark (default) */
:root {
  --bg:          #16140F;
  --bg-elev:     #1A1812;
  --text:        #E8E2D6;
  --text-soft:   #9A9080;
  --text-faint:  #4D4639;
  --gold:        #C4A96A;
  --gold-dim:    rgba(196, 169, 106, 0.75);
  --line:        rgba(196, 169, 106, 0.16);
  --hairline:    rgba(232, 226, 214, 0.10);

  --serif:  'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:   'Josefin Sans', ui-sans-serif, system-ui, sans-serif;

  --gutter: clamp(24px, 4vw, 64px);
  --measure: 62ch;
  --rail: 1320px;

  --hero-scale: 1;
  --claim-justify: center; /* top | center | bottom */
}

[data-theme="light"] {
  --bg:         #FAF8F4;
  --bg-elev:    #F4F0E7;
  --text:       #1C1A14;
  --text-soft:  #5A5448;
  --text-faint: #9A9080;
  --gold:       #7A5E28;
  --gold-dim:   rgba(122, 94, 40, 0.90);
  --line:       rgba(28, 26, 20, 0.12);
  --hairline:   rgba(28, 26, 20, 0.08);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 320ms ease, color 320ms ease;
  cursor: none; /* replaced by custom cursor */
}
@media (max-width: 720px) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

::selection { background: var(--gold); color: var(--bg); }

/* Type scale */
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--soft { color: var(--text-soft); }
.muted { color: var(--text-soft); }

/* h1,h2 use balance but it can mis-measure with web fonts in flex containers;
   plain wrap is safer for our editorial layout */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

p { margin: 0; max-width: var(--measure); text-wrap: pretty; }
p + p { margin-top: 1.1em; }

/* Layout */
.shell {
  width: 100%;
  max-width: var(--rail);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

main { display: block; }

/* ─────────────────────────────────────────────────────────────────────
   Logo lockup
───────────────────────────────────────────────────────────────────── */
.lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.lockup__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 18px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  padding-right: 0.36em; /* keep last letter from clipping with letter-spacing */
}
.lockup__line {
  display: block;
  width: 100%;
  height: 5px;
  overflow: visible;
}
.lockup__line path {
  fill: var(--gold);
}
.lockup__label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.lockup--lg .lockup__name { font-size: clamp(20px, 2.2vw, 30px); }
.lockup--lg .lockup__label { font-size: 12px; }
.lockup--lg .lockup__line { height: 7px; }

/* ─────────────────────────────────────────────────────────────────────
   Nav
───────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  min-height: 72px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 6px 0;
  transition: color 220ms ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after { transform: scaleX(1); background: var(--gold-dim); }

.nav__right { display: flex; align-items: center; gap: 18px; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 8px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.theme-toggle:hover { color: var(--text); border-color: var(--line); }
.theme-toggle__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--bg) inset;
}

.nav__burger { display: none; }

@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px var(--gutter) 28px;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--hairline); }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__link { display: block; padding: 18px 0; }
  .nav__burger {
    display: inline-flex; flex-direction: column; gap: 4px;
    width: 36px; height: 36px; align-items: center; justify-content: center;
    border: 1px solid var(--hairline); border-radius: 999px;
  }
  .nav__burger span { display: block; width: 14px; height: 1px; background: currentColor; }
  .theme-toggle span:not(.theme-toggle__dot) { display: none; }
  .theme-toggle { padding: 8px; }
}

/* ─────────────────────────────────────────────────────────────────────
   Hero / claim
───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: var(--claim-justify);
  min-height: calc((100vh - 72px) * var(--hero-scale));
  padding: clamp(60px, 9vh, 140px) 0 clamp(60px, 9vh, 120px);
}
.hero--centered { text-align: center; align-items: center; }
.hero--centered p { margin-left: auto; margin-right: auto; }

.hero__intro {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
[data-theme="light"] .hero__intro,
[data-theme="light"] .eyebrow:not(.eyebrow--soft),
[data-theme="light"] .lockup__label,
[data-theme="light"] .cred-list li > span:first-child,
[data-theme="light"] .cta-link {
  color: #4A3711;
  font-weight: 500;
}

.claim {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 10vw, 156px);
  line-height: 0.95;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
.claim .period { color: var(--gold); font-style: italic; }

.hero__lede {
  margin-top: clamp(32px, 5vh, 56px);
  max-width: 56ch;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--text);
  font-weight: 300;
}

.hero--asym {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.hero--asym .hero__claim-col { display: flex; flex-direction: column; gap: 24px; }
.hero--asym .hero__lede {
  margin-top: 0;
  padding-bottom: 12px;
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 3vh, 36px);
}
@media (max-width: 900px) {
  .hero--asym { grid-template-columns: 1fr; gap: 36px; }
  .hero--asym .hero__lede { padding-bottom: 0; }
}

/* gold draw-on-load line for hero */
.hero__draw {
  display: block;
  width: min(560px, 78%);
  height: 6px;
  margin: 0;
  overflow: visible;
}
.hero--centered .hero__draw { margin-left: auto; margin-right: auto; }
.hero__draw path { fill: var(--gold); }
.hero__draw .reveal-mask {
  fill: var(--bg);
  transform-origin: right center;
  animation: drawLine 1600ms cubic-bezier(.7,.05,.25,1) 240ms both;
}
@keyframes drawLine {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* ─────────────────────────────────────────────────────────────────────
   Sections, rule, eyebrows
───────────────────────────────────────────────────────────────────── */
section { padding: clamp(72px, 12vh, 140px) 0; }
section + section { border-top: 1px solid var(--hairline); }

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(48px, 8vh, 96px);
  align-items: start;
}
.section-head .eyebrow { padding-top: 8px; }
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.05;
  font-weight: 400;
  max-width: 18ch;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; }
}

.rule {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* Two-column body */
.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 16px; } }

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.55;
  letter-spacing: -0.003em;
  color: var(--text);
  max-width: 24ch;
  padding-bottom: 0.15em;
}
.lede em { font-style: italic; color: var(--gold); }
.lede--wide { max-width: 32ch; }

/* Services list */
.svc {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
}
.svc__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: baseline;
  padding: clamp(28px, 4vh, 44px) 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 360ms cubic-bezier(.2,.7,.2,1), color 360ms ease;
}
.svc__item:hover { padding-left: 12px; }
.svc__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.svc__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.svc__desc {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0;
  line-height: 1.7;
}
.svc__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .svc__item { grid-template-columns: 32px 1fr; }
  .svc__mark { display: none; }
}

/* Pull-quote / principle */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 64px) clamp(40px, 6vw, 96px);
}
@media (max-width: 720px) { .principles { grid-template-columns: 1fr; } }
.principle__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.principle__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  margin: 8px 0 10px;
}
.principle__body {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 44ch;
}

/* About — portrait */
.portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: saturate(0.85) contrast(0.96);
  transition: filter 600ms ease;
}
.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, color-mix(in oklab, var(--bg) 78%, transparent));
  pointer-events: none;
}
.portrait__corner {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.cred-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.cred-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14.5px;
  color: var(--text-soft);
}
.cred-list li > span:first-child {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 4px;
}
.cred-list strong { font-weight: 400; color: var(--text); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  display: block;
}
.contact-card .eyebrow { display: block; margin-bottom: 14px; }
.contact-card a, .contact-card span.line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  transition: color 220ms ease;
}
.contact-card a:hover { color: var(--gold); }

/* References — placeholder */
.placeholder {
  border: 1px solid var(--hairline);
  padding: clamp(48px, 8vh, 96px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  position: relative;
}
.placeholder__mark {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.placeholder__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.18;
  margin: 0;
  color: var(--text);
  width: 100%;
  max-width: 100%;
  padding-bottom: 0.1em;
}
.placeholder__title em { color: var(--gold); font-style: italic; }
.placeholder__body { color: var(--text-soft); max-width: 52ch; }

/* CTA */
.cta-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-dim);
  transition: gap 320ms cubic-bezier(.2,.7,.2,1), border-color 220ms ease;
}
.cta-link::after { content: '→'; font-size: 14px; line-height: 1; transform: translateY(-1px); }
.cta-link:hover { gap: 26px; border-color: var(--gold); }

/* Footer */
footer {
  border-top: 1px solid var(--hairline);
  padding: 56px 0 40px;
  margin-top: 80px;
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}
@media (max-width: 720px) { .footer__row { grid-template-columns: 1fr; gap: 32px; text-align: left; } }
.footer__center { text-align: center; }
.footer__center .claim-small {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.footer__center .claim-small .period { color: var(--gold); }
.footer__meta {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.footer__right { text-align: right; }
@media (max-width: 720px) { .footer__right { text-align: left; } }

/* Cursor gold trail */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: width 240ms ease, height 240ms ease, opacity 240ms ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 300ms cubic-bezier(.2,.7,.2,1), height 300ms cubic-bezier(.2,.7,.2,1), opacity 300ms ease, border-color 300ms ease;
  will-change: transform;
}
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0;
}
body.cursor-hover .cursor-ring { width: 44px; height: 44px; border-color: var(--gold); }
body.cursor-hover .cursor-dot { opacity: 0; }

@media (max-width: 720px) {
  .cursor-dot, .cursor-ring, .cursor-trail { display: none; }
}

/* Reveal class kept as marker (no-op opacity) — quiet by default */
.reveal { }

/* ─────────────────────────────────────────────────────────────────────
   Tweaks panel (custom brand styling)
───────────────────────────────────────────────────────────────────── */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 290px;
  background: rgba(22, 20, 15, 0.92);
  border: 1px solid rgba(196, 169, 106, 0.18);
  border-radius: 2px;
  color: #E8E2D6;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  display: none;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}
.tweaks.is-open { display: block; opacity: 1; transform: none; }
.tweaks__hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(196, 169, 106, 0.16);
}
.tweaks__hd-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #E8E2D6;
}
.tweaks__hd-sub {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #C4A96A;
}
.tweaks__close {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(232,226,214,0.5);
  font-size: 15px;
  cursor: pointer;
}
.tweaks__close:hover { color: #E8E2D6; }
.tweaks__body {
  padding: 12px 16px 18px;
  max-height: 72vh;
  overflow-y: auto;
}
.tweaks__row { display: flex; flex-direction: column; gap: 8px; padding: 12px 0; border-bottom: 1px solid rgba(232,226,214,0.06); }
.tweaks__row:last-child { border-bottom: 0; }
.tweaks__lbl {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,226,214,0.6);
}
.tweaks__val { color: #C4A96A; font-variant-numeric: tabular-nums; letter-spacing: 0.06em; }
.tweaks__seg {
  display: flex; gap: 0;
  border: 1px solid rgba(196, 169, 106, 0.22);
  border-radius: 1px;
  overflow: hidden;
}
.tweaks__seg button {
  flex: 1;
  padding: 9px 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,226,214,0.55);
  background: transparent;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
  border-right: 1px solid rgba(196, 169, 106, 0.18);
}
.tweaks__seg button:last-child { border-right: 0; }
.tweaks__seg button.is-on { background: rgba(196,169,106,0.18); color: #E8E2D6; }
.tweaks__seg button:hover:not(.is-on) { color: #E8E2D6; }
.tweaks__swatches { display: flex; gap: 10px; }
.tweaks__swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(232,226,214,0.18);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.tweaks__swatch.is-on { box-shadow: 0 0 0 1px var(--bg), 0 0 0 2px currentColor; }
.tweaks__swatch:hover { transform: scale(1.08); }
.tweaks__select {
  appearance: none;
  -webkit-appearance: none;
  padding: 9px 12px;
  font: inherit;
  font-size: 12px;
  background: transparent;
  color: #E8E2D6;
  border: 1px solid rgba(196, 169, 106, 0.22);
  border-radius: 1px;
}
.tweaks__select option { background: #16140F; color: #E8E2D6; }
.tweaks input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 1px; background: rgba(196,169,106,0.3); outline: none;
}
.tweaks input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: #C4A96A; cursor: pointer; border: 0;
}
.tweaks input[type="range"]::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: #C4A96A; cursor: pointer; border: 0;
}

/* Floating tweaks toggle (when no host) */
.tweaks-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 99998;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--bg-elev);
  color: var(--gold);
  font-size: 16px;
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.tweaks-fab.is-visible { display: inline-flex; }
.tweaks-fab:hover { border-color: var(--gold-dim); }

/* ── Stille Bewegung: Scroll-Reveals ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Prinzip-Karten Hover */
.principles .svc__item,
.principles > div,
.principle-wrap {
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.principles .svc__item:hover,
.principles > div:hover,
.principle-wrap:hover {
  border-color: rgba(168, 134, 73, 0.2);
  background: rgba(168, 134, 73, 0.04);
}
