:root {
  --graphite: #121112;
  --graphite-2: #1e1b1d;
  --plum: #3b1f2b;
  --paper: #f7f3ec;
  --paper-2: #eee8dd;
  --stone: #d8cec0;
  --line: #cfc4b6;
  --muted: #716a63;
  --ink: #1c1918;
  --accent-bordeaux: #4b1622;
  --white: #ffffff;
  --container: 1160px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--graphite);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 236, .93);
  border-bottom: 1px solid rgba(207, 196, 182, .9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: .95rem;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}

.header-actions,
.cta-row,
.contact-options {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.link-quiet,
.text-link {
  color: var(--graphite);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--line);
}

.text-link.light {
  color: var(--paper);
  text-decoration-color: rgba(247, 243, 236, .45);
}

.hero-signature .text-link {
  color: var(--white);
  text-decoration-color: rgba(247, 243, 236, .68);
}

.mobile-copy,
.evidence-compact,
.footer-mobile-only {
  display: none;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover {
  background: var(--plum);
  color: var(--paper);
  border-color: var(--plum);
}

.btn-primary {
  color: var(--paper);
  background: var(--graphite);
  border-color: var(--graphite);
}

.btn-muted {
  color: var(--graphite);
  background: transparent;
  border-color: var(--line);
}

.btn-outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(247, 243, 236, .46);
}

.btn-large {
  min-height: 54px;
  padding: 15px 24px;
}

.section {
  padding: clamp(62px, 8vw, 112px) 0;
}

.hero {
  position: relative;
  color: var(--paper);
  background: var(--graphite);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background-image: url("../hintergrundbild.png");
  background-size: cover;
  background-position: center 48%;
  filter: saturate(.62) contrast(1.08) brightness(.58);
  transform: scale(1.025);
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 42%, rgba(247, 243, 236, .12), transparent 27%),
    radial-gradient(circle at 14% 84%, rgba(59, 31, 43, .4), transparent 34%),
    linear-gradient(90deg, rgba(10, 9, 10, .9) 0%, rgba(14, 13, 14, .77) 34%, rgba(18, 17, 18, .48) 68%, rgba(10, 9, 10, .68) 100%),
    linear-gradient(180deg, rgba(10, 9, 10, .48) 0%, rgba(10, 9, 10, .14) 42%, rgba(10, 9, 10, .82) 100%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  min-height: clamp(720px, 96vh, 920px);
  padding: clamp(96px, 13vw, 168px) 0 clamp(54px, 8vw, 96px);
}

.hero-copy {
  max-width: 920px;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.hero-signature {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 1px solid rgba(247, 243, 236, .24);
  text-shadow: 0 14px 34px rgba(0, 0, 0, .4);
}

.signature-line {
  width: 54px;
  height: 1px;
  margin-bottom: 30px;
  background: var(--accent-bordeaux);
}

.hero-signature strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.14;
}

.hero-signature p {
  color: rgba(247, 243, 236, .73);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-bordeaux);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6.7vw, 6.25rem);
  font-weight: 400;
}

.headline-lead {
  display: block;
  white-space: nowrap;
}

.headline-rest {
  display: block;
  white-space: normal;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.hero-subline {
  max-width: 680px;
  margin: 26px 0 30px;
  color: rgba(247, 243, 236, .84);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.trust-note {
  margin: 18px 0 0;
  color: rgba(247, 243, 236, .72);
  font-weight: 650;
}

.section-heading {
  margin-bottom: 34px;
}

.compact-heading {
  display: grid;
  grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
  gap: 34px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-heading p {
  max-width: 650px;
  color: var(--muted);
}

.narrow {
  max-width: 820px;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.hero-grid,
.split,
.contact-grid,
.trust-grid {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
}

.split {
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  align-items: start;
}

.urgent {
  background: var(--paper-2);
}

.crisis-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--graphite);
}

.crisis-list li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.crisis-list span {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.crisis-list p,
.legal-list p,
.principle-list p,
.process-axis p,
.trust-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.team {
  background: #faf7f1;
}

.team-intro {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.team-intro p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--line);
}

.partner-profile {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, .58fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(26px, 4vw, 42px) 0;
}

.partner-profile + .partner-profile {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 5vw, 58px);
}

.partner-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 360px;
  background-color: var(--graphite);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  filter: saturate(.72) contrast(1.04);
  box-shadow: inset 0 0 0 1px rgba(28, 25, 24, .08);
}

.partner-image-markus {
  background-image:
    url("../assets/dr-markus-weber.jpg"),
    linear-gradient(135deg, #171617 0%, #2a161c 52%, #4b1622 100%);
}

.partner-image-julia {
  background-image:
    url("../assets/julia-schneider.jpg"),
    linear-gradient(135deg, #171617 0%, #301820 52%, #4b1622 100%);
}

.partner-content {
  align-self: end;
}

.partner-role {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.partner-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 400;
}

.partner-content p:not(.partner-role) {
  color: var(--muted);
}

.credential-list {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: .95rem;
}

.credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--accent-bordeaux);
  border-radius: 50%;
}

