/* =========================================================
   spass-telefon.com — Luxury Editorial Theme
   Red / Black / Ivory
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Colors */
  --ink:        #0b0708;
  --ink-2:      #14090c;
  --ink-3:      #1e1114;
  --ink-4:      #2a1a1e;
  --line:       rgba(255,240,235,.09);
  --line-2:     rgba(255,240,235,.16);

  --ivory:      #f6efe6;
  --ivory-2:    #ece2d3;
  --ivory-dim:  #b8ada0;
  --muted:      #8a7f74;

  --red:        #c81a2b;
  --red-2:      #e63347;
  --red-deep:   #7a0d18;
  --red-glow:   #ff3d54;
  --gold:       #d4a86a;

  /* status */
  --live:       #22c55e;
  --busy:       #f59e0b;
  --off:        #6b7280;

  /* Type */
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1360px;
  --gap: 28px;
  --radius: 2px;
  --radius-lg: 6px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--ivory);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

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

/* --- Header / Nav --- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,7,8,.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
/* --- Brand / Logo --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1;
  transition: opacity .2s;
}
.brand:hover { opacity: .85; }

.brand .brand-mark {
  position: relative;
  display: inline-flex;
  width: 38px; height: 38px;
  color: var(--red-2);
  flex-shrink: 0;
}
.brand .brand-mark svg { width: 100%; height: 100%; display: block; }
.brand .brand-pulse {
  position: absolute;
  top: 4px; right: 3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 10px var(--red-glow, rgba(230,51,71,.7));
  animation: brand-pulse 2.2s ease-in-out infinite;
}
@keyframes brand-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.brand .brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.brand .brand-word-main {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand .brand-sep {
  color: var(--red-2);
  font-style: italic;
  font-weight: 400;
  margin: 0 1px;
  display: inline-block;
  transform: translateY(-2px);
}
.brand .brand-tld {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--ivory-dim);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: 3px;
}

/* Small variant (footer, admin login) */
.brand.brand-sm .brand-mark { width: 30px; height: 30px; }
.brand.brand-sm .brand-word-main { font-size: 20px; }
.brand.brand-sm .brand-tld { font-size: 9px; }

/* Legacy fallback for old markup with .dot or bare em */
.brand .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 12px var(--red-glow, rgba(230,51,71,.7));
  display: inline-block;
  animation: brand-pulse 2s ease-in-out infinite;
}
.brand > em { color: var(--red-2); font-style: italic; }
.brand > small {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ivory-dim);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-left: 4px;
  font-weight: 400;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}
.main-nav > a {
  color: var(--ivory-dim);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.main-nav > a:hover, .main-nav > a.active {
  color: var(--ivory);
  border-bottom-color: var(--red-2);
}

/* Dropdown */
.nav-item.has-dropdown { position: relative; }
.nav-drop-trigger {
  background: none;
  border: 0;
  padding: 6px 0;
  color: var(--ivory-dim);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  transition: all .2s;
}
.nav-drop-trigger:hover,
.has-dropdown.active .nav-drop-trigger,
.has-dropdown.open .nav-drop-trigger {
  color: var(--ivory);
  border-bottom-color: var(--red-2);
}
.nav-drop-trigger .chev {
  font-size: 10px;
  transition: transform .2s;
  opacity: .7;
}
.has-dropdown.open .nav-drop-trigger .chev { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, transform .2s, visibility .18s;
  z-index: 50;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.has-dropdown.open .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--ink-2);
  border-top: 1px solid var(--line-2);
  border-left: 1px solid var(--line-2);
}
.nav-dropdown a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--ivory);
  border: 1px solid transparent;
  transition: all .18s;
}
.nav-dropdown a:hover {
  border-color: var(--red-deep);
  background: rgba(230,51,71,.06);
}
.nav-dropdown a.d-cta {
  background: rgba(230,51,71,.08);
  border-color: rgba(230,51,71,.4);
}
.nav-dropdown a.d-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }
.nav-dropdown .d-title {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -.005em;
  line-height: 1.2;
}
.nav-dropdown .d-sub {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.nav-dropdown a:hover .d-sub { color: var(--ivory-dim); }
.nav-dropdown a.d-cta:hover .d-sub { color: #fff; opacity: .85; }

.nav-cta {
  display: flex; gap: 12px; align-items: center;
}
.hotline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--red-2);
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}
.hotline b { font-style: normal; font-weight: 700; letter-spacing: -.01em; }

