/* =====================================================================
   THYNK Landingpage – „Deutschland bewegt sich" (Home-Redesign, Phase 1)
   Alle Selektoren sind unter .thynk-lp gescopt, damit nichts auf die
   restlichen (funktionalen) Seiten abfärbt. Tokens aus thynk-public.css
   (:root{ --thynk-* }) werden konsequent per var() verwendet.
   ===================================================================== */

/* ---------- Grundlagen ------------------------------------------------ */
.thynk-lp {
  font-family: var(--thynk-font-body);
  color: var(--thynk-ink);
  background: var(--thynk-paper);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
.thynk-lp *,
.thynk-lp *::before,
.thynk-lp *::after { box-sizing: border-box; }

.thynk-lp img { max-width: 100%; display: block; }

/* Sticky-Nav berücksichtigen, wenn Anker angesprungen werden. */
.thynk-lp [id] { scroll-margin-top: 84px; }

.thynk-lp a { color: inherit; }

/* ---------- Layout: Container & Sektionen ---------------------------- */
.thynk-lp .lp-container {
  max-width: var(--thynk-maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.thynk-lp .lp-section { padding: 88px 0; }

.thynk-lp .lp-section--dark {
  /* Gehobenes Charcoal statt Fast-Schwarz (var(--thynk-ink) #14130f wirkte zu hart). */
  background: #211f1a;
  color: var(--thynk-warmwhite);
}
.thynk-lp .lp-section--accent {
  background: var(--thynk-accent);
  color: var(--thynk-warmwhite);
  text-align: center;
}

/* ---------- Typografie ---------------------------------------------- */
.thynk-lp .lp-h2,
.thynk-lp .lp-hero__title,
.thynk-lp .lp-cta__title {
  font-family: var(--thynk-font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .98;
  margin: 0 0 .35em;
}

.thynk-lp .lp-h2 { font-size: clamp(32px, 4.5vw, 48px); }
.thynk-lp .lp-hero__title { font-size: clamp(48px, 9vw, 96px); }
.thynk-lp .lp-cta__title { font-size: clamp(34px, 6vw, 58px); }

.thynk-lp .lp-eyebrow {
  display: block;
  font-family: var(--thynk-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--thynk-accent);
  margin: 0 0 16px;
}

.thynk-lp .lp-sub {
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--thynk-muted-2);
  max-width: 640px;
  margin: 0 0 40px;
}
.thynk-lp .lp-section--dark .lp-sub {
  color: rgba(250, 248, 243, .68);
}

/* ---------- Buttons -------------------------------------------------- */
.thynk-lp .lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--thynk-font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--thynk-radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.thynk-lp .lp-btn:hover { transform: translateY(-1px); }

.thynk-lp .lp-btn--primary {
  background: var(--thynk-accent);
  color: var(--thynk-warmwhite);
}
.thynk-lp .lp-btn--primary:hover { background: var(--thynk-accent-hover); }

.thynk-lp .lp-btn--ghost {
  background: transparent;
  color: inherit;
  border: 2px solid var(--thynk-line-light);
}
.thynk-lp .lp-btn--ghost:hover {
  background: rgba(250, 248, 243, .06);
  border-color: rgba(250, 248, 243, .28);
}

.thynk-lp .lp-btn--on-accent {
  background: var(--thynk-warmwhite);
  color: var(--thynk-accent);
}
.thynk-lp .lp-btn--on-accent:hover { background: #fff; }

/* ---------- Navigation ---------------------------------------------- */
.thynk-lp .lp-nav {
  position: sticky;
  top: 0;
  /* Über Leaflet-Panes/-Controls halten, die sonst über die Sticky-Nav floaten. */
  z-index: 1000;
  padding: 14px 0;
  background: rgba(33, 31, 26, .90);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--thynk-line-light);
}
.thynk-lp .lp-nav .lp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.thynk-lp .lp-nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--thynk-warmwhite);
  font-family: var(--thynk-font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
}
/* Weißer Chip nur, wenn echter Logo-Inhalt direkt enthalten ist
   (ACF-Bild oder Text-Fallback). */
.thynk-lp .lp-nav__logo:has(img),
.thynk-lp .lp-nav__logo:has(span) {
  background: transparent;
  padding: 0;
  border-radius: var(--thynk-radius);
}
/* WP-custom_logo: get_custom_logo() liefert einen eigenen <a>, der aus dem
   Nav-Logo-Anchor herausgeparst wird (verschachtelte <a> sind ungültig) und
   zum Geschwister-Element wird. Leeren Anchor ausblenden, echtes Logo als Chip. */
.thynk-lp .lp-nav__logo:has(+ .custom-logo-link) { display: none; }
.thynk-lp .lp-nav .custom-logo-link {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: var(--thynk-radius);
}
.thynk-lp .lp-nav__logo img,
.thynk-lp .lp-nav .custom-logo {
  height: 30px !important;
  width: auto !important;
  max-width: 160px !important;
}

.thynk-lp .lp-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.thynk-lp .lp-nav__links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: rgba(250, 248, 243, .82);
  transition: color .15s ease;
}
.thynk-lp .lp-nav__links a:hover { color: var(--thynk-warmwhite); }

/* Die App-Nav-Basisregel (.thynk-nav__item a in thynk-public.css) bringt
   border-bottom + Padding mit — im LP-Look neutralisieren. */
.thynk-lp .lp-nav__links .thynk-nav__item { margin: 0; }
.thynk-lp .lp-nav__links .thynk-nav__item > a {
  display: inline-block;
  padding: 0;
  border-bottom: 0;
}
.thynk-lp .lp-nav__links .thynk-nav__item.is-active > a { color: var(--thynk-accent); }
.thynk-lp .lp-nav__links .thynk-nav__item--logout > a { color: rgba(250, 248, 243, .6); margin-top: 0; }

.thynk-lp .lp-nav__cta { flex: 0 0 auto; padding: 12px 22px; }

/* ---------- Nav: Hamburger + Mobile-Drawer -------------------------- */
.thynk-lp .lp-nav__burger {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: 6px;
  background: transparent;
  border: 1px solid var(--thynk-line-light);
  border-radius: var(--thynk-radius);
  cursor: pointer;
}
.thynk-lp .lp-nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--thynk-warmwhite);
  border-radius: 2px;
}

.thynk-lp .lp-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 14, 11, .6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.thynk-lp .lp-nav__overlay--open { display: block; }
.thynk-lp .lp-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(84vw, 340px);
  padding: 72px 28px 28px;
  background: #211f1a;
  border-left: 1px solid var(--thynk-line-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.thynk-lp .lp-nav__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  color: var(--thynk-warmwhite);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.thynk-lp .lp-nav__mobile {
  list-style: none;
  margin: 0;
  padding: 0;
}
.thynk-lp .lp-nav__mobile .thynk-nav__item { margin: 0; }
.thynk-lp .lp-nav__mobile .thynk-nav__item > a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: rgba(250, 248, 243, .86);
  border-bottom: 1px solid var(--thynk-line-light);
}
.thynk-lp .lp-nav__mobile .thynk-nav__item.is-active > a { color: var(--thynk-accent); }
.thynk-lp .lp-nav__mobile-cta { margin-top: 20px; }

/* ---------- Hero ----------------------------------------------------- */
.thynk-lp .lp-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(64px, 10vh, 120px);
  padding-bottom: clamp(64px, 10vh, 112px);
  /* Fallback ohne Medium: weicheres Diagonalstreifen-Muster mit Verlauf. */
  background:
    linear-gradient(180deg, rgba(33, 31, 26, .50), rgba(33, 31, 26, .68) 45%, #211f1a),
    repeating-linear-gradient(45deg, #2f2c24, #2f2c24 13px, #28251d 13px, #28251d 26px);
  color: var(--thynk-warmwhite);
}

/* Vollflächige Medien-Ebene (Video oder Foto-Slideshow) hinter Scrim + Text. */
.thynk-lp .lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.thynk-lp .lp-hero__video,
.thynk-lp .lp-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.thynk-lp .lp-hero__slide { opacity: 0; }
.thynk-lp .lp-hero__slide.is-active { opacity: 1; }
/* Verlaufs-Scrim für Text-Lesbarkeit – leichter, damit das Medium durchscheint.
   Zusätzlicher Verlauf nach links: der linksbündige Text bekommt AA-Kontrast,
   während die rechte Bildhälfte hell und offen bleibt. */
.thynk-lp .lp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 19, 15, .55), rgba(20, 19, 15, .28) 46%, rgba(20, 19, 15, 0) 72%),
    linear-gradient(180deg, rgba(20, 19, 15, .42), rgba(20, 19, 15, .62) 55%, rgba(20, 19, 15, .78));
}
.thynk-lp .lp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.thynk-lp .lp-hero__text { max-width: 780px; }

/* Sanfte Crossfade-Slideshow (nur bei mehreren Bildern; Reduced-Motion → nur erstes Bild). */
@media (prefers-reduced-motion: no-preference) {
  .thynk-lp .lp-hero__bg[data-slides="2"] .lp-hero__slide,
  .thynk-lp .lp-hero__bg[data-slides="3"] .lp-hero__slide { opacity: 0; }

  .thynk-lp .lp-hero__bg[data-slides="2"] .lp-hero__slide {
    animation: lp-hero-fade2 16s infinite ease-in-out;
  }
  .thynk-lp .lp-hero__bg[data-slides="2"] .lp-hero__slide:nth-child(2) { animation-delay: 8s; }

  .thynk-lp .lp-hero__bg[data-slides="3"] .lp-hero__slide {
    animation: lp-hero-fade3 24s infinite ease-in-out;
  }
  .thynk-lp .lp-hero__bg[data-slides="3"] .lp-hero__slide:nth-child(2) { animation-delay: 8s; }
  .thynk-lp .lp-hero__bg[data-slides="3"] .lp-hero__slide:nth-child(3) { animation-delay: 16s; }
}
@keyframes lp-hero-fade2 {
  0%     { opacity: 1; }
  43.75% { opacity: 1; }
  50%    { opacity: 0; }
  93.75% { opacity: 0; }
  100%   { opacity: 1; }
}
@keyframes lp-hero-fade3 {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  29%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}
.thynk-lp .lp-hero__title { margin-bottom: 24px; }
.thynk-lp .lp-hero__accent {
  color: var(--thynk-accent);
  font-style: normal;
}
.thynk-lp .lp-hero__lead {
  max-width: 620px;
  font-size: clamp(18px, 2.2vw, 21px);
  color: rgba(250, 248, 243, .94);
  margin: 0 0 32px;
}
.thynk-lp .lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.thynk-lp .lp-hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: rgba(250, 248, 243, .78);
}
.thynk-lp .lp-hero__bullets li {
  position: relative;
  padding-left: 18px;
}
.thynk-lp .lp-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--thynk-accent);
}
/* ---------- Bild-Platzhalter ---------------------------------------- */
.thynk-lp .lp-imgph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 12px;
  text-align: center;
  border: 1px dashed rgba(20, 19, 15, .28);
  border-radius: var(--thynk-radius);
  background: repeating-linear-gradient(45deg, #ece6d9, #ece6d9 12px, #e2dbcb 12px, #e2dbcb 24px);
  color: var(--thynk-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .04em;
}
.thynk-lp .lp-imgph::after { content: "Bild"; }
.thynk-lp .lp-imgph[data-label]::after { content: attr(data-label); }

/* ---------- Grids (gemeinsam) --------------------------------------- */
.thynk-lp .lp-cards,
.thynk-lp .lp-stepgrid,
.thynk-lp .lp-quotes,
.thynk-lp .lp-photostrip,
.thynk-lp .lp-eventgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ---------- Warum: Karten ------------------------------------------- */
.thynk-lp .lp-card {
  border: 1px solid var(--thynk-line-dark);
  border-radius: var(--thynk-radius);
  padding: 32px;
  background: var(--thynk-warmwhite);
}
.thynk-lp .lp-card__num {
  font-family: var(--thynk-font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--thynk-accent);
  margin-bottom: 14px;
}
.thynk-lp .lp-card__title {
  font-family: var(--thynk-font-head);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.1;
  font-size: clamp(22px, 2.4vw, 26px);
  margin: 0 0 12px;
}
.thynk-lp .lp-card__text {
  margin: 0;
  color: var(--thynk-muted-2);
  font-size: 16px;
}

/* ---------- Teilnehmerstimmen --------------------------------------- */
.thynk-lp .lp-quote {
  margin: 0;
  border: 1px solid var(--thynk-line-dark);
  border-radius: var(--thynk-radius);
  padding: 32px;
  background: var(--thynk-warmwhite);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thynk-lp .lp-quote__foto {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}
.thynk-lp .lp-quote__foto img,
.thynk-lp .lp-quote__foto .lp-imgph {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  object-fit: cover;
  border-radius: 50%;
  padding: 0;
  font-size: 10px;
}
.thynk-lp .lp-quote__text {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}
.thynk-lp .lp-quote__name {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--thynk-muted);
  letter-spacing: .02em;
}

/* ---------- Ablauf: Schritte ---------------------------------------- */
.thynk-lp .lp-step {
  border-top: 2px solid var(--thynk-accent);
  padding-top: 22px;
}
.thynk-lp .lp-step__num {
  font-family: var(--thynk-font-head);
  font-weight: 800;
  font-size: 56px;
  line-height: .9;
  color: var(--thynk-accent);
  margin-bottom: 12px;
}
.thynk-lp .lp-step__title {
  font-family: var(--thynk-font-head);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.1;
  font-size: clamp(22px, 2.4vw, 26px);
  margin: 0 0 12px;
}
.thynk-lp .lp-step__text {
  margin: 0;
  color: rgba(250, 248, 243, .72);
  font-size: 16px;
}

/* ---------- Atmosphäre: Foto-Strip ---------------------------------- */
.thynk-lp .lp-photo {
  border-radius: var(--thynk-radius);
  overflow: hidden;
}
.thynk-lp .lp-photo img,
.thynk-lp .lp-photo .lp-imgph {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--thynk-radius);
}

