/* ===== 01-base.css ===== */
/* ============================================================
   Theater60Plus Mosbach — Basis
   Schriften liegen LOKAL unter /fonts/ (kein Google-Fonts-Abruf
   → keine externen Verbindungen, kein Cookie-Banner nötig).
   ============================================================ */

@font-face {
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/inter_n4.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/inter_n5.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/inter_n7.woff2") format("woff2");
}

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

body {
  margin: 0;
  background: #fff8ec;
  color: #5a3b24;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #c85f16;
  outline-offset: 2px;
}

/* Skip-Link (Tastatur-Bedienung) */
.t60p-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2147483001;
  padding: 12px 18px;
  border-radius: 0 0 14px 0;
  background: #e87922;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.t60p-skip:focus {
  left: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ===== 02-header.css ===== */
/* ============================================================
   Kopfbereich (fest oben, mobiles Menü ohne JavaScript)
   ============================================================ */

.t60p-custom-header {
  --t60p-orange: #e87922;
  --t60p-orange-dark: #c85f16;
  --t60p-brown: #5a3b24;
  --t60p-cream: #fff8ec;
  --t60p-sand: #f3dfc2;
  --t60p-white: #ffffff;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483000;
  width: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 248, 236, 0.97) 0%,
      rgba(255, 248, 236, 0.9) 78%,
      rgba(255, 248, 236, 0.72) 100%
    );
  font-family: inherit;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(90, 59, 36, 0.08);
}

.t60p-custom-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 22px;
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 236, 0.38),
    rgba(255, 248, 236, 0)
  );
  pointer-events: none;
}

.t60p-custom-header * {
  box-sizing: border-box;
}

.t60p-header-spacer {
  height: 88px;
  width: 100%;
  pointer-events: none;
}

.t60p-header-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.t60p-header-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  text-decoration: none;
}

.t60p-header-logo img {
  display: block;
  width: auto;
  height: 62px;
  max-width: 240px;
  object-fit: contain;
}

.t60p-header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.t60p-header-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(90, 59, 36, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 24px rgba(90, 59, 36, 0.06);
}

.t60p-header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--t60p-brown);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.t60p-header-nav a:hover {
  background: rgba(232, 121, 34, 0.13);
  color: var(--t60p-orange-dark);
  transform: translateY(-1px);
}

.t60p-header-nav a[aria-current="page"] {
  background: rgba(232, 121, 34, 0.16);
  color: var(--t60p-orange-dark);
}

.t60p-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
}

.t60p-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 23px;
  border-radius: 999px;
  background: var(--t60p-orange);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(232, 121, 34, 0.24);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.t60p-header-cta:hover {
  background: var(--t60p-orange-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(232, 121, 34, 0.3);
}

.t60p-mobile-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.t60p-mobile-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(90, 59, 36, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.t60p-mobile-button span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 999px;
  background: var(--t60p-brown);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.t60p-mobile-toggle:checked ~ .t60p-header-inner .t60p-mobile-button {
  background: rgba(232, 121, 34, 0.14);
  border-color: rgba(232, 121, 34, 0.3);
}

.t60p-mobile-toggle:checked ~ .t60p-header-inner .t60p-mobile-button span {
  background: var(--t60p-orange-dark);
  transform: scale(1.12);
}

.t60p-mobile-toggle:focus-visible ~ .t60p-header-inner .t60p-mobile-button {
  outline: 3px solid var(--t60p-orange-dark);
  outline-offset: 2px;
}

.t60p-mobile-menu {
  display: none;
}

.t60p-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media screen and (max-width: 980px) {
  .t60p-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .t60p-header-nav a {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 14px;
  }

  .t60p-header-cta {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media screen and (max-width: 860px) {
  .t60p-header-spacer {
    height: 78px;
  }

  .t60p-header-inner {
    min-height: 78px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .t60p-header-logo img {
    height: 52px;
    max-width: 200px;
  }

  .t60p-header-center,
  .t60p-header-cta {
    display: none;
  }

  .t60p-mobile-button {
    display: inline-flex;
  }

  .t60p-mobile-menu {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
  }

  .t60p-mobile-toggle:checked ~ .t60p-mobile-menu {
    display: grid;
    gap: 10px;
  }

  .t60p-mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--t60p-brown);
    font-size: 16px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(90, 59, 36, 0.07);
  }

  .t60p-mobile-menu a:hover {
    background: rgba(232, 121, 34, 0.13);
    color: var(--t60p-orange-dark);
  }

  .t60p-mobile-menu a:last-child {
    background: var(--t60p-orange);
    color: #ffffff;
  }

  .t60p-mobile-menu a:last-child:hover {
    background: var(--t60p-orange-dark);
    color: #ffffff;
  }
}

@media screen and (max-width: 520px) {
  .t60p-header-spacer {
    height: 72px;
  }

  .t60p-header-inner,
  .t60p-mobile-menu {
    width: min(100% - 24px, 1180px);
  }

  .t60p-header-inner {
    min-height: 72px;
  }

  .t60p-header-logo img {
    height: 46px;
    max-width: 170px;
  }

  .t60p-mobile-button {
    width: 44px;
    height: 44px;
  }
}


/* ===== 03-footer.css ===== */
/* ============================================================
   Fußbereich
   ============================================================ */

.t60p-site-footer {
  --t60p-orange: #e87922;
  --t60p-orange-dark: #c85f16;
  --t60p-brown: #5a3b24;
  --t60p-cream: #fff8ec;
  --t60p-white: #ffffff;

  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 248, 236, 0.96) 0%,
      #fff8ec 18px,
      #f3dfc2 100%
    );
  color: var(--t60p-brown);
  font-family: inherit;
  border-top: 0;
}

.t60p-site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(90, 59, 36, 0),
    rgba(90, 59, 36, 0.22),
    rgba(90, 59, 36, 0)
  );
  z-index: 1;
  pointer-events: none;
}

.t60p-site-footer::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 34px;
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 236, 0.88),
    rgba(255, 248, 236, 0)
  );
  z-index: 0;
  pointer-events: none;
}

.t60p-site-footer * {
  box-sizing: border-box;
}

.t60p-footer-main {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 18px;
}

.t60p-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  align-items: start;
}

.t60p-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  text-decoration: none;
}

.t60p-footer-logo img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 190px;
  object-fit: contain;
}

.t60p-footer-text {
  max-width: 360px;
  margin: 0;
  color: rgba(90, 59, 36, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.t60p-footer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.12);
  color: var(--t60p-orange-dark);
  font-size: 13px;
  font-weight: 850;
}

