/* ── LOKALE SCHRIFTEN (kein Google-Server, DSGVO-konform) ── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans-italic.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #ece8e1;   /* warmes Steingrau – wie der Logo-Hintergrund */
  --surface:   #f4f1ec;   /* helle Bänder zwischen Sektionen */
  --card:      #ffffff;   /* erhöhte Karten */
  --border:    rgba(22,20,15,0.12);
  --ink:       #16140f;   /* das Logo-Schwarz (warm) */
  --accent:    #16140f;   /* Schwarz ist die Akzent-/Aktionsfarbe */
  --accent-2:  #4a4641;   /* warmes Anthrazit für Verläufe */
  --soft:      rgba(22,20,15,0.05);
  --green:     #1faf54;   /* WhatsApp */
  --text:      #16140f;
  --muted:     #756f66;   /* warmes Mittelgrau */
  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-body:   'DM Sans', sans-serif;
  --radius:    14px;
  --trans:     0.4s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 160px;
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
  mix-blend-mode: multiply;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(236,232,225,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: .01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { font-style: italic; font-weight: 500; }
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: #f4f1ec !important;
  padding: .5rem 1.3rem;
  border-radius: 6px;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  transition: background var(--trans), transform var(--trans) !important;
}
.nav-cta:hover { background: #34302a !important; color: #fff !important; transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); border-radius: 4px; transition: var(--trans); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 72% 35%, rgba(22,20,15,.05) 0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 15% 85%, rgba(22,20,15,.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(22,20,15,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,20,15,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { position: relative; max-width: 760px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: .35rem 1rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeUp .6s ease both;
}

h1 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  animation: fadeUp .7s .1s ease both;
}
h1 em { font-style: italic; font-weight: 500; color: var(--accent-2); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeUp .7s .2s ease both;
  font-weight: 300;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary, .btn-secondary, .btn-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.9rem;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans), color var(--trans);
}
.btn-primary {
  background: var(--ink);
  color: #f4f1ec;
  box-shadow: 0 6px 24px rgba(22,20,15,.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(22,20,15,.28); background: #34302a; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-wa {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(31,175,84,.28);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(31,175,84,.4); }

/* floating stats */
.hero-stats {
  position: absolute; right: 5%; bottom: 12%;
  display: flex; flex-direction: column; gap: 1rem;
  animation: fadeLeft .8s .4s ease both;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.7rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(22,20,15,.06);
}
.stat-num {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--ink);
  line-height: 1;
}
.stat-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-top: .3rem; }

/* ── SECTION COMMON ── */
section { padding: 6.5rem 5%; }

.section-label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
#leistungen { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.service-category:hover {
  transform: translateY(-6px);
  border-color: rgba(22,20,15,.28);
  box-shadow: 0 24px 60px rgba(22,20,15,.12);
}

.cat-header {
  padding: 1.9rem 2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cat-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--soft), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.service-category:hover .cat-header::after { opacity: 1; }

.cat-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  background: var(--soft);
  border: 1px solid var(--border);
  filter: grayscale(1);
}

.cat-title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0;
  color: var(--ink);
}
.cat-subtitle { font-size: .82rem; color: var(--muted); }

.cat-items { padding: 1.6rem 2rem; list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.cat-items li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem;
  color: var(--text);
  font-weight: 400;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}
.cat-items li:last-child { border-bottom: none; padding-bottom: 0; }
.cat-items li::before {
  content: '—';
  font-weight: 600;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .05rem;
  color: var(--ink);
}

/* zentrierter Sektionskopf */
.section-head-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-head-center .section-desc { margin: 0 auto; }

/* ── WHY US ── */
#vorteile { background: var(--bg); }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.adv-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem 1.7rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.adv-item:hover { border-color: rgba(22,20,15,.28); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(22,20,15,.08); }
.adv-icon { font-size: 1.5rem; flex-shrink: 0; filter: grayscale(1); }
.adv-title { font-weight: 600; margin-bottom: .25rem; }
.adv-desc { font-size: .88rem; color: var(--muted); }

/* ── ABLAUF / 3 SCHRITTE ── */
#ablauf { background: var(--surface); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 2rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(22,20,15,.08); border-color: rgba(22,20,15,.22); }
.step-num {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--ink);
  opacity: .18;
  margin-bottom: .8rem;
}
.step-title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.step-desc { font-size: .92rem; color: var(--muted); }

/* ── EINSATZGEBIET ── */
#einsatzgebiet { background: var(--bg); }

.area-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.area-visual { display: flex; align-items: center; justify-content: center; }
.area-rings {
  position: relative;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.area-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(22,20,15,.16);
}
.area-ring:nth-child(1) { width: 280px; height: 280px; }
.area-ring:nth-child(2) { width: 190px; height: 190px; border-style: dashed; border-color: rgba(22,20,15,.2); }
.area-ring:nth-child(3) { width: 100px; height: 100px; }
.area-center {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: #f4f1ec;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.05rem;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(22,20,15,.25);
}
.area-center::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(22,20,15,.25);
  animation: areaPulse 3s ease-out infinite;
}
@keyframes areaPulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0;  }
}

