/* ==========================================================================
   PROTOCOL ONE PROTECTION — Design System
   Midnight navy · Gold · Cormorant Garamond / EB Garamond / Montserrat
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Color — measured from brand PDFs (Flyer NEU / Firmenpräsentation) */
  --ink:        #02090F;
  --bg:         #030D15;
  --bg-elev:    #061120;
  --surface:    #091420;
  --line-gold:  rgba(201, 164, 92, 0.22);
  --line-soft:  rgba(201, 164, 92, 0.12);
  --gold:       #C9A45C;
  --gold-bright:#E8D3A2;
  --gold-deep:  #8F6F35;
  --cream:      #F2ECDF;
  --text:       #C9CFDA;
  --muted:      #8A92A6;
  --focus:      #E8D3A2;

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "EB Garamond", Georgia, serif;
  --font-label:   "Montserrat", "Segoe UI", sans-serif;

  --fs-hero:  clamp(2.75rem, 7vw, 5rem);
  --fs-h2:    clamp(2.1rem, 4.4vw, 3.4rem);
  --fs-h3:    clamp(1.45rem, 2.4vw, 1.9rem);
  --fs-body:  1.125rem;
  --fs-label: 0.75rem;

  /* Space (spacious luxury scale) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.75rem;
  --sp-4: 2.75rem;
  --sp-5: 4.5rem;
  --sp-6: clamp(6rem, 11vw, 10rem); /* 96–160px — Desktop im 120–160px-Band */

  --container: 72rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--gold); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--gold-bright); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: rgba(201, 164, 92, 0.28); color: var(--cream); }

/* ---------- Atmosphere: concentric rings + grain (from flyer) ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(201, 164, 92, 0.075), transparent 62%),
    radial-gradient(ellipse 65% 45% at 50% 108%, rgba(10, 24, 44, 0.55), transparent 70%),
    var(--bg);
}
.atmosphere::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: repeating-radial-gradient(
    circle at 50% 18%,
    transparent 0px,
    transparent 118px,
    rgba(201, 164, 92, 0.022) 119px,
    transparent 121px
  );
}
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.14;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.gold { color: var(--gold); }
.italic { font-style: italic; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 38%, var(--gold-bright) 58%, var(--gold) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.label {
  font-family: var(--font-label);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 46ch;
}

.aphorism {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  color: var(--gold);
  line-height: 1.45;
}

.en-echo {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.section { padding-block: var(--sp-6); position: relative; }
.section-tight { padding-block: var(--sp-5); }

.section-head { max-width: 56ch; margin-bottom: var(--sp-5); }
.section-head .label { display: block; margin-bottom: var(--sp-3); }
.section-head h2 { margin-bottom: var(--sp-2); }
.section-head .en-echo { margin-top: 0.6rem; display: block; }

.center { text-align: center; }
.center .section-head { margin-inline: auto; }
.center .lead { margin-inline: auto; }

/* Gold hairline with fade */
.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-gold) 18%, var(--line-gold) 82%, transparent);
}
.rule-short {
  width: 72px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  margin-block: var(--sp-3);
}
.center .rule-short, .vow .rule-short, .cta-panel .rule-short { margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 300ms var(--ease), border-color 300ms var(--ease), backdrop-filter 300ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(2, 9, 15, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: 1.1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--cream);
}
.brand img { width: 44px; height: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-label);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 0.28rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
}
.nav a {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.4rem 0.1rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 260ms var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-bright); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

/* Dropdown */
.has-menu { position: relative; }
.has-menu > button {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: 0;
  padding: 0.4rem 0.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 200ms var(--ease);
}
.has-menu > button:hover, .has-menu.open > button { color: var(--gold-bright); }
.has-menu > button svg { width: 9px; height: 9px; transition: transform 240ms var(--ease); }
.has-menu.open > button svg { transform: rotate(180deg); }

.menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 17rem;
  background: rgba(4, 13, 24, 0.97);
  border: 1px solid var(--line-soft);
  padding: 0.7rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}