.t60p-footer-title {
  margin: 0 0 10px;
  color: var(--t60p-brown);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.t60p-footer-links {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Zielgruppe ab 60: Tippfläche der Fußzeilen-Links vergrößert */
.t60p-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 4px 0;
  color: rgba(90, 59, 36, 0.78);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.t60p-footer-links a:hover {
  color: var(--t60p-orange-dark);
  transform: translateX(2px);
}

.t60p-footer-card {
  padding: 18px;
  border: 1px solid rgba(90, 59, 36, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(90, 59, 36, 0.07);
}

.t60p-footer-card p {
  margin: 0;
  color: rgba(90, 59, 36, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.t60p-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 13px;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--t60p-orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(232, 121, 34, 0.22);
  transition: background-color 180ms ease, transform 180ms ease;
}

.t60p-footer-button:hover {
  background: var(--t60p-orange-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.t60p-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  align-items: center;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(90, 59, 36, 0.12);
  color: rgba(90, 59, 36, 0.66);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.t60p-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.t60p-footer-legal a,
.t60p-footer-credit-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 6px;
  color: rgba(90, 59, 36, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.t60p-footer-legal a:hover,
.t60p-footer-credit-link:hover {
  color: var(--t60p-orange-dark);
}

.t60p-footer-divider {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(90, 59, 36, 0.35);
}

@media screen and (max-width: 920px) {
  .t60p-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media screen and (max-width: 640px) {
  .t60p-footer-main {
    width: min(100% - 28px, 1180px);
    padding: 28px 0 16px;
  }

  .t60p-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .t60p-footer-logo img {
    height: 46px;
    max-width: 170px;
  }

  .t60p-footer-card {
    padding: 16px;
  }

  .t60p-footer-button {
    width: 100%;
  }

  .t60p-footer-bottom {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .t60p-footer-divider {
    display: none;
  }
}


/* ===== 10-start.css ===== */
/* ============================================================
   Startseite
   Hintergrundfotos: /img/gruppe-1.jpg … gruppe-4.jpg
   ============================================================ */

.t60p-home {
  --orange: #e87922;
  --orange-dark: #c85f16;
  --brown: #5a3b24;
  --brown-soft: #8a6546;
  --light-brown: #c89b6d;
  --cream: #fff8ec;
  --sand: #f3dfc2;
  --yellow: #ffd166;
  --pink: #ff8fa3;
  --mint: #a7d7c5;
  --white: #ffffff;
  --black: #1c120b;
  --shadow: 0 22px 55px rgba(55, 34, 20, 0.2);
  --soft-shadow: 0 12px 34px rgba(90, 59, 36, 0.11);

  overflow: hidden;
  background: var(--cream);
  color: var(--brown);
  font-family: inherit;
}

.t60p-home * {
  box-sizing: border-box;
}

.t60p-home img {
  max-width: 100%;
}

.t60p-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.t60p-section {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
}

.t60p-section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 209, 102, 0.36), transparent 28%),
    radial-gradient(circle at 90% 25%, rgba(255, 143, 163, 0.22), transparent 26%),
    linear-gradient(135deg, #fff8ec 0%, #f4ddbd 100%);
}

.t60p-photo-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* mittlerer Stop war auf dunkle Stockfotos ausgelegt; gruppe-3 hat helle
     Fensterflächen — nachgedunkelt bis Kontrast zu weißer Schrift ≥ 4.5:1 */
  background-image:
    linear-gradient(110deg, rgba(34, 20, 12, 0.87), rgba(70, 45, 27, 0.74) 48%, rgba(30, 17, 9, 0.81)),
    var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-color: #3a2416;
  color: #ffffff;
}

.t60p-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 121, 34, 0.32), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 209, 102, 0.15), transparent 32%);
  pointer-events: none;
}

.t60p-photo-bg .t60p-heading-xl,
.t60p-photo-bg .t60p-heading-lg,
.t60p-photo-bg .t60p-heading-md,
.t60p-photo-bg .t60p-text-large,
.t60p-photo-bg .t60p-text {
  color: #ffffff;
}

.t60p-photo-bg .t60p-text-large,
.t60p-photo-bg .t60p-text {
  opacity: 0.92;
}

.t60p-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.14);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.t60p-photo-bg .t60p-eyebrow {
  background: rgba(255, 248, 236, 0.16);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.t60p-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--orange);
}

.t60p-heading-xl,
.t60p-heading-lg,
.t60p-heading-md {
  margin: 0;
  color: var(--brown);
  letter-spacing: -0.045em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.t60p-heading-xl {
  max-width: 900px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
}

.t60p-heading-lg {
  max-width: 840px;
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1.08;
}

.t60p-heading-md {
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.16;
}

.t60p-text-large {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.t60p-text {
  margin: 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: 16px;
  line-height: 1.68;
}

.t60p-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.t60p-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  cursor: pointer;
}

.t60p-button:hover {
  transform: translateY(-2px);
}

.t60p-button-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(232, 121, 34, 0.34);
}

.t60p-button-primary:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.t60p-button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--brown);
  border-color: rgba(90, 59, 36, 0.14);
}

.t60p-button-secondary:hover {
  background: var(--sand);
  color: var(--brown);
}

.t60p-photo-bg .t60p-button-secondary {
  background: rgba(255, 248, 236, 0.13);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.t60p-photo-bg .t60p-button-secondary:hover {
  background: rgba(255, 248, 236, 0.24);
  color: #ffffff;
}

.t60p-button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 14px;
}

.t60p-hero {
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 11vw, 150px) 0;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  /* Abdunklung sitzt als weiche Wolke HINTER dem Textblock, nicht flächig über
     dem ganzen Foto — sonst verschwindet die Gruppe (helles Foto, weiße Wand).
     Werte sind gegen Kontrast 4.5:1 zu weißer Schrift gemessen. */
  background-image:
    radial-gradient(ellipse 78% 62% at 50% 47%, rgba(22, 13, 8, 0.80) 0%, rgba(22, 13, 8, 0.60) 55%, rgba(22, 13, 8, 0.26) 100%),
    linear-gradient(180deg, rgba(22, 13, 8, 0.40) 0%, rgba(22, 13, 8, 0.18) 40%, rgba(22, 13, 8, 0.46) 100%),
    url("/img/gruppe-2.jpg");
  background-size: cover;
  background-position: center 38%;
  background-color: #2a1a10;
  color: #ffffff;
}

.t60p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 38%, rgba(232, 121, 34, 0.34), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(255, 209, 102, 0.16), transparent 32%);
  pointer-events: none;
}

.t60p-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

.t60p-hero .t60p-eyebrow {
  margin: 0 auto 22px;
  background: rgba(255, 248, 236, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.t60p-hero .t60p-heading-xl {
  max-width: 880px;
  margin: 0 auto;
  color: #ffffff;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.02;
}

.t60p-hero .t60p-text-large {
  max-width: 820px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.92);
}

.t60p-hero .t60p-buttons {
  justify-content: center;
}

.t60p-hero-note {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin: 34px auto 0;
  padding: 18px 22px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.t60p-hero-note-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--brown);
  font-size: 25px;
}

.t60p-hero-note strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 17px;
}