.area-lead { font-weight: 600; margin-bottom: 1.2rem; color: var(--ink); }
.city-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.3rem; }
.city-tag {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .88rem;
  color: var(--text);
  transition: border-color var(--trans), transform var(--trans);
}
.city-tag:hover { border-color: rgba(22,20,15,.3); transform: translateY(-2px); }
.city-main {
  background: var(--ink);
  color: #f4f1ec;
  border-color: var(--ink);
  font-weight: 600;
}
.area-note { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── CONTACT ── */
#kontakt { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  display: flex; gap: 1.2rem; align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.contact-card:hover { border-color: rgba(22,20,15,.28); transform: translateX(4px); box-shadow: 0 12px 32px rgba(22,20,15,.08); }

.cc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  background: var(--soft);
  border: 1px solid var(--border);
  filter: grayscale(1);
}
.cc-wa  { filter: none; background: rgba(31,175,84,.12); }

.cc-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-bottom: .15rem; }
.cc-value { font-weight: 600; font-size: 1rem; }

.wa-big-btn {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.15rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(31,175,84,.28);
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-big-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 38px rgba(31,175,84,.4); }
.wa-big-btn svg { width: 26px; height: 26px; }

/* ── FORM ── */
form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 16px 50px rgba(22,20,15,.06);
}

.form-title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  margin-bottom: -.4rem;
}
.form-subtitle {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: .4rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .95rem;
  padding: .85rem 1.1rem;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
  outline: none;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .55; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22,20,15,.08);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: #fff; }

.submit-btn {
  background: var(--ink);
  color: #f4f1ec;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 1.05rem;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.submit-btn:hover { background: #34302a; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(22,20,15,.22); }
.submit-btn:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }

/* Status-Meldungen nach dem Absenden */
.alert {
  border-radius: 9px;
  padding: .9rem 1.1rem;
  font-size: .92rem;
  font-weight: 500;
  border: 1px solid transparent;
}
.alert-success {
  background: rgba(31,175,84,.1);
  border-color: rgba(31,175,84,.35);
  color: #157a3a;
}
.alert-error {
  background: rgba(190,60,40,.08);
  border-color: rgba(190,60,40,.3);
  color: #a83320;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.8rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--ff-head); font-weight: 700; font-size: 1.5rem; letter-spacing: .01em; }
.footer-logo span { font-style: italic; font-weight: 500; }
.footer-logo img { height: 34px; width: auto; display: block; }
footer p { font-size: .85rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .82rem; color: var(--muted); text-decoration: none; letter-spacing: .04em; transition: color var(--trans); }
.footer-links a:hover { color: var(--ink); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; gap: 2.5rem; justify-items: center; }
  .area-cities { text-align: center; }
  .city-tags { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 62px; left: 0; right: 0;
    background: rgba(236,232,225,.98);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 1.2rem;
    backdrop-filter: blur(18px);
  }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
}

/* ── LEGAL ── */
.legal-hero {
  padding: 9rem 5% 4rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.legal-hero .section-label { margin-bottom: .5rem; }
.legal-hero h1 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 0;
  animation: none;
}

.legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(22,20,15,.04);
}
.legal-card h2 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 1rem;
}
.legal-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.2rem 0 .4rem;
  color: var(--text);
}
.legal-card p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: .6rem;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-card a:hover { color: var(--accent-2); }
.legal-card ul {
  list-style: none;
  padding: 0;
  margin: .4rem 0 .8rem;
}
.legal-card ul li {
  font-size: .95rem;
  color: var(--muted);
  padding: .3rem 0 .3rem 1.4rem;
  position: relative;
  line-height: 1.7;
}
.legal-card ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--ink);
  font-size: .85rem;
}

.placeholder {
  background: var(--soft);
  border: 1px dashed rgba(22,20,15,.35);
  border-radius: 6px;
  padding: .15rem .5rem;
  color: var(--ink);
  font-size: .85rem;
}

.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  margin-bottom: 2rem;
}
.toc h2 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: .8rem;
}
.toc ol {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.toc ol li { font-size: .9rem; color: var(--muted); }
.toc ol a { color: var(--ink); text-decoration: none; }
.toc ol a:hover { text-decoration: underline; text-underline-offset: 2px; }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 2rem;
  transition: color var(--trans);
}
.back-btn:hover { color: var(--ink); }

.update-badge {
  display: inline-block;
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .25rem .8rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

address { font-style: normal; line-height: 1.9; color: var(--muted); }
address strong { color: var(--ink); }

/* Mobile menu toggle */
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }