/* ============================================================================
   Ramsauer Radsport — Bauteile. Dunkel, nach Ramsauers eigener Markensprache.
   Vorfassung (hell): components.css.v3-hell-20260906
   ========================================================================== */

/* ------------------------------------------------------------------- Kopf */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(18, 18, 17, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--linie-fein);
}
.head-in { display: flex; align-items: center; gap: 16px; min-height: 76px; padding-block: 10px; }

.brand {
  display: flex; flex-direction: column; gap: 1px; justify-content: center;
  min-height: 44px; text-decoration: none; color: var(--schrift); margin-right: auto;
}
/* Kursiv-fett — Anlehnung an Ramsauers Schreibschrift-Logo auf dem Plakat. */
.brand-wort {
  white-space: nowrap; font-family: var(--display);
  font-size: clamp(1.36rem, 3vw, 1.72rem); font-variation-settings: "wght" 800;
  font-style: italic; letter-spacing: -.025em; line-height: 1; color: var(--gold);
}
.brand-zusatz {
  white-space: nowrap; font-size: .59rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--schrift-3); font-weight: 700; font-variant-numeric: tabular-nums;
}

.head-tel {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 44px; min-width: 44px; padding-inline: 10px;
  color: var(--schrift); text-decoration: none; font-weight: 600;
  font-size: .94rem; white-space: nowrap; border-radius: 999px;
}
.head-tel:hover { background: rgba(255,255,255,.08); color: var(--gold); }

/* ------------------------------------------------------------------ Menue */
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; padding: 10px 14px;
  color: var(--schrift-2); text-decoration: none; font-weight: 600; font-size: .94rem;
  border-radius: 999px;
}
.nav a:hover { color: var(--schrift); background: rgba(255,255,255,.08); }
.nav a[aria-current="page"] { color: var(--schrift); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold);
}

