:root {
  --color-primary: #ed1c24;
  --color-primary-hover: #c8161d;
  --color-primary-soft: rgba(237, 28, 36, 0.1);
  --color-primary-soft-strong: rgba(237, 28, 36, 0.18);
  --color-ink: #141618;
  --color-graphite: #5a6169;
  --color-paper: oklch(0.982 0.012 70);
  --color-badge-accent: rgba(124, 58, 237, 0.92);
  --color-badge-accent-soft: rgba(124, 58, 237, 0.64);
  --color-badge-accent-transparent: rgba(124, 58, 237, 0);
  --color-black-22: rgba(0, 0, 0, 0.22);
  --color-bg-dark: #0d0d0d;
  --color-surface-dark: #181818;
  --color-surface-dark-soft: rgba(24, 24, 24, 0.88);
  --color-bg-light: #ffffff;
  --color-surface-light: #f6f6f6;
  --color-surface-soft: #fafafa;
  --color-border-light: #e8e8e8;
  --color-border-dark: #2a2a2a;
  --color-text-dark: #111111;
  --color-text-light: #ffffff;
  --color-text-muted: #5f5f5f;
  --color-text-muted-light: #b8b8b8;
  --color-overlay-dark: rgba(13, 13, 13, 0.64);
  --color-overlay-deep: rgba(13, 13, 13, 0.82);
  --color-focus: rgba(237, 28, 36, 0.4);
  --color-shadow-soft: rgba(17, 17, 17, 0.08);
  --color-shadow-strong: rgba(17, 17, 17, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shell-width: 1220px;
  --shell-gutter: clamp(20px, 4vw, 42px);
  --section-space: clamp(78px, 10vw, 118px);
  --shadow-soft: 0 24px 56px var(--color-shadow-soft);
  --shadow-strong: 0 30px 72px var(--color-shadow-strong);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-base: 260ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, var(--color-primary-soft) 0%, transparent 28%),
    var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea {
  appearance: none;
}

[hidden] {
  display: none !important;
}

.hidden,
.is--hidden {
  display: none !important;
}

.visually-hidden,
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.icon-svg,
.site-icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

#main,
.layout--page .page__content,
.layout--page .initial-content {
  max-width: none;
}

.page__content {
  float: none;
  width: 100%;
  padding: 0;
}

.page__content > * + * {
  margin-top: 0;
}

.page__hero--overlay,
.section-sep {
  display: none;
}

.masthead {
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 13, 0.8);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.masthead__inner-wrap {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.greedy-nav {
  align-items: center;
  background: transparent;
  gap: 1.1rem;
}

.greedy-nav .site-title {
  display: none;
}

.greedy-nav .site-logo {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
}

.site-logo img,
.site-footer__logo {
  display: block;
  width: auto;
  max-height: 2.75rem;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.site-logo img {
  transform: translateY(0.35rem);
}

.greedy-nav .site-logo:hover img,
.greedy-nav .site-logo:focus-visible img {
  transform: translateY(calc(0.35rem - 2px));
  opacity: 0.86;
}

.greedy-nav .visible-links a,
.greedy-nav .hidden-links a {
  color: var(--color-text-light);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.greedy-nav .visible-links a {
  margin: 0 0.7rem;
  padding: 0.2rem 0;
}

.greedy-nav .visible-links a::before {
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
}

.greedy-nav .visible-links a:hover,
.greedy-nav .visible-links a:focus-visible,
.greedy-nav .visible-links a.is-active-link {
  color: var(--color-text-light);
}

.greedy-nav .visible-links a.is-active-link::before {
  transform: scaleX(1);
}

.greedy-nav__toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  color: var(--color-text-light);
}

.navicon,
.navicon::before,
.navicon::after {
  position: absolute;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  background: var(--color-text-light);
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    background-color 220ms ease;
}

.navicon {
  top: 50%;
  transform: translate(-50%, -50%);
}

.navicon::before,
.navicon::after {
  content: "";
  transform: translateX(-50%);
}

.navicon::before {
  top: -0.4rem;
}

.navicon::after {
  top: 0.4rem;
}

.greedy-nav__toggle.close .navicon {
  background: transparent;
}

.greedy-nav__toggle.close .navicon::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.greedy-nav__toggle.close .navicon::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.greedy-nav .hidden-links {
  display: none !important;
}

.greedy-nav .hidden-links a {
  border-bottom: 1px solid var(--color-border-dark);
}

@media (max-width: 1180px) {
  .greedy-nav {
    gap: 0.8rem;
  }

  .site-logo img {
    max-height: 2.55rem;
  }

  .greedy-nav .visible-links a {
    margin: 0 0.45rem;
    font-size: 0.82rem;
  }
}

.page__footer {
  margin-top: 0;
  background:
    radial-gradient(circle at top right, var(--color-primary-soft-strong) 0%, transparent 28%),
    linear-gradient(180deg, var(--color-bg-dark), #131313);
}

.page__footer footer {
  margin-top: 0;
  max-width: none;
  padding: 0;
}

section.site-section,
.legal-hero,
.legal-body {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin: 0;
  padding: var(--section-space) 0;
  transform: translateX(-50%);
}

.section,
.legal-body {
  background: var(--color-bg-light);
}

.section--soft-light {
  background:
    linear-gradient(180deg, var(--color-surface-soft), var(--color-surface-light));
}

.section--dark,
.hero-section,
.legal-hero,
.site-footer {
  background:
    radial-gradient(circle at top right, var(--color-primary-soft-strong) 0%, transparent 28%),
    linear-gradient(180deg, var(--color-bg-dark), #131313);
  color: var(--color-text-light);
}

.section--community::before,
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--color-overlay-deep), var(--color-overlay-dark));
  pointer-events: none;
}

.hero-section::before {
  display: none;
}

section.site-section.hero-section {
  box-sizing: border-box;
  min-height: max(760px, calc(100vh - var(--masthead-height, 5.5rem)));
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(var(--shell-width), calc(100vw - (2 * var(--shell-gutter))));
  margin: 0 auto;
}

.hero-section__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-height: max(760px, calc(100vh - var(--masthead-height, 5.5rem)));
  padding-top: clamp(40px, 6vh, 72px);
  padding-bottom: clamp(40px, 6vh, 72px);
}

.hero-section__content {
  --hero-stack-gap: clamp(1.35rem, 1.8vw, 1.6rem);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: var(--hero-stack-gap);
  max-width: 690px;
  text-align: left;
}

.hero-section__content > * {
  margin: 0;
}

.hero-section__content .section-label {
  margin: 0;
}

.hero-section__content h1,
.section-heading h2,
.section-copy h2,
.cta-panel h2,
.legal-hero h1,
.not-found-page h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-section__content h1 {
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  overflow-wrap: normal;
  word-break: normal;
}

.section-heading h2,
.section-copy h2,
.cta-panel h2,
.legal-hero h1,
.not-found-page h1 {
  color: inherit;
  font-size: clamp(2rem, 3.9vw, 3.35rem);
  line-height: 1;
}

.hero-section__subtitle {
  color: var(--color-text-light);
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-section__lead,
.section-lead,
.cta-panel__closing,
.legal-hero p {
  color: var(--color-text-muted);
  font-size: 1.06rem;
}

.hero-section__lead,
.section-lead--light,
.section-copy--light p,
.cta-panel p,
.legal-hero p {
  color: var(--color-text-muted-light);
}

.hero-section__lead {
  max-width: 60ch;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-copy > * {
  margin: 0;
}

.contact-copy > .section-label,
.contact-copy > h2 {
  justify-self: center;
  text-align: center;
}

.hero-section__actions,
.cta-panel__actions,
.form-actions,
.cookie-panel__actions,
.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.88rem;
}

.hero-section__actions {
  margin-top: 0;
  justify-content: flex-start;
}

.inline-pills,
.socials,
.site-footer__list,
.reason-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inline-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.inline-pills li {
  padding: 0.55rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  font-size: 0.88rem;
  font-weight: 700;
}

.inline-pills--dark-text li {
  border-color: var(--color-border-light);
  background: var(--color-surface-soft);
  color: var(--color-text-dark);
}

.section-grid--about .inline-pills--dark-text {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.78rem;
}

.section-grid--about .inline-pills--dark-text li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.48rem 0.9rem;
  border-color: rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.info-card,
.reason-panel,
.value-card,
.location-card,
.form-card,
.contact-card,
.legal-card,
.not-found-page,
.cookie-panel__inner {
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background: var(--color-surface-dark-soft);
  box-shadow: var(--shadow-soft);
}

section.site-section.section--hero-facts {
  padding-top: clamp(28px, 5vw, 52px);
  padding-bottom: clamp(42px, 6vw, 68px);
  background:
    radial-gradient(circle at top left, rgba(237, 28, 36, 0.15) 0%, transparent 34%),
    linear-gradient(180deg, #f7ecec 0%, #fdf8f8 100%);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-fact-card {
  padding: 1.55rem;
  border: 1px solid rgba(237, 28, 36, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero-fact-card__label,
.hero-fact-card__value,
.hero-fact-card__text {
  margin: 0;
}

.hero-fact-card__label {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-fact-card__value {
  margin-top: 0.55rem;
  color: var(--color-text-dark);
  font-size: clamp(1.24rem, 1.8vw, 1.56rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-fact-card__text {
  margin-top: 0.8rem;
  color: var(--color-text-muted);
}

.section-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

.section-grid--about,
.section-grid--board,
.section-grid--reasons,
.section-grid--community,
.section-grid--location,
.section-grid--contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.section-heading--center {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: clamp(30px, 4vw, 46px);
  margin-left: auto;
  text-align: center;
}

.section-heading--dark > p:not(.section-label) {
  color: var(--color-text-muted-light);
}

.section-copy > p,
.section-heading > p,
.cta-panel p,
.legal-card p,
.form-card p,
.contact-card p,
.not-found-page p {
  margin-top: 0;
  margin-bottom: 0;
}

.section-copy > *,
.section-heading > .section-label,
.cta-panel__copy > .section-label,
.legal-hero__inner > .section-label,
.not-found-page > .section-label {
  margin: 0;
}

.section-copy > p + p,
.section-heading > p + p,
.form-card > p,
.legal-card p + p,
.contact-card p + p,
.not-found-page p + p {
  margin-top: 1rem;
}

.section-copy > p + p,
.section-heading > p + p,
.cta-panel__copy > p + p,
.legal-hero__inner > p + p,
.not-found-page > p + p {
  margin-top: 0;
}

.section-grid--about .section-copy {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(0.95rem, 1.5vw, 1.15rem);
}

.section-grid--about .section-copy > * {
  margin: 0;
}

.section-grid--about .section-copy > p + p {
  margin-top: 0;
}

.section-grid--about .section-copy .section-label {
  margin: 0;
}

.section-heading--center .section-label {
  margin-right: auto;
  margin-left: auto;
}

p.section-label,
p.cookie-panel__eyebrow,
p.info-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  width: fit-content;
  margin: 0 0 0.42rem;
  padding: 0.24rem 0.72rem;
  border: 1px solid var(--color-primary-soft-strong);
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-text-dark);
  font-size: 0.52rem !important;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-copy > p.section-label,
.section-heading > p.section-label,
.cta-panel__copy > p.section-label,
.legal-hero__inner > p.section-label,
.not-found-page > p.section-label {
  margin: 0;
  justify-self: center;
}

p.section-label.section-label--on-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-light);
}

.status-dot {
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.38);
  animation: pulse-dot 2.1s ease-out infinite;
}

.section-label--on-dark .status-dot {
  box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.32);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-dark);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.button,
.button:hover,
.button:focus-visible,
.button:active {
  text-decoration: none !important;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button[disabled],
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.button.is-loading {
  color: transparent !important;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--color-text-light);
  border-radius: 999px;
  animation: spin 700ms linear infinite;
}

.button--primary {
  background: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 18px 38px rgba(237, 28, 36, 0.18);
}

.button--primary,
.button--primary:visited,
.button--primary:hover,
.button--primary:focus-visible,
.button--primary:active {
  color: var(--color-text-light) !important;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-primary-hover);
  color: var(--color-text-light);
  box-shadow: 0 24px 46px rgba(200, 22, 29, 0.22);
}

.hero-section .button--primary,
.hero-section .button--primary:hover,
.hero-section .button--primary:focus-visible,
.hero-section .button--primary:active {
  color: var(--color-text-light);
}

.button--secondary {
  border-color: var(--color-border-light);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.button--secondary:not(.button--on-dark),
.button--secondary:not(.button--on-dark):visited,
.button--secondary:not(.button--on-dark):hover,
.button--secondary:not(.button--on-dark):focus-visible,
.button--secondary:not(.button--on-dark):active {
  color: var(--color-text-dark) !important;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-soft);
}

.button--on-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
}

.button--on-dark:hover,
.button--on-dark:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--color-text-light);
}