.t60p-hero-note span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.t60p-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.t60p-image-stack {
  position: relative;
  min-height: 470px;
}

.t60p-stack-main,
.t60p-stack-small {
  position: absolute;
  overflow: hidden;
  border: 7px solid #ffffff;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.t60p-stack-main {
  inset: 0 64px 48px 0;
  border-radius: 36px;
}

.t60p-stack-small {
  right: 0;
  bottom: 0;
  width: 50%;
  border-radius: 28px;
  transform: rotate(3deg);
}

.t60p-stack-main img,
.t60p-stack-small img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t60p-dark-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background: rgba(255, 248, 236, 0.1);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.t60p-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.t60p-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(90, 59, 36, 0.84);
  font-size: 16px;
  line-height: 1.55;
}

.t60p-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-dark);
  font-weight: 950;
}

.t60p-dark-card .t60p-list li {
  color: rgba(255, 255, 255, 0.88);
}

.t60p-dark-card .t60p-list li::before {
  color: var(--yellow);
}

.t60p-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.t60p-info-box {
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--soft-shadow);
  color: var(--brown);
}

.t60p-info-box h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.t60p-info-box .t60p-text,
.t60p-info-box p,
.t60p-info-box a {
  color: rgba(90, 59, 36, 0.86) !important;
  opacity: 1 !important;
}

.t60p-info-box .t60p-button-primary {
  color: #ffffff !important;
}

.t60p-info-box .t60p-button-secondary {
  color: var(--brown) !important;
}

.t60p-photo-bg .t60p-info-box,
.t60p-photo-bg .t60p-info-box h3,
.t60p-photo-bg .t60p-info-box .t60p-text,
.t60p-photo-bg .t60p-info-box p {
  color: rgba(90, 59, 36, 0.86) !important;
  opacity: 1 !important;
}

.t60p-event-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.t60p-calendar {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 180px;
  height: 180px;
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(145deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(232, 121, 34, 0.28);
  text-align: center;
}

.t60p-calendar span {
  font-size: 15px;
  font-weight: 850;
  opacity: 0.95;
}

.t60p-calendar strong {
  margin: 8px 0;
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.t60p-event-content {
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: var(--brown);
}

.t60p-event-content .t60p-heading-md {
  color: var(--brown);
  font-size: clamp(22px, 2.4vw, 29px);
}

.t60p-event-content .t60p-text {
  max-width: 720px;
  color: rgba(90, 59, 36, 0.82);
  opacity: 1;
}

.t60p-event-content .t60p-list li {
  color: rgba(90, 59, 36, 0.86);
}

.t60p-event-content .t60p-list li::before {
  color: var(--orange-dark);
}

.t60p-event-content .t60p-button-secondary {
  background: #ffffff;
  color: var(--brown);
  border-color: rgba(90, 59, 36, 0.14);
}

.t60p-event-content .t60p-button-secondary:hover {
  background: var(--sand);
  color: var(--brown);
}

.t60p-idea-layout {
  display: grid;
  gap: 34px;
  justify-items: center;
  text-align: center;
}

.t60p-idea-copy {
  max-width: 820px;
  margin: 0 auto;
}

.t60p-idea-copy .t60p-press-label {
  margin-left: auto;
  margin-right: auto;
}

.t60p-idea-copy .t60p-heading-lg {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.t60p-idea-copy .t60p-text-large {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.t60p-idea-copy .t60p-buttons {
  justify-content: center;
}

.t60p-press-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.18);
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
}

.t60p-idea-points {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.t60p-idea-point {
  min-height: 160px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 248, 236, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  text-align: left;
}

.t60p-idea-point span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(232, 121, 34, 0.14);
  color: var(--orange-dark);
  font-weight: 950;
}

.t60p-idea-point p {
  margin: 0;
  color: rgba(90, 59, 36, 0.9);
  font-size: 16px;
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

@media screen and (max-width: 1100px) {
  .t60p-idea-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

@media screen and (max-width: 990px) {
  .t60p-hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .t60p-photo-bg {
    background-attachment: scroll;
  }

  .t60p-split,
  .t60p-event-card {
    grid-template-columns: 1fr;
  }

  .t60p-calendar {
    width: 100%;
    height: auto;
    min-height: 140px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    justify-items: center;
  }

  .t60p-calendar strong {
    font-size: 46px;
  }
}

@media screen and (max-width: 680px) {
  .t60p-container {
    width: min(100% - 28px, 1180px);
  }

  .t60p-hero {
    padding: 78px 0;
    text-align: center;
  }

  .t60p-hero .t60p-heading-xl {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.06;
  }

  .t60p-heading-lg {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.1;
  }

  .t60p-heading-md {
    font-size: clamp(21px, 6vw, 27px);
  }

  .t60p-buttons,
  .t60p-info-grid,
  .t60p-idea-points {
    grid-template-columns: 1fr;
    display: grid;
  }

  .t60p-button {
    width: 100%;
  }

  .t60p-hero-note {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .t60p-image-stack {
    min-height: 380px;
  }

  .t60p-stack-main {
    inset: 0 30px 58px 0;
  }

  .t60p-stack-small {
    width: 62%;
  }

  .t60p-calendar {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* ===== 11-presse.css ===== */
/* ============================================================
   Pressebereich (Startseite) inkl. Zeitungsansicht im Overlay
   ============================================================ */

.t60p-presswall {
  --orange: #e87922;
  --orange-dark: #c85f16;
  --brown: #5a3b24;
  --brown-soft: #8a6546;
  --cream: #fff8ec;
  --paper: #fffaf0;
  --paper-dark: #f1dfc2;
  --sand: #f3dfc2;
  --white: #ffffff;
  --ink: #2d2118;
  --muted: rgba(90, 59, 36, 0.76);
  --line: rgba(90, 59, 36, 0.14);
  --shadow: 0 22px 55px rgba(55, 34, 20, 0.18);
  --soft-shadow: 0 12px 34px rgba(90, 59, 36, 0.11);

  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(232, 121, 34, 0.12), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(90, 59, 36, 0.08), transparent 32%),
    linear-gradient(135deg, #fff8ec 0%, #f5dfc0 100%);
  color: var(--brown);
  font-family: inherit;
}

.t60p-presswall * {
  box-sizing: border-box;
}

.t60p-presswall-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.t60p-presswall-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.t60p-presswall-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.14);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.t60p-presswall-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--orange);
}

.t60p-presswall h2,
.t60p-presswall h3,
.t60p-presswall p {
  margin: 0;
}

.t60p-presswall-title {
  max-width: 860px;
  color: var(--brown);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.t60p-presswall-lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}

.t60p-press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.t60p-press-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(90, 59, 36, 0.13);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  text-align: left;
  font: inherit;
  padding: 0;
  transform: translateY(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.t60p-press-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(55, 34, 20, 0.18);
  border-color: rgba(232, 121, 34, 0.28);
}

.t60p-press-thumb {
  position: relative;
  min-height: 185px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.88), rgba(229, 203, 164, 0.78)),
    repeating-linear-gradient(
      90deg,
      rgba(90, 59, 36, 0.12) 0 1px,
      transparent 1px 74px
    );
}

.t60p-press-thumb::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(90, 59, 36, 0.18);
  background:
    linear-gradient(rgba(90, 59, 36, 0.16), rgba(90, 59, 36, 0.16)) 0 26px / 100% 1px no-repeat,
    repeating-linear-gradient(
      0deg,
      rgba(90, 59, 36, 0.20) 0 1px,
      transparent 1px 12px
    );
  opacity: 0.8;
  transform: rotate(-1deg);
}

.t60p-press-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(232, 121, 34, 0.22), transparent 34%),
    linear-gradient(180deg, transparent, rgba(28, 18, 11, 0.10));
  pointer-events: none;
}