.has-menu.open .menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.menu a {
  display: block;
  padding: 0.65rem 1.4rem;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}
.menu a:hover { background: rgba(201, 164, 92, 0.07); }
.menu a::after { content: none; }

.lang-switch {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  border: 1px solid var(--line-soft);
  padding: 0.42rem 0.85rem;
  transition: border-color 220ms var(--ease), color 220ms var(--ease);
}
.lang-switch:hover { border-color: var(--line-gold); color: var(--gold-bright); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-soft);
  padding: 0.6rem 0.7rem;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  transition: transform 260ms var(--ease), opacity 200ms;
}
.nav-toggle .bar + .bar { margin-top: 5px; }
.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; position: relative; z-index: 96; }
  .brand { position: relative; z-index: 96; }
  body.nav-open { overflow: hidden; }
  .nav-open .site-header {
    height: 100dvh;
    background: #02090F;
    border-bottom-color: transparent;
  }
  .nav {
    position: absolute;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    justify-content: center;
    gap: 2.1rem;
    background: #02090F;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms var(--ease), visibility 280ms;
  }
  .nav-open .nav { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a, .has-menu > button { font-size: 0.85rem; }
  .has-menu { text-align: center; }
  .menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    border: 0;
    margin-top: 0.8rem;
  }
  .has-menu.open .menu { display: block; transform: none; }
  .menu a { color: var(--muted); padding: 0.5rem 1rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 260ms var(--ease), border-color 260ms var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 55%, var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--ink); border-color: var(--gold-bright); }
.btn:hover::before { transform: scaleX(1); }

.btn-ghost {
  border-color: var(--line-soft);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: 9rem 5rem;
  position: relative;
}
.hero .label { margin-bottom: var(--sp-3); }
.hero-logo {
  width: clamp(120px, 16vw, 176px);
  margin-bottom: var(--sp-4);
  filter: drop-shadow(0 0 46px rgba(201, 164, 92, 0.28));
}
.hero h1 {
  max-width: 17ch;
  margin-inline: auto;
}
.hero .aphorism { margin-top: var(--sp-3); }
.hero .en-echo { margin-top: 1rem; }
.hero .btn-row { justify-content: center; margin-top: var(--sp-5); }

.scroll-hint {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  overflow: hidden;
}
.scroll-hint::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollhint 2.4s var(--ease) infinite;
}
@keyframes scrollhint {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* Page hero (subpages) */
.page-hero {
  padding-top: clamp(9rem, 16vw, 12.5rem);
  padding-bottom: var(--sp-5);
}
.page-hero .label { display: block; margin-bottom: var(--sp-3); }
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { margin-top: var(--sp-3); }

/* ---------- Service grid ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: 1.4rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.4rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
  gap: 1.4rem;
}

.card {
  position: relative;
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(7, 17, 30, 0.6), rgba(3, 11, 20, 0.25));
  padding: clamp(1.9rem, 3.4vw, 2.9rem);
  transition: border-color 320ms var(--ease), transform 320ms var(--ease), background 320ms var(--ease);
}
a.card { display: block; color: inherit; }
.card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
}
.card .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.3rem;
}
.card h3 { margin-bottom: 0.45rem; }
.card .en-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.85;
  display: block;
  margin-bottom: 1.1rem;
}
.card p { font-size: 1.02rem; color: var(--text); }
.card .card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.card .card-more svg { width: 22px; height: 8px; transition: transform 260ms var(--ease); }
.card:hover .card-more svg { transform: translateX(6px); }

/* ---------- Process (The Protocol) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--line-soft);
}
.process-step {
  padding: clamp(2.2rem, 4vw, 3.4rem) clamp(1.4rem, 2.6vw, 2.4rem);
  border-inline-start: 1px solid var(--line-soft);
}
.process-step:first-child { border-inline-start: 0; }
@media (max-width: 1024px) and (min-width: 641px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-inline-start: 0; }
  .process-step:nth-child(even) { border-inline-start: 1px solid var(--line-soft); }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-inline-start: 0; }
  .process-step + .process-step { border-top: 1px solid var(--line-soft); }
  .process-step:first-child { border-top: 0; }
}
.process-step .numeral {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 1.4rem;
}
.process-step h3 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.process-step p { font-size: 0.99rem; }
.process-step .en-echo { display: block; margin-top: 0.9rem; }

/* ---------- Credentials ---------- */
.cred {
  border-inline-start: 2px solid var(--gold-deep);
  padding: 0.4rem 0 0.4rem clamp(1.4rem, 2.6vw, 2.2rem);
}
.cred + .cred { margin-top: var(--sp-4); }
.cred h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--gold);
  letter-spacing: 0.06em;
}
.cred .cred-sub {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin: 0.6rem 0 1rem;
}