/* --- Hamburger Button --- */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  width: 42px; height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color .2s;
}
.nav-toggle:hover { border-color: var(--red-2); }
.nav-toggle .bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--ivory);
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 35;
  opacity: 0;
  transition: opacity .25s;
}
.nav-open .nav-backdrop {
  display: block;
  opacity: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ivory);
  border-radius: var(--radius);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn:hover { border-color: var(--ivory); }
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-2);
  border-color: var(--red-2);
  box-shadow: 0 8px 32px -8px var(--red-glow);
}
.btn-ghost { background: transparent; }
.btn-danger {
  background: transparent;
  border-color: rgba(230,51,71,.4);
  color: var(--red-2);
}
.btn-danger:hover { background: var(--red-deep); color: #fff; border-color: var(--red-deep); }
.btn-small { padding: 8px 14px; font-size: 10px; }
.btn-large { padding: 16px 32px; font-size: 13px; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

/* --- Typography helpers --- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-2);
  font-weight: 600;
}
.display {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1;
}
h1.display { font-size: clamp(48px, 8vw, 128px); }
h2.display { font-size: clamp(36px, 5vw, 72px); }
h3.display { font-size: clamp(24px, 3vw, 40px); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* --- Layout --- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 90px 0; }
.section-tight { padding: 50px 0; }
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.rule-red {
  height: 3px;
  width: 60px;
  background: var(--red-2);
  border: 0;
  margin: 0 0 24px;
}

/* --- Girl Card --- */
.girl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}
@media (max-width: 1100px) {
  .girl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .girl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .girl-grid { grid-template-columns: 1fr; }
}
.girl-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .35s ease;
  cursor: pointer;
}
.girl-card:hover {
  border-color: rgba(230,51,71,.5);
  transform: translateY(-4px);
}
.girl-card:hover .girl-photo img { transform: scale(1.05); }
.girl-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--ink-3), var(--ink-4));
}
.girl-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.girl-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(11,7,8,.85);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  border: 1px solid var(--line-2);
}
.girl-badge.hot { background: var(--red); color: #fff; border-color: var(--red); }
.girl-badge.new { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.girl-status {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(11,7,8,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
}
.girl-status .s-dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.girl-status.live .s-dot { background: var(--live); box-shadow: 0 0 8px var(--live); }
.girl-status.live { color: var(--live); }
.girl-status.busy .s-dot { background: var(--busy); }
.girl-status.busy { color: var(--busy); }
.girl-status.off .s-dot { background: var(--off); }
.girl-status.off { color: var(--muted); }

.girl-body {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--line);
}
.girl-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 6px;
}
.girl-name .name-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.girl-name em {
  font-style: normal;
  font-size: 15px;
  color: var(--ivory);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
  opacity: 1;
  font-family: var(--sans);
}
.girl-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory);
  font-size: 15px;
  margin: 0 0 14px;
  min-height: 2.4em;
  opacity: .95;
}
.girl-meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.girl-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin: 0 0 12px;
}
.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--line-2);
  color: var(--ivory-dim);
}
.tag.red { color: var(--red-2); border-color: rgba(230,51,71,.35); }
.girl-price {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  text-align: center;
}
.girl-price small { font-family: var(--sans); font-size: 10px; color: var(--muted); letter-spacing: .1em; font-weight: 400; }
.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}
.girl-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--red-2);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 6px;
  border: 1px solid rgba(230,51,71,.35);
  background: rgba(230,51,71,.06);
  transition: all .18s;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.girl-phone:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 2px;
}
.girl-phone:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* --- Placeholder image --- */
.ph-image {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.ph-image svg { width: 100%; height: 100%; display: block; }

/* --- Forms --- */
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row input[type="text"],
.form-row input[type="number"],
.form-row input[type="password"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="datetime-local"],
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-2);
  color: var(--ivory);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  border-radius: var(--radius);
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--red-2);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row .hint {
  font-size: 12px; color: var(--muted); margin-top: 6px;
  font-family: var(--sans);
  text-transform: none; letter-spacing: 0;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  background: var(--ink-2);
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-2);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 13px; }
.footer-grid a { color: var(--ivory-dim); }
.footer-grid a:hover { color: var(--ivory); }
.footer-legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: .1em;
}