.t60p-press-thumb-text {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.92);
  box-shadow: 0 12px 26px rgba(55, 34, 20, 0.12);
}

.t60p-press-thumb-text strong {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.t60p-press-card-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.t60p-press-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.t60p-press-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.13);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.t60p-press-card h3 {
  color: var(--brown);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.t60p-press-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.t60p-press-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 950;
}

.t60p-press-read span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  transition: transform 220ms ease;
}

.t60p-press-card:hover .t60p-press-read span {
  transform: translateX(4px);
}

.t60p-press-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.t60p-press-modal.is-open {
  display: flex;
}

.t60p-press-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 11, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: t60pPressFade 180ms ease both;
}

.t60p-press-modal-panel {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  max-height: min(86vh, 920px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 10%, rgba(232, 121, 34, 0.10), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #f3dfc2 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  animation: t60pPressRise 240ms ease both;
}

.t60p-press-modal-top {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(90, 59, 36, 0.12);
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.t60p-press-modal-top span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.14);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 950;
}

.t60p-press-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(90, 59, 36, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brown);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.t60p-press-close:hover {
  transform: rotate(8deg) scale(1.04);
  background: var(--orange);
  color: #ffffff;
}

.t60p-newspaper {
  max-height: calc(min(86vh, 920px) - 86px);
  overflow: auto;
  padding: clamp(26px, 4vw, 48px);
}