.disciplines {
  columns: 2;
  column-gap: 2.8rem;
  list-style: none;
  margin-top: var(--sp-3);
}
@media (max-width: 640px) { .disciplines { columns: 1; } }
.disciplines li {
  break-inside: avoid;
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  font-size: 1rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
}
.disciplines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Return (Zeit/Klarheit/Ruhe) ---------- */
.return-item { padding-block: var(--sp-3); border-top: 1px solid var(--line-soft); }
.return-item:last-child { border-bottom: 1px solid var(--line-soft); }
.return-item h3 {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.return-item p { max-width: 52ch; }

/* ---------- Vow (full-bleed statement) ---------- */
.vow {
  text-align: center;
  padding-block: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.vow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201, 164, 92, 0.06), transparent 70%);
  pointer-events: none;
}
.vow h2 { max-width: 16ch; margin-inline: auto; }
.vow .vow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0;
  margin-top: var(--sp-4);
  font-family: var(--font-label);
  font-size: clamp(0.72rem, 1.4vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
}
.vow .vow-list .sep { color: var(--gold); margin-inline: 1.4rem; }
.vow p { max-width: 52ch; margin: var(--sp-3) auto 0; }

/* ---------- Quote band ---------- */
.quote-band {
  text-align: center;
  padding-block: var(--sp-5);
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(7, 17, 30, 0.35), rgba(3, 11, 20, 0));
}
.quote-band .aphorism { max-width: 26ch; margin-inline: auto; }
.quote-band .en-echo { display: block; margin-top: 1rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.4rem;
  margin-top: var(--sp-4);
}
.contact-item {
  border: 1px solid var(--line-soft);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: border-color 300ms var(--ease);
}
.contact-item:hover { border-color: var(--line-gold); }
.contact-item .label { display: block; margin-bottom: 0.9rem; }
.contact-item a.big {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--cream);
}
.contact-item a.big:hover { color: var(--gold-bright); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding-block: var(--sp-5) var(--sp-4);
  background: linear-gradient(180deg, rgba(2, 9, 15, 0), rgba(2, 9, 15, 0.7));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 54px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.98rem; color: var(--muted); max-width: 34ch; }
.footer-col h3 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--text); font-size: 0.98rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(201, 164, 92, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Detail page blocks ---------- */
.detail-block { max-width: 62ch; }
.detail-block + .detail-block { margin-top: var(--sp-5); }
.detail-block h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: var(--sp-2); }
.detail-block ul { list-style: none; margin-top: var(--sp-2); }
.detail-block ul li {
  padding: 0.7rem 0 0.7rem 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
}
.detail-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* CTA panel */
.cta-panel {
  border: 1px solid var(--line-gold);
  padding: clamp(2.6rem, 5vw, 4.2rem);
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(201, 164, 92, 0.07), transparent 70%),
    linear-gradient(160deg, rgba(7, 17, 30, 0.5), rgba(3, 11, 20, 0.2));
}
.cta-panel h2 { max-width: 22ch; margin-inline: auto; }
.cta-panel .aphorism { font-size: clamp(1.1rem, 1.8vw, 1.3rem); margin-top: var(--sp-2); }
.cta-panel .btn-row { justify-content: center; margin-top: var(--sp-4); }

/* Legal pages */
.legal { max-width: 68ch; }
.legal h2 { font-size: 1.5rem; margin: var(--sp-4) 0 var(--sp-2); }
.legal p, .legal li { font-size: 1.02rem; color: var(--text); margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; }
.placeholder-note {
  border: 1px dashed var(--line-gold);
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--gold);
  margin-block: var(--sp-3);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint { display: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Utilities ---------- */
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 200;
  background: var(--ink);
  color: var(--gold-bright);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Conversion: header phone CTA ---------- */
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.52rem 1.1rem;
  color: var(--gold-bright);
  white-space: nowrap;
}
.nav .nav-cta::after { content: none; }
.nav-cta:hover { background: rgba(201, 164, 92, 0.1); color: var(--gold-bright); }

/* ---------- Conversion: sticky mobile call bar ---------- */
.call-bar { display: none; }
@media (max-width: 860px) {
  .call-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.95rem 1rem calc(0.95rem + env(safe-area-inset-bottom));
    background: rgba(2, 9, 15, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-gold);
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
  }
  .call-bar svg { width: 14px; height: 14px; flex: none; }
  body { padding-bottom: 58px; }
  body.nav-open .call-bar { display: none; }
}

/* ---------- Service hero with image ---------- */
.page-hero.has-image {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.hero-media {
  position: relative;
  margin: 0;
}
.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Einheitlicher Foto-Grade in Markenfarbe — ein Look für alle Bilder */
  background: linear-gradient(180deg, rgba(2, 9, 15, 0.12), rgba(2, 9, 15, 0.6));
  box-shadow: inset 0 0 0 1px rgba(201, 164, 92, 0.18);
  pointer-events: none;
}
.hero-media::before {
  content: "";
  position: absolute;
  top: 16px; right: -16px; bottom: -16px; left: 16px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
@media (max-width: 860px) {
  .page-hero.has-image { grid-template-columns: 1fr; }
  .hero-media::before { display: none; }
  .hero-media img { aspect-ratio: 16 / 11; }
}

/* ---------- Homepage image band ---------- */
.image-band { position: relative; }
.image-band img {
  width: 100%;
  height: clamp(300px, 46vw, 540px);
  object-fit: cover;
  display: block;
}
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 15, 0.12), rgba(2, 9, 15, 0.6)),
    linear-gradient(180deg, var(--bg) 0%, rgba(3, 13, 21, 0) 30%, rgba(3, 13, 21, 0) 65%, var(--bg) 100%);
  pointer-events: none;
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 520px) {
  .vow .vow-list { flex-direction: column; gap: 0.85rem; }
  .vow .vow-list .sep { display: none; }
}
.contact-item a.big { overflow-wrap: anywhere; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Gänsehaut: rising embers ---------- */
.embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.embers span {
  position: absolute;
  bottom: -3vh;
  border-radius: 50%;
  background: var(--gold-bright);
  filter: blur(1px);
  opacity: 0;
  animation-name: ember-rise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes ember-rise {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: var(--ember-max, 0.5); }
  60%  { opacity: calc(var(--ember-max, 0.5) * 0.45); }
  100% { transform: translateY(-108vh); opacity: 0; }
}
.embers span:nth-child(1) { left: 44%; width: 2px; height: 2px; animation-duration: 16.6s; animation-delay: 4.7s; --ember-max: 0.37; }
.embers span:nth-child(2) { left: 71%; width: 4px; height: 4px; animation-duration: 9.8s; animation-delay: 7.0s; --ember-max: 0.40; }
.embers span:nth-child(3) { left: 14%; width: 2px; height: 2px; animation-duration: 12.5s; animation-delay: 0.8s; --ember-max: 0.49; }
.embers span:nth-child(4) { left: 10%; width: 2px; height: 2px; animation-duration: 15.6s; animation-delay: 1.5s; --ember-max: 0.51; }
.embers span:nth-child(5) { left: 77%; width: 3px; height: 3px; animation-duration: 16.6s; animation-delay: 6.9s; --ember-max: 0.36; }
.embers span:nth-child(6) { left: 31%; width: 3px; height: 3px; animation-duration: 9.4s; animation-delay: 10.3s; --ember-max: 0.45; }
.embers span:nth-child(7) { left: 72%; width: 2px; height: 2px; animation-duration: 9.9s; animation-delay: 3.7s; --ember-max: 0.38; }
.embers span:nth-child(8) { left: 76%; width: 4px; height: 4px; animation-duration: 14.1s; animation-delay: 4.5s; --ember-max: 0.53; }
.embers span:nth-child(9) { left: 75%; width: 4px; height: 4px; animation-duration: 9.5s; animation-delay: 2.5s; --ember-max: 0.46; }
.embers span:nth-child(10) { left: 43%; width: 3px; height: 3px; animation-duration: 12.7s; animation-delay: 11.1s; --ember-max: 0.42; }
.embers span:nth-child(11) { left: 26%; width: 4px; height: 4px; animation-duration: 14.6s; animation-delay: 2.9s; --ember-max: 0.43; }
.embers span:nth-child(12) { left: 66%; width: 3px; height: 3px; animation-duration: 16.0s; animation-delay: 8.8s; --ember-max: 0.50; }

/* ---------- Gänsehaut: cinematic word reveal ---------- */
.word-reveal { font-size: var(--fs-hero); max-width: 17ch; margin-inline: auto; }
.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
  filter: blur(10px);
  transition: opacity 950ms var(--ease), transform 950ms var(--ease), filter 950ms var(--ease);
}
.word-reveal.go span { opacity: 1; transform: none; filter: none; }