/* --- Age Gate --- */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(4,2,3,.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate-box {
  max-width: 520px;
  text-align: center;
  padding: 60px 50px;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
}
.age-gate-box .eighteen {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 900;
  color: var(--red-2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
}
.age-gate-box h2 {
  font-family: var(--serif);
  font-size: 36px;
  margin: 0 0 16px;
  font-weight: 700;
}
.age-gate-box p {
  color: var(--ivory-dim);
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.6;
}
.age-gate-actions { display: flex; gap: 12px; justify-content: center; }

/* --- Sidebar banner --- */
.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
}
.sidebar-banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-banner {
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
  transition: all .3s;
}
.sidebar-banner:hover { border-color: var(--red-2); transform: translateY(-2px); }
.sidebar-banner img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-banner .banner-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(11,7,8,.92));
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}
.sidebar-banner .banner-cap small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--red-2);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}
.sidebar-banner .partner-tag {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(11,7,8,.7);
  color: var(--ivory-dim);
  border: 1px solid var(--line-2);
}
.sidebar-banner.premium .partner-tag {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  padding: 14px 22px;
  background: var(--ink-3);
  border: 1px solid var(--red-2);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 500;
  animation: slideIn .3s ease;
}
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-red { color: var(--red-2); }
.text-muted { color: var(--muted); }
.text-dim { color: var(--ivory-dim); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }
.between { justify-content: space-between; }

/* --- Tablet/Mobile Header --- */
@media (max-width: 1100px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 14px 20px;
  }
  .nav-toggle { display: inline-flex; order: 1; }
  .brand { order: 2; justify-self: center; }
  .nav-cta { order: 3; }
  .hotline { font-size: 15px; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(360px, 88vw);
    background: var(--ink-2);
    border-left: 1px solid var(--line-2);
    padding: 88px 24px 32px;
    z-index: 45;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(105%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    font-size: 15px;
  }
  .nav-open .main-nav { transform: translateX(0); }

  .main-nav > a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: .12em;
  }
  .main-nav > a.active {
    color: var(--red-2);
    border-bottom-color: var(--line);
  }

  /* Mobile Dropdown: als Accordion inline */
  .nav-item.has-dropdown { border-bottom: 1px solid var(--line); }
  .nav-drop-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 0;
    letter-spacing: .12em;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(230,51,71,.04);
    border: 0;
    padding: 4px 0 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    display: block;
  }
  .nav-dropdown::before { display: none; }
  .has-dropdown.open .nav-dropdown {
    transform: none;
    max-height: 600px;
  }
  .nav-dropdown a {
    padding: 12px 16px;
    margin: 2px 0;
  }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .with-sidebar { grid-template-columns: 1fr; }
  .sidebar-banners { flex-direction: row; overflow-x: auto; }
  .sidebar-banner { min-width: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hotline { font-size: 13px; }
}
@media (max-width: 420px) {
  /* Auf sehr kleinen Screens nur ☎ anzeigen */
  .hotline b { display: none; }
  .hotline { font-size: 22px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand .brand-word-main { font-size: 18px; }
  .brand .brand-tld { display: none; }
  .brand .brand-mark { width: 32px; height: 32px; }
}

/* Body-Lock wenn Menü offen */
body.nav-open { overflow: hidden; }