.t60p-newspaper-sheet {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(90, 59, 36, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(90, 59, 36, 0.035) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(
      0deg,
      rgba(90, 59, 36, 0.025) 0 1px,
      transparent 1px 9px
    ),
    #fffaf0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.56),
    0 18px 42px rgba(90, 59, 36, 0.12);
}

.t60p-newspaper-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(90, 59, 36, 0.06), transparent 28%),
    radial-gradient(circle at 80% 88%, rgba(232, 121, 34, 0.06), transparent 30%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.t60p-newspaper-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(90, 59, 36, 0.28);
  color: rgba(90, 59, 36, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.45;
}

.t60p-newspaper-title {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.t60p-newspaper-subtitle {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(45, 33, 24, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 23px);
  font-style: italic;
  line-height: 1.35;
}

.t60p-newspaper-byline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(90, 59, 36, 0.18);
  color: rgba(45, 33, 24, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.t60p-newspaper-columns {
  position: relative;
  z-index: 1;
  column-count: 2;
  column-gap: 38px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.72;
}

.t60p-newspaper-columns p {
  margin: 0 0 17px;
  break-inside: avoid;
}

.t60p-newspaper-columns p:first-child::first-letter {
  float: left;
  padding: 6px 8px 0 0;
  color: var(--orange-dark);
  font-size: 58px;
  line-height: 0.82;
  font-weight: 900;
}

.t60p-newspaper-quote {
  break-inside: avoid;
  margin: 24px 0;
  padding: 20px;
  border-left: 5px solid var(--orange);
  border-radius: 0 20px 20px 0;
  background: rgba(232, 121, 34, 0.10);
  color: var(--brown);
  font-family: inherit;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 800;
}

.t60p-newspaper-note {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(90, 59, 36, 0.08);
  color: rgba(45, 33, 24, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

body.t60p-press-lock {
  overflow: hidden;
}

@keyframes t60pPressFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes t60pPressRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media screen and (max-width: 1080px) {
  .t60p-press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 760px) {
  .t60p-presswall-container {
    width: min(100% - 28px, 1180px);
  }

  .t60p-press-grid {
    grid-template-columns: 1fr;
  }

  .t60p-press-card {
    min-height: auto;
  }

  .t60p-press-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .t60p-press-modal-panel {
    max-height: 92vh;
    border-radius: 28px 28px 0 0;
  }

  .t60p-newspaper {
    max-height: calc(92vh - 84px);
    padding: 18px;
  }

  .t60p-newspaper-sheet {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .t60p-newspaper-columns {
    column-count: 1;
    font-size: 16px;
    line-height: 1.68;
  }

  .t60p-newspaper-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .t60p-newspaper-subtitle {
    font-size: 18px;
  }
}


/* ===== 20-ueber-mich.css ===== */
/* ============================================================
   Seite „Über mich"
   Hintergrundfoto Kopfbereich: /img/gruppe-2.jpg
   ============================================================ */

.t60p-about {
  --t60p-orange: #e87922;
  --t60p-orange-dark: #c85f16;
  --t60p-brown: #5a3b24;
  --t60p-brown-soft: #8a6546;
  --t60p-cream: #fff8ec;
  --t60p-cream-2: #fff3df;
  --t60p-sand: #f3dfc2;
  --t60p-white: #ffffff;
  --t60p-shadow: 0 18px 45px rgba(90, 59, 36, 0.14);
  --t60p-soft-shadow: 0 10px 30px rgba(90, 59, 36, 0.09);

  overflow: hidden;
  background: var(--t60p-cream);
  color: var(--t60p-brown);
  font-family: inherit;
}

.t60p-about * {
  box-sizing: border-box;
}

.t60p-about-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.t60p-about-section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.t60p-about-soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(232, 121, 34, 0.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(90, 59, 36, 0.08), transparent 30%),
    linear-gradient(135deg, #fff8ec 0%, #f7e7cf 100%);
}

.t60p-about-white {
  background: #ffffff;
}

.t60p-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.13);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.t60p-about-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--t60p-orange);
}

.t60p-about-heading-xl,
.t60p-about-heading-lg,
.t60p-about-heading-md,
.t60p-about-heading-sm {
  margin: 0;
  color: var(--t60p-brown);
  letter-spacing: -0.045em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.t60p-about-heading-xl {
  max-width: 820px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.98;
}

.t60p-about-heading-lg {
  max-width: 900px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.04;
}

.t60p-about-heading-md {
  max-width: 820px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
}

.t60p-about-heading-sm {
  max-width: 760px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.12;
}

.t60p-about-text-large {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.t60p-about-text {
  margin: 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.t60p-about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.t60p-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.t60p-about-button:hover {
  transform: translateY(-2px);
}

.t60p-about-button-primary {
  background: var(--t60p-orange);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(232, 121, 34, 0.24);
}

.t60p-about-button-primary:hover {
  background: var(--t60p-orange-dark);
  color: #ffffff;
}

.t60p-about-button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--t60p-brown);
  border-color: rgba(90, 59, 36, 0.14);
}

.t60p-about-button-secondary:hover {
  background: var(--t60p-sand);
  color: var(--t60p-brown);
}

.t60p-about-hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: clamp(92px, 10vw, 145px) 0;
  isolation: isolate;
  overflow: hidden;
  /* links dunkel halten (dort steht die Schrift), rechts das Foto zeigen */
  background-image:
    linear-gradient(100deg, rgba(24, 14, 9, 0.88) 0%, rgba(24, 14, 9, 0.83) 45%, rgba(28, 17, 10, 0.74) 66%, rgba(70, 44, 26, 0.44) 88%, rgba(26, 16, 10, 0.62) 100%),
    url("/img/gruppe-4.jpg");
  background-size: cover;
  background-position: center 38%;
  background-color: #2a1a10;
  color: #ffffff;
}

.t60p-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 24%, rgba(232, 121, 34, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 58%);
  pointer-events: none;
}

.t60p-about-hero-content {
  max-width: 780px;
}

.t60p-about-hero .t60p-about-eyebrow {
  background: rgba(255, 248, 236, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.t60p-about-hero .t60p-about-heading-xl {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.t60p-about-hero .t60p-about-text-large {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.t60p-about-hero .t60p-about-button-secondary {
  background: rgba(255, 248, 236, 0.13);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.t60p-about-hero .t60p-about-button-secondary:hover {
  background: rgba(255, 248, 236, 0.24);
  color: #ffffff;
}

.t60p-about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.t60p-about-image-card {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  background: #ffffff;
  box-shadow: var(--t60p-shadow);
}

.t60p-about-image-card img {
  display: block;
  width: 100%;
  /* height:auto ist nötig — sonst gewinnt das HTML-height-Attribut
     und aspect-ratio unten bleibt wirkungslos */
  height: auto;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
}

.t60p-about-image-card.is-portrait img {
  aspect-ratio: 4 / 4.8;
  object-position: center center;
}

/* Breiter Zuschnitt: Bildmitte liegt auf Höhe der Beine — Ausschnitt nach oben
   ziehen, sonst wird der Kopf abgeschnitten */
.t60p-about-image-card.is-wide img {
  aspect-ratio: 4 / 2.75;
  object-position: center 18%;
}

.t60p-about-image-card.is-portrait img {
  object-position: center 22%;
}

.t60p-about-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.t60p-about-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(90, 59, 36, 0.84);
  font-size: 17px;
  line-height: 1.58;
}

.t60p-about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--t60p-orange-dark);
  font-weight: 950;
}

.t60p-about-timeline {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.t60p-about-timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(90, 59, 36, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--t60p-soft-shadow);
}

.t60p-about-year {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.13);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.t60p-about-timeline-item h3 {
  margin: 0 0 8px;
  color: var(--t60p-brown);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.t60p-about-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  counter-reset: about-step;
}

.t60p-about-step {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--t60p-soft-shadow);
  counter-increment: about-step;
}

.t60p-about-step::before {
  content: counter(about-step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(232, 121, 34, 0.14);
  color: var(--t60p-orange-dark);
  font-weight: 950;
}

.t60p-about-step h3 {
  margin: 0 0 10px;
  color: var(--t60p-brown);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.t60p-about-note {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 36px;
  background: #ffffff;
  box-shadow: var(--t60p-shadow);
}

.t60p-about-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 32px;
  align-items: center;
}

.t60p-about-quote {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(232, 121, 34, 0.14), transparent 34%),
    #fff8ec;
}

.t60p-about-quote p {
  margin: 0;
  color: rgba(90, 59, 36, 0.9);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.t60p-about-quote span {
  display: block;
  margin-top: 14px;
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.5;
}

.t60p-about-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.t60p-about-info-box {
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--t60p-soft-shadow);
}

.t60p-about-info-box h3 {
  margin: 0 0 10px;
  color: var(--t60p-brown);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.t60p-about-contact-heading {
  max-width: 840px;
  font-size: clamp(27px, 3.3vw, 42px);
  line-height: 1.12;
}

.t60p-about-final-cta {
  text-align: center;
  padding: clamp(38px, 6vw, 64px);
  border: 1px solid rgba(90, 59, 36, 0.1);
  border-radius: 42px;
  background: #ffffff;
  box-shadow: var(--t60p-shadow);
}

.t60p-about-final-cta .t60p-about-heading-md,
.t60p-about-final-cta .t60p-about-text-large {
  margin-left: auto;
  margin-right: auto;
}

.t60p-about-final-cta .t60p-about-buttons {
  justify-content: center;
}

@media screen and (max-width: 980px) {
  .t60p-about-intro-grid,
  .t60p-about-note-grid {
    grid-template-columns: 1fr;
  }

  .t60p-about-process,
  .t60p-about-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .t60p-about-image-card.is-portrait img {
    aspect-ratio: 4 / 3.4;
  }
}

@media screen and (max-width: 720px) {
  .t60p-about-container {
    width: min(100% - 28px, 1180px);
  }

  .t60p-about-section {
    padding: 46px 0;
  }

  .t60p-about-hero {
    min-height: 610px;
    padding: 76px 0;
    align-items: flex-end;
    background-position: center center;
  }

  .t60p-about-heading-xl {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
    max-width: 100%;
  }

  .t60p-about-heading-lg {
    font-size: clamp(29px, 8vw, 42px);
    line-height: 1.08;
  }

  .t60p-about-heading-md,
  .t60p-about-heading-sm,
  .t60p-about-contact-heading {
    font-size: clamp(25px, 7vw, 34px);
  }

  .t60p-about-process,
  .t60p-about-info-grid {
    grid-template-columns: 1fr;
  }

  .t60p-about-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .t60p-about-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .t60p-about-button {
    width: 100%;
  }

  .t60p-about-final-cta {
    padding: 32px 22px;
    border-radius: 30px;
  }

  .t60p-about-note {
    padding: 26px 20px;
    border-radius: 30px;
  }
}

@media screen and (max-width: 390px) {
  .t60p-about-heading-xl {
    font-size: 32px;
  }

  .t60p-about-text-large {
    font-size: 17px;
  }
}


/* ===== 21-spielort.css ===== */
/* ============================================================
   Seite „Spielort"
   ============================================================ */

.t60p-locations-page {
  --orange: #e87922;
  --orange-dark: #c85f16;
  --brown: #5a3b24;
  --cream: #fff8ec;
  --sand: #f3dfc2;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(55, 34, 20, 0.16);
  --soft-shadow: 0 12px 34px rgba(90, 59, 36, 0.1);

  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(232, 121, 34, 0.1), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(90, 59, 36, 0.08), transparent 34%),
    var(--cream);
  color: var(--brown);
  font-family: inherit;
}

.t60p-locations-page * {
  box-sizing: border-box;
}

.t60p-locations-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.t60p-locations-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.t60p-locations-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.t60p-locations-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.14);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.t60p-locations-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--orange);
}