.team-link {
  display: inline-flex;
  margin-top: 28px;
}

.services {
  background: var(--paper);
}

.legal-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--graphite);
}

.legal-list details {
  display: grid;
  grid-template-columns: minmax(160px, .35fr) minmax(0, .65fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.legal-list summary {
  list-style: none;
  cursor: default;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 850;
  line-height: 1.06;
}

.legal-list summary::-webkit-details-marker {
  display: none;
}

.why {
  background: #faf7f1;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-list > div {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.process {
  background: var(--paper-2);
}

.process-axis {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 32px 0 0;
  margin: 0;
  border-top: 1px solid var(--graphite);
}

.process-axis li {
  position: relative;
  padding: 0 26px 0 0;
}

.process-axis li::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--plum);
  border-radius: 50%;
}

.process-axis span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-bordeaux);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.trust {
  background: var(--graphite);
  color: var(--paper);
}

.evidence-zone {
  grid-template-columns: 1.15fr .9fr .9fr;
  align-items: stretch;
}

.trust .section-heading p,
.trust-card p {
  color: rgba(247, 243, 236, .66);
}

.trust-card {
  padding: 0 0 0 24px;
  border-left: 1px solid rgba(247, 243, 236, .24);
}

.trust-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.faq {
  background: #faf7f1;
}

.accordion {
  display: grid;
  border-top: 1px solid var(--graphite);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 68px;
  padding: 22px 58px 22px 0;
  list-style: none;
  cursor: pointer;
  position: relative;
  font-weight: 850;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 0;
  padding: 0 58px 24px 0;
  color: var(--muted);
}

.demo-owner {
  color: var(--paper);
  background: #171516;
  border-top: 1px solid rgba(247, 243, 236, .12);
}

.demo-owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.demo-owner-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(247, 243, 236, .72);
}

.demo-owner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.demo-owner-email {
  color: var(--white);
}

.demo-owner-email:hover {
  color: var(--paper);
}

.demo-owner-contact {
  padding-left: clamp(24px, 4vw, 44px);
  border-left: 1px solid rgba(247, 243, 236, .2);
}

.demo-owner-contact dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.demo-owner-contact div {
  display: grid;
  grid-template-columns: minmax(110px, .42fr) minmax(0, .58fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 243, 236, .14);
}