/* ---------- FAQ ------------------------------------------------------ */
.thynk-lp .lp-faqlist {
  max-width: 820px;
  border-top: 1px solid var(--thynk-line-dark);
}
.thynk-lp .lp-faq__item {
  border-bottom: 1px solid var(--thynk-line-dark);
}
.thynk-lp .lp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--thynk-font-head);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.25;
}
.thynk-lp .lp-faq__q::-webkit-details-marker { display: none; }
.thynk-lp .lp-faq__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--thynk-accent);
  color: var(--thynk-accent);
  font-family: var(--thynk-font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: transform .15s ease;
}
.thynk-lp details[open] .lp-faq__icon { transform: rotate(45deg); }
.thynk-lp .lp-faq__a {
  margin: 0;
  padding: 0 0 22px;
  color: var(--thynk-muted-2);
  font-size: 16px;
  max-width: 720px;
}

/* ---------- Termine: Event-Karten ----------------------------------- */
.thynk-lp .lp-termine__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 1px dashed var(--thynk-line-dark);
  border-radius: var(--thynk-radius);
  padding: 40px;
}
.thynk-lp .lp-termine__empty p { margin: 0; color: var(--thynk-muted-2); }

.thynk-lp .lp-eventcard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--thynk-line-dark);
  border-radius: var(--thynk-radius);
  padding: 28px;
  background: var(--thynk-warmwhite);
}
.thynk-lp .lp-eventcard__date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--thynk-accent);
}
.thynk-lp .lp-eventcard__title {
  font-family: var(--thynk-font-head);
  font-weight: 700;
  text-transform: none;
  line-height: 1.1;
  font-size: 24px;
  margin: 2px 0 4px;
}
.thynk-lp .lp-eventcard__title a { text-decoration: none; }
.thynk-lp .lp-eventcard__title a:hover { color: var(--thynk-accent); }
.thynk-lp .lp-eventcard__meta {
  font-size: 15px;
  color: var(--thynk-muted-2);
}
.thynk-lp .lp-eventcard .thynk-map {
  height: 120px;
  border-radius: var(--thynk-radius);
  overflow: hidden;
  margin: 10px 0;
  /* Eigener Stacking-Context: Leaflets hohe interne z-Indizes bleiben eingesperrt
     und floaten beim Scrollen nicht mehr über die Sticky-Nav. */
  position: relative;
  z-index: 0;
  isolation: isolate;
}
.thynk-lp .lp-eventcard .lp-btn { margin-top: auto; }