.nav-grp { position: relative; display: flex; align-items: center; }
.nav-more {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; margin-left: -12px; margin-right: -8px;
  background: none; border: 0; color: var(--schrift-3); cursor: pointer; border-radius: 999px;
}
.nav-more:hover { color: var(--schrift); background: rgba(255,255,255,.08); }
.nav-more svg { transition: transform .2s ease; }
.nav-more[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-sub {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
  display: none; flex-direction: column; min-width: 234px; padding: 8px;
  background: var(--grund-3); border: 1px solid var(--linie);
  border-radius: var(--radius-gr); box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.nav-sub a { color: var(--schrift-2); padding: 10px 13px; font-size: .92rem; justify-content: flex-start; }
.nav-sub a:hover { background: rgba(255,255,255,.08); color: var(--gold); }
.nav-grp:hover .nav-sub, .nav-grp:focus-within .nav-sub, .nav-more[aria-expanded="true"] + .nav-sub { display: flex; }
/* Unsichtbare Bruecke ueber die 8-px-Luecke zum Aufklapper — ohne sie verlor das
   Menue beim Ueberqueren den Hover und klappte zu (Befund Jairo 08.09.2026). */
.nav-grp::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-grp:hover::after { display: block; }

.nav-toggle { display: none; }
@media (max-width: 1240px) { .head-cta { display: none; } }
@media (max-width: 1150px) {
  .nav-toggle {
    display: grid; place-items: center; width: 48px; height: 48px; padding: 0;
    background: rgba(255,255,255,.1); border: 0; border-radius: 999px; cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 21px; height: 2px;
    background: var(--schrift); transition: transform .24s ease, opacity .18s ease;
  }
  .nav-toggle span { position: relative; }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after  { position: absolute; top: 6px; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--rand) 26px;
    background: var(--grund); border-bottom: 1px solid var(--linie);
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav.offen { display: flex; }
  .nav a { justify-content: flex-start; padding: 14px 6px; font-size: 1.05rem; border-radius: var(--radius); }
  .nav a[aria-current="page"]::after { left: 6px; right: 6px; }
  .nav-grp { flex-wrap: wrap; }
  .nav-grp > a { flex: 1; }
  .nav-sub {
    position: static; width: 100%; box-shadow: none; border: 0; background: transparent;
    padding: 0 0 10px 16px; border-left: 1px solid var(--linie); margin-left: 6px;
  }
}
@media (max-width: 520px) { .head-tel { font-size: 0; gap: 0; } }

/* ------------------------------------------------------------- Laufband */
.laufband { overflow: hidden; padding: 15px 0; background: var(--gold); }
.laufband-spur { display: flex; width: max-content; }
.laufband-satz {
  display: flex; align-items: center; gap: clamp(24px, 3.2vw, 46px);
  padding-right: clamp(24px, 3.2vw, 46px);
  animation: laufen 46s linear infinite;
}
@keyframes laufen { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.laufband-wort {
  font-family: var(--display); font-variation-settings: "wght" 750;
  font-size: clamp(.95rem, 1.5vw, 1.24rem); letter-spacing: -.01em;
  text-transform: uppercase; white-space: nowrap; color: var(--tinte);
}
.laufband-punkt { width: 6px; height: 6px; border-radius: 50%; background: var(--tinte); flex: none; opacity: .5; }
@media (prefers-reduced-motion: reduce) {
  .laufband-satz { animation: none; }
  .laufband-spur { width: 100%; overflow-x: auto; }
}

/* ------------------------------------------------------------------ Karte */
.karte {
  position: relative; padding: clamp(24px, 2.6vw, 34px);
  background: var(--karte); border: 1px solid var(--linie-fein); border-radius: var(--radius-gr);
}

/* Kachel mit Icon — wie die Kaesten auf Ramsauers Plakat, Goldkante oben. */
.kachel {
  position: relative; display: flex; flex-direction: column; gap: 11px;
  padding: clamp(24px, 2.6vw, 32px);
  background: var(--karte); border: 1px solid var(--linie-fein);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius); text-decoration: none;
  transition: transform .24s cubic-bezier(.2,.8,.3,1), background-color .22s ease, border-color .22s ease;
  will-change: transform;
}
.kachel:hover { background: var(--grund-3); border-color: rgba(245,194,0,.4); }
.kachel-ico {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 2px;
  border-radius: 50%; background: rgba(245,194,0,.13); color: var(--gold);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), background-color .25s ease;
}
.kachel:hover .kachel-ico { transform: rotate(-8deg) scale(1.08); background: rgba(245,194,0,.22); }
.kachel-ico .ico { width: 24px; height: 24px; }
.kachel-kat { font-size: .66rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; color: var(--gold); }
.kachel h3 { margin: 0; }
.kachel p { color: var(--schrift-2); font-size: .95rem; margin: 0; }
.kachel-mehr {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: auto; padding-top: 10px; font-weight: 700; font-size: .88rem; color: var(--gold);
}
.kachel-mehr .ico { width: 15px; height: 15px; transition: transform .22s ease; }
.kachel:hover .kachel-mehr .ico { transform: translateX(5px); }
.abschnitt--hell .kachel { background: #fff; border-color: rgba(18,18,17,.1); border-top-color: var(--gold-warm); }
.abschnitt--hell .kachel p { color: #4A463D; }
.abschnitt--hell .kachel-kat, .abschnitt--hell .kachel-mehr { color: var(--gold-tief); }
.abschnitt--hell .kachel-ico { background: rgba(212,168,0,.17); color: var(--gold-tief); }
.abschnitt--hell .kachel:hover { background: #FFFDF4; border-color: rgba(212,168,0,.5); }

/* -------------------------------------------------------------- Zahlen */
.zahl {
  font-family: var(--display); font-variation-settings: "wght" 800;
  font-size: clamp(2.3rem, 4.6vw, 3.8rem); line-height: .92;
  letter-spacing: -.03em; color: var(--gold); font-variant-numeric: tabular-nums; margin: 0;
}
.zahl-text { font-size: .88rem; color: var(--schrift-2); margin: 8px 0 0; max-width: 24ch; }

/* ----------------------------------------------------------- Aufklapper */
.faq-punkt { border-bottom: 1px solid var(--linie-fein); }
.faq-frage {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%; min-height: 64px; padding: 20px 2px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--display); font-variation-settings: "wght" 700;
  font-size: clamp(1.02rem, 1.6vw, 1.24rem); letter-spacing: -.008em; color: var(--schrift);
}
.faq-frage:hover { color: var(--gold); }
.faq-zeichen { flex: none; position: relative; width: 18px; height: 18px; color: var(--gold); }
.faq-zeichen::before, .faq-zeichen::after {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 18px; height: 2px; background: currentColor; transition: transform .26s ease;
}
.faq-zeichen::after { transform: rotate(90deg); }
.faq-frage[aria-expanded="true"] .faq-zeichen::after { transform: rotate(0deg); }
.faq-antwort { display: none; padding: 0 2px 24px; max-width: 66ch; }
.faq-antwort.offen { display: block; }

/* -------------------------------------------------------- Oeffnungszeiten */
.zeiten { list-style: none; padding: 0; margin: 0; }
.zeiten li {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--linie-fein);
  font-size: .96rem; font-variant-numeric: tabular-nums;
}
.zeiten li:last-child { border-bottom: 0; }
.zeiten li span:last-child { font-weight: 700; color: var(--schrift); text-align: right; }
.zeiten li.zu span:last-child { color: var(--schrift-3); font-weight: 500; }
.zeiten li.heute { color: var(--gold); }

/* -------------------------------------------------------------- Fusszeile */
.site-foot { background: #0C0C0B; color: var(--schrift-2); padding: clamp(52px, 7vw, 92px) 0 24px; }
.site-foot h4 { color: var(--schrift); margin-bottom: 14px; }
.foot-grid { display: grid; gap: clamp(28px, 3.6vw, 52px); grid-template-columns: 1fr; }
@media (min-width: 700px)  { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; } }
.brand--foot { margin-bottom: 16px; }
.foot-claim { font-size: .93rem; max-width: 34ch; }
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { padding: 2px 0; }
.foot-links a { display: inline-flex; align-items: center; gap: 8px; color: var(--schrift-2); text-decoration: none; font-size: .93rem; }
.foot-links a:hover { color: var(--gold); }
.foot-links .ico { width: 15px; height: 15px; opacity: .7; }
.foot-zeiten { list-style: none; padding: 0; margin: 0; }
.foot-zeiten li {
  display: flex; justify-content: space-between; gap: 14px; padding: 7px 0;
  font-size: .89rem; border-bottom: 1px solid rgba(255,255,255,.07);
  font-variant-numeric: tabular-nums;
}
.foot-sozial { display: flex; gap: 12px; margin-top: 14px; }
.foot-sozial a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--linie); border-radius: 50%; color: var(--schrift-2);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.foot-sozial a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.foot-marke { margin-top: clamp(38px, 5vw, 72px); overflow: hidden; line-height: .8; }
.foot-marke span {
  display: block; font-family: var(--display); font-variation-settings: "wght" 800;
  font-style: italic; font-size: clamp(3rem, 14vw, 12rem); letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(245,194,0,.3); white-space: nowrap;
}
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  margin-top: clamp(22px, 3vw, 38px); padding-top: 22px;
  border-top: 1px solid var(--linie-fein); font-size: .84rem; color: var(--schrift-3);
}
.foot-bottom p { margin: 0; }
.foot-recht { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-recht a { display: inline-flex; align-items: center; text-decoration: none; }
.foot-recht a:hover { color: var(--gold); }

/* ------------------------------------------------- Schwebende Schaltflaechen */
.floats { position: fixed; right: 16px; bottom: 20px; z-index: 80; display: flex; flex-direction: column; gap: 10px; }
.float {
  display: grid; place-items: center; width: 54px; height: 54px; padding: 0;
  border: 0; border-radius: 50%; cursor: pointer; color: var(--tinte);
  background: var(--gold); box-shadow: 0 10px 28px rgba(0,0,0,.5);
  text-decoration: none; transition: transform .2s ease;
}
.float:hover { transform: translateY(-3px) scale(1.04); }
.float--wa { background: #25D366; color: #05391A; }
.float--top {
  background: var(--grund-3); color: var(--schrift); border: 1px solid var(--linie);
  opacity: 0; pointer-events: none; transition: opacity .24s ease, transform .2s ease;
}
.float--top.sichtbar { opacity: 1; pointer-events: auto; }

.aktionsleiste { display: none; }
@media (max-width: 560px) {
  .aktionsleiste {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 85;
    display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
    background: rgba(18,18,17,.97); border-top: 1px solid var(--linie);
    padding-bottom: env(safe-area-inset-bottom);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .al-knopf {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 9px 4px; min-height: 60px;
    color: var(--schrift); text-decoration: none; font-size: .72rem; font-weight: 650;
  }
  .al-knopf .ico { width: 21px; height: 21px; }
  .al-knopf--wa { color: #6BEFA0; }
  .al-knopf--cta { background: var(--gold); color: var(--tinte); }
  .floats { bottom: 78px; }
  .float--tel { display: none; }
  body { padding-bottom: 60px; }
}

/* ------------------------------------------------------------- Formular */
.formular { display: grid; gap: 17px; }
@media (min-width: 640px) { .formular .paar { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; } }
.feld { display: grid; gap: 7px; min-width: 0; }
.feld > span { font-weight: 600; font-size: .88rem; color: var(--schrift); }
.feld .hinweis { font-weight: 400; font-size: .81rem; color: var(--schrift-3); }
.feld input, .feld select, .feld textarea {
  width: 100%; max-width: 100%; min-width: 0; min-height: 52px;
  padding: 13px 15px; font: inherit; font-size: 1rem; color: var(--schrift);
  background: rgba(255,255,255,.05); border: 1px solid var(--linie); border-radius: var(--radius);
}
.feld textarea { min-height: 122px; resize: vertical; }
.feld select { text-overflow: ellipsis; }
.feld select option { background: var(--grund-3); color: var(--schrift); }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  border-color: var(--gold); outline: 2px solid rgba(245,194,0,.34); outline-offset: 1px;
}
.feld--pflicht > span::after { content: " *"; color: #FF9C8E; }

.zustimmung { display: flex; gap: 12px; align-items: center; min-height: 44px; font-size: .9rem; color: var(--schrift-2); cursor: pointer; }
.zustimmung input { width: 24px; height: 24px; min-height: 0; flex: none; accent-color: #F5C200; cursor: pointer; }
.zustimmung-recht { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; font-size: .88rem; color: var(--gold); }

/* Honigtopf: absichtlich breiter als das Fenster, ausserhalb des Blickfelds.
   Zaehlt in der Ueberlaufmessung mit und ist dort KEIN Befund. */
.hp { position: absolute; left: -5000px; width: 4000px; height: 1px; overflow: hidden; opacity: 0; }