.demo-owner-contact dt {
  color: rgba(247, 243, 236, .52);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-owner-contact dd {
  margin: 0;
  color: var(--paper);
}

.demo-owner-contact a {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(75, 22, 34, .72);
}

.site-footer {
  padding: 44px 0 96px;
  color: rgba(247, 243, 236, .66);
  background: #0c0b0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer strong,
.site-footer a {
  color: var(--paper);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(247, 243, 236, .28);
}

.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0;
  background: var(--line);
  border-top: 1px solid rgba(247, 243, 236, .2);
}

.mobile-bottom-bar a {
  min-height: 58px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.mobile-bottom-bar a:first-child {
  color: var(--paper);
  background: var(--graphite);
}

.mobile-bottom-bar a:last-child {
  color: var(--graphite);
  background: var(--paper);
}

@media (max-width: 980px) {
  .hero-shell,
  .split,
  .demo-owner-grid,
  .evidence-zone {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    align-items: start;
  }

  .hero-signature {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(247, 243, 236, .24);
  }

  .sticky-heading {
    position: static;
  }

  .principle-list,
  .process-axis,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-profile {
    grid-template-columns: 1fr;
  }

  .partner-profile + .partner-profile {
    padding-left: 28px;
  }

  .partner-image {
    min-height: 300px;
  }

  .demo-owner-contact {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(247, 243, 236, .2);
    padding-top: 20px;
  }

  .process-axis {
    gap: 34px 0;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 54px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 54px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: .88rem;
  }

  .brand strong {
    max-width: 46vw;
    font-size: .78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    font-size: .66rem;
    opacity: .78;
  }

  .header-actions .link-quiet,
  .header-actions .btn-muted {
    display: none;
  }

  .header-actions .btn-primary {
    min-height: 38px;
    padding: 8px 12px;
    font-size: .82rem;
  }

  .section {
    padding: 36px 0;
  }

  .hero-shell {
    min-height: 640px;
    padding: 46px 0 34px;
    gap: 24px;
  }

  .hero::before {
    background-position: 19% 42%;
    filter: saturate(.58) contrast(1.08) brightness(.5);
    transform: scale(1.02);
  }

  .hero::after {
    background:
      radial-gradient(circle at 36% 30%, rgba(247, 243, 236, .08), transparent 26%),
      linear-gradient(90deg, rgba(10, 9, 10, .88) 0%, rgba(12, 11, 12, .72) 54%, rgba(10, 9, 10, .6) 100%),
      linear-gradient(180deg, rgba(10, 9, 10, .5) 0%, rgba(10, 9, 10, .34) 34%, rgba(10, 9, 10, .88) 100%);
  }

  h1 {
    font-size: clamp(1.78rem, 9.7vw, 2.74rem);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
  }

  .headline-lead,
  .headline-rest {
    display: block;
  }

  .headline-rest {
    white-space: normal;
  }

  .hero-subline {
    max-width: 25rem;
    margin: 16px 0 18px;
    font-size: .96rem;
    line-height: 1.38;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: .68rem;
  }

  .desktop-copy,
  .hero-secondary,
  .signature-detail,
  .mobile-hide {
    display: none !important;
  }

  .mobile-copy {
    display: inline;
  }

  .trust-note {
    margin-top: 12px;
    font-size: .88rem;
  }

  .hero-signature {
    padding-top: 22px;
  }

  .signature-line {
    margin-bottom: 14px;
  }

  .hero-signature strong {
    font-size: 1.18rem;
  }

  .cta-row,
  .contact-options,
  .demo-owner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-large,
  .contact-options .btn,
  .demo-owner-actions .btn {
    width: 100%;
  }

  .compact-heading,
  .legal-list details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compact-heading {
    gap: 12px;
    padding-bottom: 18px;
  }

  .crisis-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 13px 0;
  }

  .legal-list details {
    display: block;
    padding: 0;
  }

  .legal-list summary {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 38px 12px 0;
    cursor: pointer;
  }

  .legal-list summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--plum);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
  }

  .legal-list details[open] summary::after {
    content: "-";
  }

  .legal-list p {
    padding: 0 38px 12px 0;
    margin: 0;
    font-size: .94rem;
    line-height: 1.45;
  }

  .partner-grid,
  .principle-list,
  .process-axis {
    grid-template-columns: 1fr;
  }

  .team-intro {
    margin-bottom: 22px;
  }

  .partner-grid {
    gap: 0;
  }

  .partner-profile {
    gap: 20px;
    padding: 24px 0;
  }

  .partner-profile + .partner-profile {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .partner-image {
    min-height: 396px;
    max-height: 446px;
    background-position: center 8%;
  }

  .partner-content p:not(.partner-role) {
    margin: 10px 0 0;
    font-size: .94rem;
    line-height: 1.42;
  }

  .partner-content h3 {
    font-size: 1.72rem;
    line-height: 1.08;
  }

  .credential-list {
    gap: 6px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .credential-list li {
    font-size: .88rem;
  }

  .team-link {
    margin-top: 20px;
  }

  .demo-owner {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .demo-owner-actions {
    margin-top: 22px;
  }

  .demo-owner-contact div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .principle-list > div {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .principle-list {
    border-left: 0;
  }

  .principle-list span {
    margin-bottom: 18px;
  }

  .process-axis {
    padding-left: 22px;
    border-top: 0;
    border-left: 1px solid var(--graphite);
  }

  .process-axis li {
    padding: 0 0 16px 18px;
  }

  .process-axis li::before {
    top: 3px;
    left: -28px;
  }

  .trust-card {
    display: none;
  }

  .evidence-compact {
    display: block;
    margin: 12px 0 0;
    padding-top: 12px;
    color: rgba(247, 243, 236, .78);
    border-top: 1px solid rgba(247, 243, 236, .24);
    font-weight: 800;
  }

  .accordion summary {
    min-height: 52px;
    padding: 15px 38px 15px 0;
  }

  .accordion p {
    padding: 0 38px 16px 0;
    font-size: .94rem;
    line-height: 1.45;
  }

  .site-footer {
    padding: 28px 0 70px;
  }

  .footer-grid {
    gap: 12px;
  }

  .footer-brand,
  .footer-mobile-hide {
    display: none !important;
  }

  .footer-mobile-only {
    display: block;
  }

  .site-footer a {
    margin-bottom: 8px;
    font-size: .95rem;
  }

  .site-footer p {
    display: none;
  }

  .mobile-bottom-bar {
    display: grid;
    padding: 4px;
    gap: 4px;
    background: rgba(12, 11, 12, .96);
  }

  .mobile-bottom-bar a {
    min-height: 48px;
    font-size: .92rem;
    border-radius: 2px;
  }

  .mobile-bottom-bar a:first-child {
    border: 1px solid rgba(247, 243, 236, .2);
  }

  .mobile-bottom-bar a:last-child {
    color: var(--paper);
    background: rgba(247, 243, 236, .1);
    border: 1px solid rgba(247, 243, 236, .24);
  }
}

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