.t60p-locations-heading {
  max-width: 820px;
  margin: 0;
  color: var(--brown);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.t60p-locations-lead {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.t60p-location-card-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.t60p-location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(90, 59, 36, 0.1);
  border-radius: 38px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.t60p-location-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #2b1b12;
}

.t60p-location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 18, 11, 0.02), rgba(28, 18, 11, 0.38)),
    radial-gradient(circle at 40% 35%, rgba(232, 121, 34, 0.14), transparent 44%);
  pointer-events: none;
}

.t60p-location-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.t60p-location-content {
  padding: clamp(30px, 5vw, 48px);
}

.t60p-location-content h2 {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.t60p-location-content p {
  margin: 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.t60p-location-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(90, 59, 36, 0.12);
}

/* nur die direkten Zeilen sind Flex — sonst wird auch der Textblock
   darin zum Flex-Element und bricht eingerückt um */
.t60p-location-meta > div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(90, 59, 36, 0.84);
  font-size: 16px;
  line-height: 1.5;
}

.t60p-location-meta > div > span {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-weight: 950;
}

.t60p-location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.t60p-location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.t60p-location-button:hover {
  transform: translateY(-2px);
}

.t60p-location-button-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(232, 121, 34, 0.26);
}

.t60p-location-button-primary:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.t60p-location-button-secondary {
  background: #ffffff;
  color: var(--brown);
  border-color: rgba(90, 59, 36, 0.14);
}

.t60p-location-button-secondary:hover {
  background: var(--sand);
  color: var(--brown);
}

.t60p-location-note {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(90, 59, 36, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.t60p-location-note p {
  margin: 0;
  color: rgba(90, 59, 36, 0.78);
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .t60p-location-card {
    grid-template-columns: 1fr;
  }

  .t60p-location-image img {
    min-height: 320px;
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 680px) {
  .t60p-locations-container {
    width: min(100% - 28px, 1120px);
  }

  .t60p-locations-section {
    padding: 54px 0;
  }

  .t60p-locations-header {
    margin-bottom: 30px;
    text-align: left;
  }

  .t60p-locations-heading {
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1.08;
  }

  .t60p-locations-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .t60p-location-card {
    border-radius: 30px;
  }

  .t60p-location-content {
    padding: 28px 22px;
  }

  .t60p-location-content h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .t60p-location-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .t60p-location-button {
    width: 100%;
  }

  .t60p-location-note {
    padding: 22px;
    border-radius: 24px;
  }

  .t60p-location-note p {
    text-align: left;
  }
}


/* ===== 22-kontakt.css ===== */
/* ============================================================
   Seite „Kontakt"
   ============================================================ */

.t60p-contact-page {
  --t60p-orange: #e87922;
  --t60p-orange-dark: #c85f16;
  --t60p-brown: #5a3b24;
  --t60p-brown-soft: #8a6546;
  --t60p-cream: #fff8ec;
  --t60p-sand: #f3dfc2;
  --t60p-yellow: #ffd166;
  --t60p-pink: #ff8fa3;
  --t60p-mint: #a7d7c5;
  --t60p-white: #ffffff;
  --t60p-shadow: 0 18px 45px rgba(90, 59, 36, 0.14);
  --t60p-soft-shadow: 0 10px 30px rgba(90, 59, 36, 0.09);

  overflow: hidden;
  background: var(--t60p-cream);
  color: var(--t60p-brown);
  font-family: inherit;
}

.t60p-contact-page * {
  box-sizing: border-box;
}

.t60p-contact-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.t60p-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.13);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.t60p-contact-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--t60p-orange);
}

.t60p-contact-heading-lg,
.t60p-contact-heading-md {
  margin: 0;
  color: var(--t60p-brown);
  letter-spacing: -0.045em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.t60p-contact-heading-lg {
  max-width: 900px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.04;
}

.t60p-contact-heading-md {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.t60p-contact-text-large {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
}

.t60p-contact-text {
  margin: 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.t60p-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.t60p-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.t60p-contact-button:hover {
  transform: translateY(-2px);
}

.t60p-contact-button-primary {
  background: var(--t60p-orange);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(232, 121, 34, 0.24);
}

.t60p-contact-button-primary:hover {
  background: var(--t60p-orange-dark);
  color: #ffffff;
}

.t60p-contact-button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--t60p-brown);
  border-color: rgba(90, 59, 36, 0.14);
}

.t60p-contact-button-secondary:hover {
  background: var(--t60p-sand);
  color: var(--t60p-brown);
}

.t60p-contact-section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.t60p-contact-soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 209, 102, 0.26), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(167, 215, 197, 0.26), transparent 28%),
    linear-gradient(135deg, #fff8ec 0%, #f5dec0 100%);
}

.t60p-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
  margin-top: 36px;
}

.t60p-contact-card,
.t60p-contact-form-card {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--t60p-shadow);
}

.t60p-contact-card-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.t60p-contact-mini-card {
  padding: 18px;
  border: 1px solid rgba(90, 59, 36, 0.1);
  border-radius: 22px;
  background: #fffaf2;
}

.t60p-contact-mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--t60p-brown);
  font-size: 15px;
  font-weight: 950;
}

.t60p-contact-mini-card span,
.t60p-contact-mini-card a {
  color: rgba(90, 59, 36, 0.8);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
}

.t60p-contact-mini-card a {
  color: var(--t60p-orange-dark);
  font-weight: 850;
}

.t60p-contact-details {
  margin-top: 24px;
}

.t60p-contact-details summary {
  width: fit-content;
  list-style: none;
}

.t60p-contact-details summary::-webkit-details-marker {
  display: none;
}

.t60p-contact-reveal-box {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(90, 59, 36, 0.12);
  border-radius: 24px;
  background: var(--t60p-cream);
}

.t60p-contact-reveal-box p {
  margin: 0 0 14px;
  color: rgba(90, 59, 36, 0.84);
  font-size: 16px;
  line-height: 1.55;
}

.t60p-contact-reveal-box p:last-child {
  margin-bottom: 0;
}

.t60p-contact-reveal-box a {
  color: var(--t60p-orange-dark);
  font-weight: 850;
  text-decoration: none;
}

.t60p-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.t60p-contact-field {
  margin-bottom: 16px;
}

.t60p-contact-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--t60p-brown);
  font-size: 14px;
  font-weight: 850;
}