/* ---------- Final-CTA (Lila) ---------------------------------------- */
.thynk-lp .lp-cta__text {
  font-size: clamp(18px, 2.4vw, 22px);
  color: rgba(250, 248, 243, .9);
  max-width: 620px;
  margin: 0 auto 32px;
}

/* ---------- Footer --------------------------------------------------- */
.thynk-lp .lp-footer { padding: 56px 0 40px; }
.thynk-lp .lp-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--thynk-line-light);
}
.thynk-lp .lp-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--thynk-warmwhite);
  font-family: var(--thynk-font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
}
.thynk-lp .lp-footer__logo:has(img),
.thynk-lp .lp-footer__logo:has(span) {
  background: transparent;
  padding: 0;
  border-radius: var(--thynk-radius);
}
.thynk-lp .lp-footer__logo:has(+ .custom-logo-link) { display: none; }
.thynk-lp .lp-footer .custom-logo-link {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: var(--thynk-radius);
}
.thynk-lp .lp-footer__logo img,
.thynk-lp .lp-footer .custom-logo {
  height: 30px !important;
  width: auto !important;
  max-width: 160px !important;
}
.thynk-lp .lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.thynk-lp .lp-footer__links a {
  text-decoration: none;
  font-size: 15px;
  color: rgba(250, 248, 243, .78);
  transition: color .15s ease;
}
.thynk-lp .lp-footer__links a:hover { color: var(--thynk-warmwhite); }
.thynk-lp .lp-footer__copy {
  margin: 24px 0 0;
  font-size: 13px;
  color: rgba(250, 248, 243, .5);
}

/* ---------- Responsive ---------------------------------------------- */
@media (max-width: 820px) {
  .thynk-lp .lp-container { padding: 0 20px; }
  .thynk-lp .lp-section { padding: 56px 0; }
  .thynk-lp .lp-nav { padding: 12px 0; }
  .thynk-lp .lp-nav__links { display: none; }
  .thynk-lp .lp-nav__cta { display: none; }
  .thynk-lp .lp-nav__burger { display: flex; margin-left: auto; }

  .thynk-lp .lp-stepgrid,
  .thynk-lp .lp-photostrip,
  .thynk-lp .lp-eventgrid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .thynk-lp .lp-section { padding: 44px 0; }
  .thynk-lp .lp-hero { padding-top: 44px; padding-bottom: 44px; }
  .thynk-lp .lp-card,
  .thynk-lp .lp-quote,
  .thynk-lp .lp-eventcard { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .thynk-lp { scroll-behavior: auto; }
  .thynk-lp *,
  .thynk-lp *::before,
  .thynk-lp *::after {
    transition: none !important;
    animation: none !important;
  }
}