.hero-section .button--secondary.button--on-dark {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.96);
  color: #3f3a3a;
  box-shadow: 0 18px 34px rgba(13, 13, 13, 0.12);
}

.hero-section .button--secondary.button--on-dark:hover,
.hero-section .button--secondary.button--on-dark:focus-visible {
  border-color: rgba(255, 255, 255, 1);
  background: #ffffff;
  color: #3f3a3a;
  box-shadow: 0 22px 40px rgba(13, 13, 13, 0.16);
}

.section--cta .button--secondary.button--on-dark {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.96);
  color: #3f3a3a;
  box-shadow: 0 18px 34px rgba(13, 13, 13, 0.12);
}

.section--cta .button--secondary.button--on-dark:hover,
.section--cta .button--secondary.button--on-dark:focus-visible {
  border-color: rgba(255, 255, 255, 1);
  background: #ffffff;
  color: #3f3a3a;
  box-shadow: 0 22px 40px rgba(13, 13, 13, 0.16);
}

.text-link {
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-text-dark);
}

.media-stack {
  display: grid;
  gap: 1rem;
}

.media-card,
.board-media,
.location-card__media,
.community-collage__item,
.not-found-page__media {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.media-card,
.location-card,
.form-card,
.contact-card,
.legal-card,
.not-found-page {
  border-color: var(--color-border-light);
  background: rgba(255, 255, 255, 0.94);
}

.media-card img,
.board-media img,
.location-card__media img,
.community-collage__item img,
.not-found-page__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-media {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  clip-path: inset(0 round var(--radius-md));
}

.board-media img {
  border-radius: inherit;
  object-position: 50% 22%;
}

.info-card {
  padding: 1.35rem 1.45rem;
}

.info-card__title {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.1rem;
  line-height: 1.15;
}

.section-grid--about .info-card {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: clamp(1.5rem, 2.2vw, 1.8rem);
  border: 1px solid rgba(237, 28, 36, 0.16);
  background: linear-gradient(180deg, #2a2525 0%, #1c1919 100%);
  text-align: center;
}

.section-grid--about .info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.lift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lift-card {
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.lift-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface-dark);
}

.lift-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lift-card__content {
  padding: 1.45rem;
}

.lift-card__eyebrow {
  margin: 0 0 0.64rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.lift-card h3 {
  margin: 0 0 0.7rem;
  color: var(--color-text-dark);
  font-size: 1.34rem;
  line-height: 1.15;
}

.lift-card p:last-child {
  margin: 0;
  color: var(--color-text-muted);
}

.offer-card,
.value-card {
  padding: 1.5rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.offer-card {
  grid-column: span 2;
}

.offer-card--wide {
  grid-column: span 3;
}

.offer-card__icon,
.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.1rem;
}

.offer-card__icon .icon-svg,
.value-card__icon .icon-svg,
.offer-card__icon .site-icon,
.value-card__icon .site-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.offer-card h3,
.value-card h3,
.location-card__content h3,
.form-card h3,
.legal-card h2,
.legal-card h3 {
  margin: 0 0 0.7rem;
  color: var(--color-text-dark);
  font-size: 1.34rem;
  line-height: 1.15;
}

.offer-card p,
.value-card p,
.location-card__content p {
  margin: 0;
  color: var(--color-text-muted);
}

.reason-panel {
  padding: clamp(24px, 3vw, 34px);
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
}

.reason-copy__media {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.reason-copy__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.reason-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.reason-list li {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
}

.reason-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.reason-list__number {
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.community-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: clamp(590px, 44vw, 700px);
  column-gap: 1rem;
  row-gap: 0.72rem;
}

.community-collage__item {
  display: block;
  height: 100%;
  margin: 0;
}

.community-collage__item--large {
  grid-row: span 2;
}

.community-note {
  font-weight: 700;
}

.location-card__media {
  display: block;
  margin: 0;
}

.location-card__media img {
  margin: 0;
}

.location-card__content {
  padding: 1.5rem;
}

.location-card__content .button {
  margin-top: 1.2rem;
}

.map-panel {
  height: 100%;
}

.map-frame {
  position: relative;
  min-height: 560px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: var(--color-surface-light);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: inherit;
  padding: 2rem;
  text-align: center;
}

.map-placeholder p {
  max-width: 30ch;
  margin: 0;
  color: var(--color-text-muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 40px);
  justify-items: center;
  text-align: center;
}

.cta-panel__copy {
  display: grid;
  justify-items: center;
  max-width: 46rem;
  gap: 1rem;
}

.cta-panel__copy > * {
  margin: 0;
}

.cta-panel__closing {
  font-weight: 800;
}

.cta-panel__actions {
  justify-content: center;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-card__item {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.contact-card__item > div {
  display: grid;
  gap: 0.32rem;
}

.contact-card__item > div > * {
  margin: 0 !important;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.contact-card__icon .icon-svg,
.contact-card__icon .site-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-card__label {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a:hover,
.contact-card a:focus-visible,
.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: var(--color-primary);
}

.form-card {
  padding: clamp(24px, 4vw, 34px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-actions {
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.form-actions .button {
  width: 100%;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 18px;
  background: var(--color-surface-soft);
  color: var(--color-text-dark);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--color-primary-soft-strong);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
  outline: none;
  background: var(--color-bg-light);
}

.form-note {
  width: 100%;
  max-width: none;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--color-text-muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--color-text-dark);
}

.form-status.is-error {
  color: var(--color-primary-hover);
}

.cookie-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid var(--color-border-dark);
  border-radius: 999px;
  background: var(--color-surface-dark);
  color: var(--color-text-light);
  box-shadow: var(--shadow-strong);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.cookie-fab:hover,
.cookie-fab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: #202020;
}

.cookie-fab .icon-svg,
[data-cookie-close] .icon-svg,
.cookie-fab .site-icon,
[data-cookie-close] .site-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.cookie-panel {
  position: fixed;
  right: 1.1rem;
  bottom: 5rem;
  z-index: 41;
  width: min(360px, calc(100vw - 2rem));
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 1000ms ease,
    transform 1000ms ease;
}

.cookie-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-panel__inner {
  position: relative;
  padding: 1.4rem;
  color: var(--color-text-light);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.97) 0%, rgba(24, 24, 24, 0.96) 100%);
}

.cookie-panel__eyebrow {
  margin-bottom: 0.8rem;
  color: var(--color-text-light);
}

.cookie-panel__inner h3 {
  margin: 0 0 0.5rem;
  color: var(--color-text-light);
}

.cookie-panel__inner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted-light);
}

.cookie-panel__note {
  color: rgba(255, 255, 255, 0.74);
}

.cookie-panel__actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.cookie-panel__actions .button {
  width: 100%;
}

.cookie-panel__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
}

.site-footer {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin: 0;
  padding: clamp(54px, 8vw, 78px) 0;
  transform: translateX(-50%);
}

.footer-shell {
  width: min(var(--shell-width), calc(100vw - (2 * var(--shell-gutter))));
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  margin: 0 auto;
}

.site-footer__brand,
.site-footer__nav-groups,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.site-footer__brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-footer__title,
.site-footer__text,
.site-footer__heading,
.page__footer-copyright {
  margin: 0;
}

.site-footer__title {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.site-footer__text {
  max-width: 42ch;
  margin-top: 0.8rem;
  color: var(--color-text-muted-light);
}

.site-footer__logo-link {
  display: inline-flex;
  margin: 0 auto;
}

.site-footer__nav-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.site-footer__heading {
  margin-bottom: 0.9rem;
  color: var(--color-text-muted-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__list {
  display: grid;
  gap: 0.55rem;
}

.site-footer__list a {
  color: var(--color-text-light);
}

.site-footer__bottom {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page__footer-follow {
  margin: 0;
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials__item__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--color-text-light);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.socials__item__link .icon-svg,
.socials__item__link .site-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.socials__item__link:hover,
.socials__item__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
}

/* Made-by badge — inspired by 8man, signature PSWD detail */
.site-footer__badge {
  --badge-orbit-duration: 6.8s;
  --badge-orbit-thickness: 2px;
  --badge-trace-length: 8;
  --badge-trace-opacity: 0.67;
  --badge-rail: color-mix(in srgb, var(--color-paper) 90%, var(--color-ink) 10%);
  position: relative;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 0.24rem;
  border: 0;
  border-radius: calc(0.52rem - 2px);
  background: transparent;
  box-shadow: 0 0.45rem 1.3rem -0.65rem var(--color-black-22);
  isolation: isolate;
  overflow: visible;
  transition: transform var(--duration-base) var(--ease-out);
}
.site-footer__badge-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.site-footer__badge-orbit-fill {
  fill: var(--color-paper);
}
.site-footer__badge-orbit-rail,
.site-footer__badge-orbit-trace {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.site-footer__badge-orbit-rail {
  stroke: var(--badge-rail);
  stroke-width: 1;
}
.site-footer__badge-orbit-trace {
  stroke: rgb(124, 58, 237);
  stroke-width: var(--badge-orbit-thickness);
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 0 1px var(--color-badge-accent-soft));
}
.site-footer__badge-orbit.is-ready .site-footer__badge-orbit-trace {
  opacity: var(--badge-trace-opacity);
}
.site-footer__badge-core {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.24em;
  min-height: 1.32rem;
  padding: 0.24rem 0.88rem;
  border-radius: calc(0.28rem - 2px);
  background: transparent;
  color: var(--color-graphite);
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.035em;
  font-weight: 500;
  text-transform: none;
  white-space: nowrap;
}
.site-footer__badge-core strong {
  font-weight: 600;
}
.site-footer__badge:hover,
.site-footer__badge:focus-visible { transform: translateY(-2px); }

@media (min-width: 860px) {
  .site-footer__badge { justify-self: center; }
}

.legal-hero {
  padding-top: clamp(126px, 14vh, 164px);
  padding-bottom: clamp(60px, 8vw, 88px);
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.legal-hero__inner .section-label {
  margin-right: auto;
  margin-left: auto;
}

.legal-hero p {
  max-width: 58ch;
  margin-top: 1rem;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  padding: clamp(24px, 4vw, 34px);
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card a {
  color: var(--color-primary-hover);
}

.legal-card a:hover,
.legal-card a:focus-visible {
  color: var(--color-primary);
}

.not-found-page {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.not-found-page__media {
  max-width: 560px;
  margin: 0;
}

.not-found-page .section-label {
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
}

.not-found-page > * {
  margin: 0;
}

.not-found-page__actions {
  justify-content: center;
  margin-top: 0.35rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#start,
#ueber-uns,
#vorstand,
#angebot,
#drei-lifts,
#community,
#standort,
#mitmachen,
#kontakt {
  scroll-margin-top: 5.5rem;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.36);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(237, 28, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 28, 36, 0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .section-grid--about,
  .section-grid--board,
  .section-grid--reasons,
  .section-grid--community,
  .section-grid--location,
  .section-grid--contact,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .section-grid--about .inline-pills--dark-text {
    flex-wrap: wrap;
  }

  .community-collage {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .community-collage__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card,
  .offer-card--wide {
    grid-column: span 1;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .reason-layout,
  .lift-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .hero-section {
    min-height: max(720px, calc(100vh - var(--masthead-height, 5.5rem)));
  }

  .contact-form,
  .legal-grid,
  .site-footer__nav-groups {
    grid-template-columns: 1fr;
  }

  .legal-card--wide {
    grid-column: auto;
  }

  .site-footer__bottom {
    justify-items: center;
  }

  .greedy-nav {
    align-items: center;
  }

  .masthead {
    background: rgba(13, 13, 13, 0.94);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .greedy-nav .visible-links {
    display: none;
    position: fixed;
    top: calc(var(--masthead-height, 5.5rem) + 0.45rem);
    right: auto;
    left: 50%;
    width: calc(100vw - 1.5rem);
    max-width: 36rem;
    max-height: calc(100vh - var(--masthead-height, 5.5rem) - env(safe-area-inset-bottom, 0px) - 1rem);
    transform: translateX(-50%);
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0.45rem;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-sm);
    background: rgba(18, 18, 18, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: var(--shadow-soft);
    z-index: 35;
    pointer-events: auto;
  }

  .greedy-nav.is-open .visible-links {
    display: flex;
  }

  .greedy-nav .visible-links li {
    width: 100%;
  }

  .greedy-nav .visible-links a {
    margin: 0;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

  .greedy-nav .visible-links li:last-child a {
    border-bottom: 0;
  }

  .greedy-nav .visible-links a::before {
    display: none;
  }

  .greedy-nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .masthead__inner-wrap {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .section-heading h2,
  .section-copy h2,
  .cta-panel h2,
  .legal-hero h1,
  .not-found-page h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-section__content h1 {
    font-size: clamp(1.56rem, 8vw, 2.4rem);
    line-height: 1.02;
  }

  .hero-section__inner {
    min-height: max(720px, calc(100vh - var(--masthead-height, 5.5rem)));
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }

  .hero-section__actions,
  .cta-panel__actions,
  .form-actions,
  .not-found-page__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cookie-panel__actions {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .community-collage {
    grid-template-columns: 1fr;
  }

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

  .form-field--full {
    grid-column: auto;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