.t60p-contact-field input,
.t60p-contact-field select,
.t60p-contact-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(90, 59, 36, 0.18);
  border-radius: 16px;
  background: #fffaf2;
  color: var(--t60p-brown);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.t60p-contact-field input:focus,
.t60p-contact-field select:focus,
.t60p-contact-field textarea:focus {
  border-color: rgba(232, 121, 34, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(232, 121, 34, 0.12);
}

.t60p-contact-field textarea {
  min-height: 145px;
  resize: vertical;
}

/* Honigtopf gegen Spam-Roboter — für Menschen unsichtbar */
.t60p-contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.t60p-contact-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.t60p-contact-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--t60p-orange);
}

.t60p-contact-check a {
  color: var(--t60p-orange-dark);
  font-weight: 850;
}

.t60p-contact-success {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(167, 215, 197, 0.36);
  color: #315c4b;
  font-weight: 850;
}

.t60p-contact-form-errors {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 143, 163, 0.18);
  color: #7d2635;
  font-weight: 850;
}

.t60p-contact-note {
  margin: 16px 0 0;
  color: rgba(90, 59, 36, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.t60p-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.t60p-contact-info-box {
  padding: 26px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--t60p-soft-shadow);
}

.t60p-contact-info-box h3 {
  margin: 0 0 10px;
  color: var(--t60p-brown);
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.t60p-contact-info-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 17px;
  background: var(--t60p-yellow);
  color: var(--t60p-brown);
  font-size: 24px;
  font-weight: 900;
}

.t60p-contact-info-box:nth-child(2) .t60p-contact-info-icon {
  background: var(--t60p-mint);
}

.t60p-contact-info-box:nth-child(3) .t60p-contact-info-icon {
  background: var(--t60p-pink);
}

@media screen and (max-width: 980px) {
  .t60p-contact-grid {
    grid-template-columns: 1fr;
  }

  .t60p-contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 680px) {
  .t60p-contact-container {
    width: min(100% - 28px, 1180px);
  }

  .t60p-contact-section {
    padding: 48px 0;
  }

  .t60p-contact-heading-lg {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.08;
  }

  .t60p-contact-buttons,
  .t60p-contact-form-row,
  .t60p-contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .t60p-contact-button {
    width: 100%;
  }

  .t60p-contact-card,
  .t60p-contact-form-card {
    border-radius: 28px;
  }

  .t60p-contact-details summary {
    width: 100%;
  }
}


/* ===== 23-rechtliches.css ===== */
/* ============================================================
   Rechtliche Seiten (Impressum, Datenschutz)
   ============================================================ */

.t60p-legal {
  --t60p-orange: #e87922;
  --t60p-orange-dark: #c85f16;
  --t60p-brown: #5a3b24;
  --t60p-cream: #fff8ec;
  --t60p-sand: #f3dfc2;

  background:
    radial-gradient(circle at 10% 8%, rgba(232, 121, 34, 0.09), transparent 30%),
    var(--t60p-cream);
  color: var(--t60p-brown);
  font-family: inherit;
}

.t60p-legal * {
  box-sizing: border-box;
}

.t60p-legal-container {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0;
}

.t60p-legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.13);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.t60p-legal-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--t60p-orange);
}

.t60p-legal h1 {
  margin: 0 0 26px;
  color: var(--t60p-brown);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.t60p-legal h2 {
  margin: 40px 0 12px;
  color: var(--t60p-brown);
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.t60p-legal h3 {
  margin: 26px 0 8px;
  color: var(--t60p-brown);
  font-size: 18px;
  line-height: 1.25;
}

.t60p-legal p,
.t60p-legal li {
  color: rgba(90, 59, 36, 0.86);
  font-size: 17px;
  line-height: 1.72;
}

.t60p-legal p {
  margin: 0 0 14px;
}

.t60p-legal ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.t60p-legal li {
  margin-bottom: 7px;
}

.t60p-legal a {
  color: var(--t60p-orange-dark);
  font-weight: 850;
}

.t60p-legal-card {
  margin: 0 0 14px;
  padding: 22px 24px;
  border: 1px solid rgba(90, 59, 36, 0.11);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(90, 59, 36, 0.08);
}

.t60p-legal-card p:last-child {
  margin-bottom: 0;
}

.t60p-legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--t60p-orange);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(232, 121, 34, 0.24);
}

.t60p-legal-back:hover {
  background: var(--t60p-orange-dark);
  color: #ffffff;
}

@media screen and (max-width: 680px) {
  .t60p-legal-container {
    width: min(100% - 28px, 820px);
    padding: 44px 0;
  }

  .t60p-legal-card {
    padding: 20px;
    border-radius: 22px;
  }

  .t60p-legal-back {
    width: 100%;
  }
}


/* ===== 30-404.css ===== */
/* ============================================================
   Fehlerseite 404
   ============================================================ */

.t60p-404-page {
  --t60p-orange: #e87922;
  --t60p-orange-dark: #c85f16;
  --t60p-brown: #5a3b24;
  --t60p-cream: #fff8ec;
  --t60p-sand: #f3dfc2;
  --t60p-yellow: #ffd166;
  --t60p-pink: #ff8fa3;
  --t60p-mint: #a7d7c5;
  --t60p-white: #ffffff;

  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 209, 102, 0.5), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(167, 215, 197, 0.42), transparent 28%),
    radial-gradient(circle at 78% 86%, rgba(255, 143, 163, 0.28), transparent 30%),
    linear-gradient(135deg, #fff8ec 0%, #f3d6ae 100%);
  color: var(--t60p-brown);
  font-family: inherit;
}

.t60p-404-page * {
  box-sizing: border-box;
}

.t60p-404-page::before,
.t60p-404-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.t60p-404-page::before {
  width: 210px;
  height: 210px;
  left: -80px;
  bottom: 120px;
  background: rgba(255, 209, 102, 0.62);
}

.t60p-404-page::after {
  width: 260px;
  height: 260px;
  right: -110px;
  bottom: 80px;
  background: rgba(232, 121, 34, 0.2);
}

.t60p-404-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0 clamp(48px, 7vw, 80px);
  display: grid;
  gap: 34px;
}

.t60p-404-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.t60p-404-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(90, 59, 36, 0.08);
  white-space: nowrap;
}

.t60p-404-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--t60p-orange);
}

.t60p-404-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.t60p-404-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.13);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.t60p-404-eyebrow::before {
  content: "✦";
  font-size: 13px;
}

.t60p-404-title {
  max-width: 820px;
  margin: 0;
  color: var(--t60p-brown);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.t60p-404-title span {
  color: var(--t60p-orange-dark);
}

.t60p-404-text {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.t60p-404-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.t60p-404-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.t60p-404-button:hover {
  transform: translateY(-2px);
}

.t60p-404-button-primary {
  background: var(--t60p-orange);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(232, 121, 34, 0.24);
}

.t60p-404-button-primary:hover {
  background: var(--t60p-orange-dark);
  color: #ffffff;
}

.t60p-404-button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--t60p-brown);
  border-color: rgba(90, 59, 36, 0.14);
}