/* Logo breathing glow */
.hero-logo { animation: logo-breathe 7s ease-in-out infinite; }
@keyframes logo-breathe {
  0%, 100% { filter: drop-shadow(0 0 42px rgba(201, 164, 92, 0.26)); }
  50%      { filter: drop-shadow(0 0 78px rgba(201, 164, 92, 0.5)); }
}

/* ---------- Gänsehaut: mirror section ---------- */
.mirror-inner {
  max-width: 46rem;
  position: relative;
  padding-left: clamp(1.8rem, 5vw, 3.2rem);
}
.mirror-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-deep), var(--gold) 55%, transparent);
  transform-origin: top;
}
@supports (animation-timeline: view()) {
  .mirror-inner::before {
    animation: mirror-grow linear both;
    animation-timeline: view();
    animation-range: entry 15% cover 65%;
  }
  @keyframes mirror-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
}
.mirror-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
  text-wrap: balance;
}
.mirror-line em { font-style: italic; color: var(--gold); }
.mirror-finale {
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  margin-top: clamp(4rem, 8vw, 6rem);
}
.mirror .btn-row { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* Slow cinematic reveal */
.reveal-slow {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1250ms var(--ease), transform 1250ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-slow.visible { opacity: 1; transform: none; }

/* ---------- Gänsehaut: gold shimmer ---------- */
.shimmer {
  background: linear-gradient(110deg, var(--gold-deep) 18%, var(--gold) 36%, #F6EBCB 50%, var(--gold) 64%, var(--gold-deep) 82%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-slide 5.5s ease-in-out infinite;
}
@keyframes shimmer-slide {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}

/* ---------- Gänsehaut: stats band ---------- */
.stats {
  border-block: 1px solid var(--line-soft);
  padding-block: clamp(3.2rem, 6vw, 5.5rem);
  background: linear-gradient(180deg, rgba(7, 17, 30, 0.35), rgba(3, 11, 20, 0));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10.5rem), 1fr));
  gap: 2.4rem 1.5rem;
  text-align: center;
}
.stat b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 5.4vw, 4.2rem);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat .stat-label {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .embers { display: none; }
  .reveal-slow { opacity: 1; transform: none; transition: none; }
  .word-reveal span { opacity: 1; transform: none; filter: none; transition: none; }
  .shimmer { animation: none; }
  .hero-logo { animation: none; }
}