.t60p-404-button-secondary:hover {
  background: var(--t60p-sand);
  color: var(--t60p-brown);
}

.t60p-404-card {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(90, 59, 36, 0.11);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(90, 59, 36, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.t60p-404-number {
  display: block;
  margin: 0 0 14px;
  color: rgba(232, 121, 34, 0.18);
  font-size: clamp(96px, 12vw, 150px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.t60p-404-card h2 {
  margin: 0;
  color: var(--t60p-brown);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.t60p-404-card p {
  margin: 14px 0 0;
  color: rgba(90, 59, 36, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.t60p-404-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.t60p-404-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.82);
  color: var(--t60p-brown);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.t60p-404-link::after {
  content: "→";
  color: var(--t60p-orange-dark);
  font-weight: 950;
}

.t60p-404-link:hover {
  background: rgba(232, 121, 34, 0.12);
  color: var(--t60p-orange-dark);
  transform: translateX(2px);
}

@media screen and (max-width: 900px) {
  .t60p-404-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .t60p-404-card {
    max-width: 640px;
  }
}

@media screen and (max-width: 620px) {
  .t60p-404-container {
    width: min(100% - 28px, 1180px);
    padding: 22px 0 44px;
    gap: 28px;
  }

  .t60p-404-header {
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
  }

  .t60p-404-badge {
    padding: 8px 11px;
    font-size: 12px;
  }

  .t60p-404-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .t60p-404-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .t60p-404-button {
    width: 100%;
  }

  .t60p-404-card {
    border-radius: 28px;
  }
}


/* ===== 31-passwort.css ===== */
/* ============================================================
   Baustellen-/Passwortseite (steht für sich, ohne Kopf- und Fußbereich)
   ============================================================ */

.t60p-password-page {
  --t60p-orange: #e87922;
  --t60p-orange-dark: #c85f16;
  --t60p-brown: #5a3b24;
  --t60p-brown-soft: #8a6546;
  --t60p-cream: #fff8ec;
  --t60p-sand: #f3dfc2;
  --t60p-yellow: #ffd166;
  --t60p-pink: #ff8fa3;
  --t60p-mint: #a7d7c5;
  --t60p-white: #ffffff;

  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 209, 102, 0.48), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(167, 215, 197, 0.42), transparent 28%),
    radial-gradient(circle at 75% 85%, rgba(255, 143, 163, 0.32), transparent 30%),
    linear-gradient(135deg, #fff8ec 0%, #f3d6ae 100%);
  color: var(--t60p-brown);
  font-family: inherit;
}

.t60p-password-page * {
  box-sizing: border-box;
}

.t60p-password-page::before,
.t60p-password-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.t60p-password-page::before {
  width: 210px;
  height: 210px;
  left: -80px;
  bottom: 120px;
  background: rgba(255, 209, 102, 0.65);
}

.t60p-password-page::after {
  width: 260px;
  height: 260px;
  right: -110px;
  bottom: 80px;
  background: rgba(232, 121, 34, 0.22);
}

.t60p-password-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 34px;
}

.t60p-password-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.t60p-password-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.t60p-password-logo img {
  display: block;
  width: auto;
  height: 64px;
  max-width: 235px;
  object-fit: contain;
}

.t60p-password-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(90, 59, 36, 0.08);
}

.t60p-password-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--t60p-orange);
}

.t60p-password-main {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.t60p-password-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 121, 34, 0.13);
  color: var(--t60p-orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.t60p-password-eyebrow::before {
  content: "✦";
  font-size: 13px;
}

.t60p-password-title {
  max-width: 780px;
  margin: 0;
  color: var(--t60p-brown);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.t60p-password-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(90, 59, 36, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.t60p-password-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 28px;
}

.t60p-password-point {
  padding: 17px;
  border: 1px solid rgba(90, 59, 36, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(90, 59, 36, 0.07);
}

.t60p-password-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--t60p-brown);
  font-size: 15px;
  font-weight: 950;
}

.t60p-password-point span {
  display: block;
  color: rgba(90, 59, 36, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.t60p-password-card {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(90, 59, 36, 0.11);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(90, 59, 36, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.t60p-password-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 209, 102, 0.24), transparent 30%),
    radial-gradient(circle at 90% 25%, rgba(232, 121, 34, 0.14), transparent 32%);
}

.t60p-password-card-title {
  margin: 0;
  color: var(--t60p-brown);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.t60p-password-card-text {
  margin: 12px 0 0;
  color: rgba(90, 59, 36, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.t60p-password-form {
  margin-top: 22px;
}

.t60p-form-errors {
  margin: 0 0 14px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255, 143, 163, 0.18);
  color: #7d2635;
  font-size: 14px;
  line-height: 1.45;
}

.t60p-password-field {
  margin-bottom: 14px;
}

.t60p-password-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--t60p-brown);
  font-size: 14px;
  font-weight: 900;
}

.t60p-password-field input {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(90, 59, 36, 0.18);
  border-radius: 17px;
  background: #fffaf2;
  color: var(--t60p-brown);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.t60p-password-field input:focus {
  border-color: rgba(232, 121, 34, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(232, 121, 34, 0.12);
}

.t60p-password-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--t60p-orange);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(232, 121, 34, 0.24);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.t60p-password-button:hover {
  background: var(--t60p-orange-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(232, 121, 34, 0.3);
}

.t60p-password-note {
  margin: 13px 0 0;
  color: rgba(90, 59, 36, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.t60p-password-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 59, 36, 0.12);
  color: rgba(90, 59, 36, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.t60p-password-footer strong {
  color: var(--t60p-brown);
  font-weight: 950;
}

.t60p-password-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.t60p-password-footer a {
  color: rgba(90, 59, 36, 0.76);
  font-weight: 850;
  text-decoration: none;
}

.t60p-password-footer a:hover {
  color: var(--t60p-orange-dark);
}

@media screen and (max-width: 940px) {
  .t60p-password-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .t60p-password-points {
    grid-template-columns: 1fr;
  }

  .t60p-password-card {
    max-width: 620px;
  }
}

@media screen and (max-width: 620px) {
  .t60p-password-container {
    width: min(100% - 28px, 1180px);
    padding: 22px 0;
    gap: 28px;
  }

  .t60p-password-header {
    align-items: flex-start;
    gap: 12px;
  }

  .t60p-password-logo img {
    height: 48px;
    max-width: 180px;
  }

  .t60p-password-status {
    padding: 8px 11px;
    font-size: 12px;
  }

  .t60p-password-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .t60p-password-card {
    border-radius: 28px;
  }

  .t60p-password-footer {
    display: grid;
    gap: 10px;
  }

  .t60p-password-footer-links {
    display: grid;
    gap: 8px;
  }
}
