:root {
  --nf-green: #2e913f;
  --nf-green-dark: #1f6f2e;
  --nf-green-light: #65c276;
  --nf-green-soft: rgba(46, 145, 63, 0.10);
  --nf-green-line: rgba(46, 145, 63, 0.18);

  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-soft-2: #fbfbfd;
  --bg-elevated: rgba(255, 255, 255, 0.78);

  --text: #1d1d1f;
  --text-soft: #3a3a3c;
  --muted: #6e6e73;
  --white: #ffffff;

  --line: rgba(0, 0, 0, 0.08);
  --line-soft: rgba(0, 0, 0, 0.045);
  --line-strong: rgba(0, 0, 0, 0.13);

  --shadow-xs: 0 8px 24px rgba(0, 0, 0, 0.035);
  --shadow-sm: 0 18px 48px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 34px 84px rgba(0, 0, 0, 0.10);
  --shadow-green: 0 18px 42px rgba(46, 145, 63, 0.22);

  --radius-xl: 44px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --radius-pill: 999px;

  --max-width: 1240px;
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.16s var(--ease);
  --medium: 0.22s var(--ease);
  --slow: 0.42s var(--ease);
}

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

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

html,
body {
  overflow-x: clip;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.52;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-synthesis-weight: none;
}

body.page-enter {
  opacity: 0;
  transform: translateY(6px);
}

body.page-ready {
  opacity: 1;
  transform: none;
  transition: opacity 0.24s var(--ease);
}

body.page-leaving {
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.16s var(--ease),
    transform 0.16s var(--ease);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

::selection {
  color: var(--text);
  background: rgba(46, 145, 63, 0.16);
}

:focus-visible {
  outline: 3px solid rgba(46, 145, 63, 0.34);
  outline-offset: 4px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 7rem 0;
  background: var(--bg);
}

.section-tight {
  padding-top: 1.25rem;
}

.section-no-top {
  padding-top: 0;
}

.section-light {
  background: var(--bg);
}

.section-final-cta {
  padding-top: 5rem;
}

.section-compact-bottom {
  padding-bottom: 2.5rem;
}

.flex {
  display: flex;
}

.grid,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

.muted {
  color: var(--muted);
}

.copy-stack {
  display: grid;
  gap: 1rem;
  max-width: 68ch;
  margin-top: 1.1rem;
}

.clean-list-offset {
  margin-top: 1.35rem;
}

main > section:first-child {
  padding-top: max(9rem, 13vh);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9000;
  padding: 1rem 0;
  background: transparent;
  pointer-events: none;
}

.site-header .container {
  pointer-events: none;
}

.site-header-inner {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  min-height: 58px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.18rem 0.52rem 0.18rem 0.72rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0) saturate(100%);
  -webkit-backdrop-filter: blur(0) saturate(100%);
  pointer-events: auto;
  transition:
    background-color var(--fast),
    border-color var(--fast),
    box-shadow var(--fast),
    backdrop-filter var(--fast),
    -webkit-backdrop-filter var(--fast);
}

.site-header-inner.scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 42px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(28px) saturate(175%);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: 190px;
  height: 58px;
  line-height: 0;
  overflow: visible;
  transform: translateZ(0);
}

.logo img {
  width: auto;
  height: 70px;
  max-width: 178px;
  object-fit: contain;
  image-rendering: auto;
  transform: translateY(1px) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.site-nav,
.burger {
  position: relative;
  z-index: 5;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.54rem 0.78rem;
  border-radius: var(--radius-pill);
  color: rgba(29, 29, 31, 0.76);
  font-size: 0.94rem;
  font-weight: 630;
  letter-spacing: -0.014em;
  transition:
    color var(--fast),
    background var(--fast),
    transform var(--fast);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
}

.nav-link.active,
.nav-link.active:hover,
.nav-link.active:focus-visible {
  color: var(--nf-green-dark) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.22rem;
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--nf-green);
  transform: translateX(-50%);
}

.burger {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  transition:
    background var(--fast),
    box-shadow var(--fast),
    transform var(--fast);
}

.burger:hover,
.burger:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76));
  transform: translateY(-1px);
}

.burger-lines {
  position: relative;
  width: 18px;
  height: 14px;
  display: block;
}

.burger-lines span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.7px;
  border-radius: var(--radius-pill);
  background: rgba(29, 29, 31, 0.9);
  transform: translateX(-50%);
  transform-origin: center;
  transition:
    top 0.22s var(--ease),
    transform 0.22s var(--ease),
    opacity 0.16s var(--ease),
    width 0.22s var(--ease);
}

.burger-lines span:nth-child(1) {
  top: 2px;
}

.burger-lines span:nth-child(2) {
  top: 6.5px;
}

.burger-lines span:nth-child(3) {
  top: 11px;
}

.burger.is-active .burger-lines span:nth-child(1) {
  top: 6.5px;
  transform: translateX(-50%) rotate(45deg);
}

.burger.is-active .burger-lines span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.is-active .burger-lines span:nth-child(3) {
  top: 6.5px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Startseite */

.home-product-page {
  display: grid;
  gap: 0;
  background: var(--bg);
}

.product-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 7.5rem 1.5rem 3.5rem;
  text-align: center;
  isolation: isolate;
}

.home-first-hero {
  min-height: 100vh;
  padding-top: max(10.4rem, 15vh);
  padding-bottom: 4.5rem;
}

.product-copy {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin-inline: auto;
}

.home-first-hero .product-copy {
  max-width: min(100%, 1240px);
}

.product-copy h1,
.product-copy h2,
.app-showcase-copy h2 {
  color: var(--text);
  font-size: clamp(3.15rem, 7.7vw, 7.55rem);
  line-height: 0.91;
  letter-spacing: -0.064em;
  font-weight: 760;
  text-wrap: balance;
}

.home-first-hero .product-copy h1 {
  max-width: 1180px;
  margin-inline: auto;
  font-size: clamp(4.1rem, 6.35vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.072em;
  white-space: nowrap;
  text-wrap: nowrap;
}

.product-copy p,
.app-showcase-copy p {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--text-soft);
  font-size: clamp(1.15rem, 1.85vw, 1.55rem);
  line-height: 1.32;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

.home-first-hero .product-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.32vw, 1.22rem);
  line-height: 1.42;
  letter-spacing: -0.018em;
}

.home-first-hero .eyebrow {
  margin-bottom: 0.6rem;
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.055em;
}

.product-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.home-first-hero .product-actions {
  margin-top: 2.05rem;
}

.product-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: -0.014em;
  transition:
    background-color var(--fast),
    color var(--fast),
    border-color var(--fast),
    opacity var(--fast),
    transform var(--fast),
    box-shadow var(--fast);
}

.product-link {
  min-height: 44px;
  padding: 0.72rem 1.25rem;
  font-size: 1rem;
}

.btn {
  min-height: 50px;
  padding: 0.92rem 1.36rem;
}

.product-link:hover,
.btn:hover {
  transform: translateY(-1px);
}

.product-link-primary,
.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--nf-green-light), var(--nf-green));
  box-shadow: 0 14px 34px rgba(46, 145, 63, 0.26);
}

.product-link-primary:hover,
.btn-primary:hover {
  opacity: 0.94;
  box-shadow: 0 18px 40px rgba(46, 145, 63, 0.30);
}

.product-link-secondary,
.btn-secondary {
  color: var(--nf-green-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--nf-green-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(0, 0, 0, 0.035);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.product-link-secondary:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(46, 145, 63, 0.26);
}

.product-link-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.product-link-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.product-hero-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 26%, rgba(46, 145, 63, 0.045), transparent 34rem),
    linear-gradient(
      0deg,
      rgba(222, 225, 229, 0.66) 0%,
      rgba(232, 234, 237, 0.50) 11%,
      rgba(241, 242, 244, 0.32) 24%,
      rgba(248, 249, 250, 0.16) 39%,
      rgba(255, 255, 255, 0) 58%
    ),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 58%, #f5f5f7 100%);
}

.product-hero-main::before,
.product-hero-main::after,
.product-hero-dark::before,
.product-hero-dark::after {
  display: none;
}

.product-hero-light {
  background: var(--bg);
}

.product-hero-dark {
  min-height: 100vh;
  background:
    linear-gradient(
      180deg,
      #f5f5f7 0%,
      #eff5f1 9%,
      #e3f0e6 20%,
      #cfe4d3 33%,
      rgba(166, 198, 171, 0.84) 46%,
      rgba(91, 122, 96, 0.82) 60%,
      rgba(36, 48, 40, 0.94) 74%,
      #151817 88%,
      #0c0d0c 100%
    );
}

.product-copy-light h1,
.product-copy-light h2 {
  color: var(--white);
}

.product-copy-light p {
  color: rgba(255, 255, 255, 0.76);
}

.product-hero-final {
  min-height: 72vh;
  background: var(--bg);
}

.home-hero-image-wrap {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1180px);
  margin: 4.15rem auto 0;
  border-radius: 46px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.035);
}

.home-hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34rem);
}

.home-hero-image {
  width: 100%;
  height: clamp(360px, 45vw, 620px);
  object-fit: cover;
  object-position: center;
}

/* App Showcase */

.app-showcase-section {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 7rem 0;
  background: var(--bg);
}

.app-showcase-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.app-showcase-copy {
  max-width: 680px;
  text-align: left;
}

.app-showcase-copy p {
  margin-left: 0;
  margin-right: 0;
}

.app-showcase-actions {
  justify-content: flex-start;
}

.app-showcase-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-showcase-visual::before {
  content: "";
  position: absolute;
  width: min(70%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(46, 145, 63, 0.16), rgba(46, 145, 63, 0.04) 52%, transparent 72%);
  filter: blur(10px);
}

.app-showcase-image {
  position: relative;
  z-index: 1;
  width: min(42vw, 520px);
  max-height: 760px;
  object-fit: contain;
  filter:
    drop-shadow(0 38px 70px rgba(0, 0, 0, 0.18))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.10));
}

/* Typografie */

.hero-title {
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.91;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.small-hero {
  font-size: clamp(3rem, 6.2vw, 6rem);
}

.hero-subtitle {
  max-width: 760px;
  margin: 1.35rem auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.55vw, 1.38rem);
  line-height: 1.45;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2.1rem, 3.3vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.046em;
  text-wrap: balance;
}

.large-title {
  font-size: clamp(2.65rem, 5.6vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Unterseiten Layout */

.home-hero-section {
  padding-top: 5rem;
  background: var(--bg);
}

.home-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 6rem 1rem 3.4rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.82rem;
  margin-top: 2rem;
}

.section-intro {
  max-width: 940px;
  margin: 0 auto 3.35rem;
}

.section-intro.center {
  text-align: center;
}

.section-intro p {
  max-width: 710px;
  margin: 1rem auto 0;
  font-size: clamp(1.04rem, 1.35vw, 1.19rem);
  line-height: 1.56;
  letter-spacing: -0.014em;
}

/* Cards und Hinweise */

.glass,
.card,
.section-block,
.contact-form-shell,
.legal-actions-card,
.legal-shell,
.location-card,
.map-card,
.app-detail-card,
.pricing-card,
.daypass-shell,
.rules-intro-card,
.rule-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--bg-soft);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.card,
.section-block,
.contact-form-shell,
.legal-actions-card,
.legal-shell,
.location-card,
.map-card,
.app-detail-card,
.rules-intro-card,
.rule-card {
  padding: 1.75rem;
}

.card {
  transition:
    box-shadow var(--medium),
    border-color var(--fast),
    transform var(--fast);
}

.card:hover {
  border-color: rgba(0, 0, 0, 0.065);
}

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

.feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 2.8rem;
  color: var(--nf-green);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.feature-card h3 {
  margin-bottom: 0.72rem;
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  line-height: 1.03;
  letter-spacing: -0.044em;
}

.feature-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
  letter-spacing: -0.014em;
}

.info-note {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.45rem;
  border-radius: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  box-shadow: none;
}

.info-note-label,
.info-note-text {
  position: relative;
  z-index: 1;
}

.info-note-label {
  margin-bottom: 0.3rem;
  color: var(--nf-green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-note-text {
  max-width: 82ch;
  color: var(--text-soft);
  font-size: 1.04rem;
  letter-spacing: -0.014em;
}

/* Mitgliedschaften / Pricing Legacy */

.pricing-page-section {
  padding-top: 6.2rem;
  padding-bottom: 4.8rem;
  background: var(--bg);
}

.pricing-page-intro {
  margin-bottom: clamp(3.2rem, 6vw, 5rem);
}

.pricing-main-title {
  max-width: 760px;
  margin-inline: auto;
}

.pricing-section {
  padding-top: 2rem;
  background: var(--bg);
}

.pricing-grid,
.pricing-grid-fixed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.15rem;
}

.pricing-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
}

.pricing-card-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
}

.pricing-card-label-row {
  min-height: 31px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.pricing-card-label-row .eyebrow {
  margin-bottom: 0;
}

.plan-tag,
.duration-pill,
.daypass-badge,
.location-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: var(--radius-pill);
  color: var(--nf-green-dark);
  background: var(--nf-green-soft);
  border: 1px solid var(--nf-green-line);
  font-weight: 800;
  letter-spacing: -0.008em;
}

.plan-tag {
  white-space: nowrap;
  padding: 0.36rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 820;
}

.pricing-card h2,
.pricing-card h3 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: clamp(1.85rem, 2.6vw, 2.7rem);
  line-height: 1.03;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.price-wrap {
  display: grid;
  gap: 0.16rem;
}

.price-line {
  margin: 0.28rem 0 0.2rem;
  color: var(--text);
  font-size: clamp(2.75rem, 4.2vw, 4.25rem);
  line-height: 0.92;
  letter-spacing: -0.058em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.duration-pill {
  margin: 1.25rem 0 1.35rem;
  padding: 0.58rem 0.82rem;
  font-size: 0.88rem;
}

.duration-pill-featured {
  color: var(--white);
  background: linear-gradient(180deg, var(--nf-green-light), var(--nf-green));
  border-color: rgba(46, 145, 63, 0.16);
  box-shadow: 0 12px 26px rgba(46, 145, 63, 0.22);
}

.pricing-check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.pricing-check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.pricing-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--nf-green);
  font-size: 0.7rem;
  font-weight: 900;
}

.pricing-card-bottom {
  display: grid;
  gap: 1.15rem;
  margin-top: auto;
  padding-top: 1.8rem;
}

.pricing-card-bottom .btn,
.pricing-card-action .btn {
  width: 100%;
}

.featured-pricing {
  position: relative;
  border-color: rgba(46, 145, 63, 0.26);
  transform: translateY(-12px);
}

.featured-pricing:hover {
  transform: translateY(-12px);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.018em;
  background: linear-gradient(180deg, var(--nf-green-light), var(--nf-green));
  box-shadow: 0 10px 24px rgba(46, 145, 63, 0.22);
}

.pricing-note {
  margin-top: 2rem;
}

.daypass-section {
  padding-top: 0;
  padding-bottom: 4.8rem;
  background: var(--bg);
}

.daypass-shell {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.daypass-copy {
  max-width: 680px;
}

.daypass-copy p.muted {
  margin-top: 0.75rem;
}

.daypass-price-box {
  min-width: 260px;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
}

.daypass-badge {
  padding: 0.44rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 830;
}

.daypass-price-box .btn {
  width: 100%;
}

.pricing-final-section {
  min-height: 68vh;
  background: var(--bg);
}

.pricing-final-section .product-copy h2 {
  max-width: 980px;
  margin-inline: auto;
}

/* Standorte Legacy */

.locations-page-section {
  padding-top: 6.2rem;
  padding-bottom: 5.2rem;
  background: var(--bg);
}

.locations-page-intro {
  margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
}

.locations-main-title {
  max-width: 820px;
  margin-inline: auto;
}

.location-picker {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: visible;
  padding: 1.15rem max(1rem, calc((100vw - var(--max-width)) / 2 + 1rem)) 1.65rem;
  margin: -1rem calc(50% - 50vw) clamp(2.2rem, 4vw, 3.4rem);
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(1rem, calc((100vw - 220px) / 2));
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.location-picker::-webkit-scrollbar {
  display: none;
}

.location-choice {
  flex: 0 0 auto;
  min-width: 220px;
  display: grid;
  gap: 0.28rem;
  text-align: left;
  scroll-snap-align: center;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  transition:
    background var(--fast),
    border-color var(--fast),
    box-shadow var(--medium),
    transform var(--fast),
    opacity var(--fast),
    filter var(--fast);
}

.location-choice:hover {
  transform: translateY(-1px);
  background: #eeeeef;
}

.location-choice.is-active {
  color: var(--white);
  background: linear-gradient(180deg, var(--nf-green-light), var(--nf-green));
  border-color: rgba(46, 145, 63, 0.32);
  box-shadow: 0 20px 46px rgba(46, 145, 63, 0.18);
}

.location-choice.is-planned,
.location-choice[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  filter: grayscale(1);
  transform: none;
  box-shadow: none;
}

.location-choice.is-planned:hover,
.location-choice[aria-disabled="true"]:hover {
  transform: none;
  background: var(--bg-soft);
}

.location-choice span {
  font-size: 1.02rem;
  font-weight: 760;
  letter-spacing: -0.018em;
}

.location-choice small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.006em;
}

.location-choice.is-active small {
  color: rgba(255, 255, 255, 0.78);
}

.location-choice.is-planned span,
.location-choice.is-planned small,
.location-choice[aria-disabled="true"] span,
.location-choice[aria-disabled="true"] small {
  color: rgba(29, 29, 31, 0.42);
}

.location-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: 1.25rem;
  align-items: stretch;
}

.location-image-panel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}

.location-image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.location-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 34%);
}

.location-image-label,
.image-frame-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.56rem 0.86rem;
  border-radius: var(--radius-pill);
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.location-info-panel {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border-radius: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}

.location-info-head,
.map-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.location-status-pill {
  white-space: nowrap;
  padding: 0.48rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 830;
}

.location-info-panel h2 {
  color: var(--text);
  font-size: clamp(2.5rem, 4.8vw, 4.85rem);
  line-height: 0.94;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.location-info-panel h3 {
  max-width: 12ch;
  margin-top: 1.05rem;
  color: var(--text);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.044em;
  text-wrap: balance;
}

.location-info-panel > p {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.55;
  letter-spacing: -0.014em;
}

.location-facts {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.location-facts div {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-facts span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.location-facts strong {
  color: var(--text);
  font-size: 0.99rem;
  line-height: 1.32;
  letter-spacing: -0.014em;
}

.location-actions {
  justify-content: flex-start;
  margin-top: 1.6rem;
}

.location-map-section {
  margin-top: 1.25rem;
}

.map-card {
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
}

.map-card-head .eyebrow {
  margin-bottom: 0.45rem;
}

.map-card-head h2 {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.044em;
}

.location-map-frame,
.map-frame {
  overflow: hidden;
  height: clamp(360px, 42vw, 560px);
  border-radius: 30px;
  border: 1px solid var(--line-soft);
  background: var(--bg-soft);
}

.location-map-frame iframe,
.map-frame iframe,
iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: block;
}

.locations-final-section {
  min-height: 68vh;
  background: var(--bg);
}

/* Hausordnung / Regeln Legacy */

.house-hero {
  min-height: 78vh;
  padding-top: 8rem;
  padding-bottom: 7.5rem;
  background: var(--bg);
}

.house-hero::after {
  display: none;
}

.house-hero .product-copy h1 {
  max-width: 980px;
  margin-inline: auto;
}

.house-hero .product-copy p {
  max-width: 760px;
}

.house-rules-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 8.2rem;
  padding-bottom: 6.5rem;
  background: var(--bg);
}

.house-rules-section::before,
.house-rules-section::after {
  display: none;
}

.house-principle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.house-principle-card,
.house-applies-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 36px;
  background: var(--bg-soft);
}

.house-principle-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.house-principle-card h2 {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.house-principle-card p,
.house-applies-card p {
  max-width: 780px;
  margin-top: 1.15rem;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.55;
  letter-spacing: -0.014em;
}

.house-applies-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.house-applies-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.2rem 0;
}

.house-applies-list span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  font-weight: 760;
  letter-spacing: -0.014em;
}

.house-premium-rules {
  margin-top: 1.25rem;
}

.house-premium-rules .rule-card {
  min-height: 390px;
}

.house-premium-rules .rule-number {
  margin-bottom: 2.7rem;
  color: var(--nf-green);
  font-size: 0.82rem;
}

.house-premium-rules .rule-card h3 {
  max-width: 12ch;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.house-premium-rules .rule-card li {
  font-size: 0.98rem;
}

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

.house-legal-grid .info-note {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.house-final {
  min-height: 70vh;
  background: var(--bg);
}

.location-content-grid,
.contact-hero-grid,
.legal-grid,
.app-page-hero-grid,
.app-content-grid {
  align-items: start;
}

.image-frame {
  position: relative;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}

.image-frame-large {
  min-height: 560px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.app-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 1.4rem;
}

.app-store-row.centered {
  justify-content: center;
  margin-top: 2rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-height: 58px;
  padding: 0.78rem 1rem;
  border-radius: 20px;
  transition:
    background-color var(--fast),
    border-color var(--fast),
    opacity var(--fast),
    transform var(--fast);
}

.store-badge:hover {
  transform: translateY(-1px);
}

.store-badge-dark {
  color: var(--white);
  background: linear-gradient(180deg, #1d1d1f, #0f0f10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 16px 30px rgba(0, 0, 0, 0.18);
}

.store-badge-light {
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.store-badge-light:hover {
  border-color: rgba(46, 145, 63, 0.22);
}

.store-badge-icon {
  width: 22px;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.store-badge-small {
  color: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  opacity: 0.76;
}

.store-badge-big {
  margin-top: 0.08rem;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -0.014em;
}

.app-screen-stage {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Formular und Legal Legacy */

.contact-form-shell {
  max-width: 930px;
  margin-inline: auto;
}

.contact-info-stack,
.legal-info-list,
.house-rules-stack {
  display: grid;
  gap: 0.9rem;
}

.contact-info-item,
.legal-info-row {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
}

.contact-info-label,
.legal-label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.048em;
  text-transform: uppercase;
}

.contact-info-item a,
.legal-info-row a,
.feature-card a {
  color: var(--nf-green-dark);
  font-weight: 730;
  word-break: break-word;
}

.contact-info-item a:hover,
.legal-info-row a:hover,
.feature-card a:hover {
  color: var(--nf-green);
}

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

.form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

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

.form-field label {
  margin-bottom: 0.45rem;
  font-weight: 710;
  letter-spacing: -0.014em;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 1rem;
  transition:
    border-color var(--fast),
    box-shadow var(--fast),
    background var(--fast);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(46, 145, 63, 0.42);
  box-shadow: 0 0 0 4px rgba(46, 145, 63, 0.12);
  background: var(--bg);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: rgba(180, 35, 24, 0.48);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.10);
}

.required-star,
.required-note {
  color: #b42318;
  font-weight: 760;
}

.required-note {
  margin-top: 0.38rem;
  font-size: 0.92rem;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.25rem;
}

.legal-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.legal-action-buttons .btn {
  width: 100%;
}

.legal-missing-info {
  margin-top: 1rem;
}

.rules-layout {
  display: grid;
  gap: 1.25rem;
}

.rules-intro-card {
  padding: 1.75rem;
}

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

.rule-card {
  padding: 1.35rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.rule-number {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 2.1rem;
  color: var(--nf-green);
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.05em;
}

.rule-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.rule-card ul {
  display: grid;
  gap: 0.58rem;
  margin-top: auto;
}

.rule-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.rule-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: var(--nf-green);
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 14, 20, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal.show {
  display: flex;
}

.modal-box {
  position: relative;
  width: min(100%, 760px);
  max-height: min(86vh, 820px);
  overflow-y: auto;
  padding: 2rem;
  border-radius: 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.18);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border-radius: var(--radius-pill);
  color: var(--text);
  background: var(--bg);
  box-shadow: var(--shadow-xs);
}

.modal-text-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--text);
}

.modal-text-stack ol,
.modal-text-stack ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
}

.modal-text-stack ol {
  list-style: decimal;
}

.modal-text-stack ul {
  list-style: disc;
}

/* Galerie Legacy */

.area-stack {
  display: grid;
  gap: 3.3rem;
}

.area-section {
  display: grid;
  gap: 0.9rem;
}

.area-copy h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.034em;
}

.gallery-shell {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.85rem;
}

.gallery-shell .gallery-arrow-left {
  order: 1;
}

.gallery-shell .gallery-arrow-right {
  order: 2;
}

.gallery-shell .gallery-row {
  order: 3;
  grid-column: 1 / -1;
}

.gallery-row {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.15rem 0.5rem 1.2rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.gallery-row.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.gallery-row::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 min(36vw, 430px);
  min-width: 310px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: none;
}

.gallery-button {
  width: 100%;
  display: block;
  text-align: left;
}

.gallery-image {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 740;
  line-height: 1.45;
  letter-spacing: -0.006em;
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--nf-green-dark);
  font-size: 1.35rem;
  line-height: 1;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-xs);
  transition:
    background-color var(--fast),
    opacity var(--fast),
    transform var(--fast);
}

.gallery-arrow:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.gallery-arrow:disabled,
.gallery-arrow.is-disabled {
  opacity: 0.34;
  pointer-events: none;
}

/* Footer */

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 145, 63, 0.16), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(46, 145, 63, 0.10), transparent 30rem),
    linear-gradient(180deg, #151615 0%, #101110 58%, #0b0c0b 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0%, transparent 54%, rgba(46, 145, 63, 0.055) 54%, rgba(46, 145, 63, 0.055) 66%, transparent 66%),
    linear-gradient(155deg, transparent 0%, transparent 66%, rgba(255, 255, 255, 0.032) 66%, rgba(255, 255, 255, 0.032) 77%, transparent 77%);
  opacity: 0.95;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 6.2rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.footer-brand {
  max-width: 600px;
  display: grid;
  gap: 1.25rem;
}

.footer-logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-logo img {
  width: auto;
  height: 78px;
  max-width: 210px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.footer-contact-card {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 20px 44px rgba(0, 0, 0, 0.16);
}

.footer-contact-card a {
  width: fit-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition:
    color var(--fast),
    transform var(--fast);
}

.footer-contact-card a:hover,
.footer-contact-card a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: clamp(2rem, 5vw, 3.4rem) 0;
  background: rgba(255, 255, 255, 0.09);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr 1fr;
  gap: clamp(1.5rem, 4.5vw, 4.8rem);
  align-items: start;
}

.footer-column {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.78rem;
}

.footer-column-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 0.52rem;
}

.footer-link-list a,
.footer-link-list p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
  line-height: 1.42;
  letter-spacing: -0.008em;
}

.footer-link-list a {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  transition:
    color var(--fast),
    transform var(--fast);
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.84rem;
}

.footer-bottom-note {
  color: rgba(255, 255, 255, 0.38) !important;
}

/* Reveal */

.reveal,
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Animation */

@keyframes mobileMenuBackdropIn {
  from {
    opacity: 0;
    filter: blur(2px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileLinkIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .pricing-grid,
  .pricing-grid-fixed {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }

  .pricing-card,
  .featured-pricing,
  .featured-pricing:hover {
    min-height: auto;
    transform: none;
  }

  .pricing-card h2,
  .pricing-card h3 {
    max-width: 16ch;
  }

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

  .feature-card {
    min-height: 240px;
  }

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

  .location-showcase {
    grid-template-columns: 1fr;
  }

  .location-image-panel,
  .location-info-panel {
    min-height: 520px;
  }

  .house-principle-grid,
  .house-legal-grid {
    grid-template-columns: 1fr;
  }

  .house-principle-card,
  .house-applies-card {
    min-height: auto;
  }

  .product-copy h1,
  .product-copy h2,
  .app-showcase-copy h2 {
    font-size: clamp(3rem, 9vw, 6.4rem);
  }

  .app-showcase-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-showcase-copy {
    margin-inline: auto;
    text-align: center;
  }

  .app-showcase-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .app-showcase-actions {
    justify-content: center;
  }

  .app-showcase-visual {
    min-height: 620px;
  }

  .app-showcase-image {
    width: min(70vw, 520px);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    max-width: 420px;
  }

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

/* Apple-artiges Mobile-Menü */

@media (max-width: 980px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 8998;
    background: rgba(251, 251, 253, 0.86);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    animation: mobileMenuBackdropIn 0.2s var(--ease) both;
  }

  .grid-2,
  .contact-hero-grid,
  .app-page-hero-grid,
  .location-content-grid,
  .app-content-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    z-index: 10000;
    padding: 0.95rem 0;
  }

  .site-header-inner,
  .site-header-inner.scrolled {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .logo {
    position: relative;
    z-index: 10004;
    width: 160px;
    height: 54px;
    justify-content: flex-start;
  }

  .logo img {
    height: 58px;
    max-width: 150px;
  }

  .burger {
    position: relative;
    z-index: 10004;
    width: 46px;
    height: 46px;
    display: inline-flex;
  }

  .burger:hover,
  .burger.is-active {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 14px 30px rgba(0, 0, 0, 0.09);
  }

  .burger-lines {
    width: 18px;
    height: 14px;
  }

  .burger-lines span {
    height: 1.65px;
    width: 17px;
    background: rgba(29, 29, 31, 0.86);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    max-height: none;
    display: block;
    margin: 0;
    padding: 7.2rem 2rem 2.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s var(--ease),
      visibility 0.2s var(--ease),
      transform 0.2s var(--ease);
    background: rgba(251, 251, 253, 0.9);
    backdrop-filter: blur(28px) saturate(165%);
    -webkit-backdrop-filter: blur(28px) saturate(165%);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    animation: mobileNavIn 0.2s var(--ease) both;
  }

  .site-nav ul {
    width: min(100%, 430px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .site-nav li {
    display: block;
    opacity: 0;
    transform: translateY(8px);
  }

  .site-nav.open li {
    animation: mobileLinkIn 0.24s var(--ease) forwards;
  }

  .site-nav.open li:nth-child(1) { animation-delay: 0.02s; }
  .site-nav.open li:nth-child(2) { animation-delay: 0.04s; }
  .site-nav.open li:nth-child(3) { animation-delay: 0.06s; }
  .site-nav.open li:nth-child(4) { animation-delay: 0.08s; }
  .site-nav.open li:nth-child(5) { animation-delay: 0.10s; }
  .site-nav.open li:nth-child(6) { animation-delay: 0.12s; }

  .site-nav a {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.42rem 0;
    border-radius: 0;
    color: var(--text);
    background: transparent;
    box-shadow: none;
    font-size: clamp(1.85rem, 7vw, 2.55rem);
    font-weight: 760;
    line-height: 1.16;
    letter-spacing: -0.044em;
    transition:
      color 0.16s var(--ease),
      transform 0.16s var(--ease),
      opacity 0.16s var(--ease);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--nf-green-dark);
    background: transparent;
    outline: none;
    transform: translateX(6px);
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    right: 0.1rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0;
    transform: translateY(-50%) rotate(45deg) translateX(-6px);
    transition:
      opacity 0.16s var(--ease),
      transform 0.16s var(--ease);
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    opacity: 0.45;
    transform: translateY(-50%) rotate(45deg) translateX(0);
  }

  .site-nav .nav-link.active,
  .site-nav .nav-link.active:hover,
  .site-nav .nav-link.active:focus-visible {
    color: var(--nf-green-dark) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-nav .nav-link.active::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: var(--radius-pill);
    background: var(--nf-green);
    transform: translateY(-50%);
  }

  .site-nav .nav-link.active::after {
    display: none;
  }
}

@media (max-width: 768px) {
  main > section:first-child {
    padding-top: max(8.6rem, 15vh);
  }

  .container {
    width: min(100% - 1.2rem, var(--max-width));
  }

  .product-hero {
    min-height: 86vh;
    padding: 6.5rem 1rem 3rem;
  }

  .home-first-hero {
    min-height: 100vh;
    padding-top: max(9.3rem, 16vh);
    padding-bottom: 3.9rem;
  }

  .product-hero-main {
    min-height: 100vh;
    background:
      radial-gradient(circle at 50% 24%, rgba(46, 145, 63, 0.04), transparent 24rem),
      linear-gradient(
        0deg,
        rgba(222, 225, 229, 0.58) 0%,
        rgba(232, 234, 237, 0.42) 12%,
        rgba(241, 242, 244, 0.27) 25%,
        rgba(248, 249, 250, 0.13) 41%,
        rgba(255, 255, 255, 0) 60%
      ),
      linear-gradient(180deg, #fbfbfd 0%, #ffffff 58%, #f5f5f7 100%);
  }

  .product-hero-dark {
    min-height: 92vh;
    background:
      linear-gradient(
        180deg,
        #f5f5f7 0%,
        #eff5f1 9%,
        #e3f0e6 21%,
        #cfe4d3 35%,
        rgba(166, 198, 171, 0.84) 48%,
        rgba(91, 122, 96, 0.82) 62%,
        rgba(36, 48, 40, 0.94) 76%,
        #151817 89%,
        #0c0d0c 100%
      );
  }

  .product-copy h1,
  .product-copy h2,
  .app-showcase-copy h2 {
    font-size: clamp(2.85rem, 13vw, 4.35rem);
    letter-spacing: -0.056em;
  }

  .home-first-hero .product-copy h1 {
    max-width: 9.8ch;
    font-size: clamp(2.85rem, 13vw, 4.35rem);
    line-height: 0.94;
    letter-spacing: -0.058em;
    white-space: normal;
    text-wrap: balance;
  }

  .product-copy p,
  .app-showcase-copy p {
    max-width: 36ch;
    font-size: clamp(1.06rem, 4.2vw, 1.28rem);
    line-height: 1.34;
  }

  .home-first-hero .product-copy > p:not(.eyebrow) {
    max-width: 34ch;
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .home-first-hero .product-actions {
    margin-top: 1.65rem;
  }

  .product-actions {
    width: 100%;
    gap: 0.65rem;
  }

  .product-link {
    min-height: 42px;
    padding: 0.7rem 1.08rem;
    font-size: 0.96rem;
  }

  .home-hero-image-wrap {
    width: min(100%, 1180px);
    margin-top: 3.2rem;
    border-radius: 32px;
  }

  .home-hero-image {
    height: 330px;
  }

  .app-showcase-section {
    min-height: auto;
    padding: 6.5rem 0 5.5rem;
  }

  .app-showcase-container {
    gap: 2.4rem;
  }

  .app-showcase-visual {
    min-height: 520px;
  }

  .app-showcase-image {
    width: min(88vw, 390px);
  }

  .section {
    padding-top: 5.8rem;
    padding-bottom: 5.8rem;
  }

  .section-tight {
    padding-top: 1rem;
  }

  .section-no-top {
    padding-top: 0;
  }

  .home-hero {
    padding: 4rem 0 2.4rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 13.5vw, 3.9rem);
    letter-spacing: -0.052em;
  }

  .small-hero {
    font-size: clamp(2.38rem, 11vw, 3.48rem);
  }

  .hero-subtitle {
    max-width: 39ch;
  }

  .hero-actions {
    gap: 0.8rem;
    margin-top: 1.75rem;
  }

  .hero-actions .btn,
  .contact-form-footer .btn,
  .legal-action-buttons .btn {
    width: 100%;
  }

  .card,
  .section-block,
  .contact-form-shell,
  .legal-actions-card,
  .pricing-card,
  .daypass-shell,
  .location-card,
  .map-card,
  .app-detail-card,
  .legal-shell,
  .rule-card,
  .rules-intro-card {
    border-radius: 28px;
  }

  .card,
  .section-block,
  .contact-form-shell,
  .legal-actions-card,
  .pricing-card,
  .location-card,
  .map-card,
  .app-detail-card,
  .legal-shell,
  .rules-intro-card {
    padding: 1.25rem;
  }

  .pricing-page-section {
    padding-top: 4.8rem;
    padding-bottom: 3.4rem;
  }

  .pricing-page-intro {
    margin-bottom: 2.7rem;
  }

  .pricing-card,
  .featured-pricing,
  .featured-pricing:hover {
    min-height: auto;
    transform: none;
  }

  .pricing-card-label-row {
    min-height: auto;
    margin-bottom: 0.5rem;
  }

  .pricing-card h2,
  .pricing-card h3 {
    max-width: 15ch;
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .price-line {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .duration-pill {
    margin-top: 1rem;
    margin-bottom: 1.15rem;
  }

  .pricing-check-list {
    gap: 0.7rem;
  }

  .pricing-card-bottom {
    padding-top: 1.45rem;
  }

  .locations-page-section {
    padding-top: 4.8rem;
    padding-bottom: 3.8rem;
  }

  .locations-page-intro {
    margin-bottom: 2.35rem;
  }

  .location-picker {
    width: auto;
    margin: -0.8rem calc(50% - 50vw) 2rem;
    padding: 1rem max(1.2rem, calc((100vw - 205px) / 2)) 1.45rem;
    scroll-padding-inline: max(1.2rem, calc((100vw - 205px) / 2));
  }

  .location-choice {
    min-width: 205px;
    padding: 0.92rem;
    border-radius: 22px;
  }

  .location-showcase {
    gap: 1rem;
  }

  .location-image-panel {
    min-height: 360px;
    border-radius: 30px;
  }

  .location-info-panel {
    min-height: auto;
    padding: 1.25rem;
  }

  .location-info-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .location-info-panel h2 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .location-info-panel h3 {
    max-width: 14ch;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .location-facts {
    margin-top: 1.35rem;
  }

  .location-actions {
    width: 100%;
  }

  .location-actions .product-link {
    flex: 1 1 100%;
  }

  .map-card-head {
    flex-direction: column;
    gap: 0.65rem;
  }

  .location-map-frame {
    height: 360px;
    border-radius: 24px;
  }

  .locations-final-section {
    min-height: 58vh;
  }

  .house-hero {
    min-height: 72vh;
    padding-top: 6.2rem;
    padding-bottom: 6.2rem;
  }

  .house-rules-section {
    padding-top: 6.4rem;
    padding-bottom: 4.8rem;
  }

  .house-principle-card,
  .house-applies-card {
    border-radius: 28px;
    padding: 1.25rem;
  }

  .house-principle-card h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .house-applies-list span {
    min-height: 48px;
  }

  .house-premium-rules .rule-card {
    min-height: auto;
  }

  .house-legal-grid {
    grid-template-columns: 1fr;
  }

  .house-legal-grid .info-note {
    min-height: auto;
  }

  .house-final {
    min-height: 58vh;
  }

  .daypass-shell,
  .contact-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .daypass-price-box {
    width: 100%;
    min-width: 0;
  }

  .pricing-final-section {
    min-height: 58vh;
  }

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

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

  .image-frame-large {
    min-height: 350px;
  }

  .app-screen-stage {
    min-height: 430px;
    padding: 1rem;
  }

  .store-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .gallery-row {
    gap: 0.9rem;
    padding: 0.15rem 0.5rem 0.85rem;
  }

  .gallery-card {
    flex: 0 0 78vw;
    min-width: 78vw;
  }

  .gallery-image {
    min-height: 230px;
    border-radius: 24px;
  }

  .modal-box {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .footer-inner {
    width: min(100% - 1.2rem, var(--max-width));
    padding: 3.2rem 0 1.4rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .footer-logo img {
    height: 62px;
    max-width: 166px;
  }

  .footer-brand {
    gap: 0.9rem;
  }

  .footer-brand p {
    font-size: 0.92rem;
  }

  .footer-contact-card {
    max-width: none;
    padding: 0.95rem;
    border-radius: 22px;
  }

  .footer-divider {
    margin: 1.35rem 0;
  }

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

  .footer-column {
    gap: 0.62rem;
    padding: 0.95rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.048);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-column-title {
    font-size: 0.72rem;
  }

  .footer-link-list {
    gap: 0.36rem;
  }

  .footer-link-list a,
  .footer-link-list p,
  .footer-contact-card a {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.36rem;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  main > section:first-child {
    padding-top: max(8.1rem, 14vh);
  }

  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .site-header {
    padding-top: 0.82rem;
    padding-bottom: 0.82rem;
  }

  .logo {
    width: 150px;
    height: 52px;
  }

  .logo img {
    height: 54px;
    max-width: 142px;
  }

  .burger {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    padding: 6.8rem 1.75rem 2.25rem;
  }

  .site-nav ul {
    width: 100%;
  }

  .site-nav a {
    font-size: clamp(1.72rem, 8.4vw, 2.25rem);
    padding: 0.44rem 0;
  }

  .product-hero {
    min-height: 82vh;
  }

  .home-first-hero {
    min-height: 100vh;
    padding-top: max(8.8rem, 15vh);
    padding-bottom: 3.5rem;
  }

  .product-hero-main {
    min-height: 100vh;
    background:
      radial-gradient(circle at 50% 24%, rgba(46, 145, 63, 0.04), transparent 22rem),
      linear-gradient(
        0deg,
        rgba(222, 225, 229, 0.52) 0%,
        rgba(232, 234, 237, 0.36) 13%,
        rgba(241, 242, 244, 0.22) 27%,
        rgba(248, 249, 250, 0.10) 43%,
        rgba(255, 255, 255, 0) 62%
      ),
      linear-gradient(180deg, #fbfbfd 0%, #ffffff 58%, #f5f5f7 100%);
  }

  .product-hero-dark {
    min-height: 88vh;
    background:
      linear-gradient(
        180deg,
        #f5f5f7 0%,
        #eff5f1 10%,
        #e3f0e6 22%,
        #cfe4d3 37%,
        rgba(166, 198, 171, 0.84) 50%,
        rgba(91, 122, 96, 0.82) 64%,
        rgba(36, 48, 40, 0.94) 78%,
        #151817 90%,
        #0c0d0c 100%
      );
  }

  .product-copy h1,
  .product-copy h2,
  .app-showcase-copy h2 {
    font-size: clamp(2.52rem, 13.5vw, 3.55rem);
  }

  .home-first-hero .product-copy h1 {
    font-size: clamp(2.52rem, 13.5vw, 3.55rem);
  }

  .home-hero-image {
    height: 275px;
  }

  .app-showcase-visual {
    min-height: 460px;
  }

  .app-showcase-image {
    width: min(92vw, 330px);
  }

  .pricing-card {
    padding: 1.12rem;
  }

  .pricing-badge {
    top: 0.82rem;
    right: 0.82rem;
  }

  .plan-tag {
    padding: 0.32rem 0.54rem;
    font-size: 0.68rem;
  }

  .locations-main-title,
  .section-title,
  .large-title {
    font-size: clamp(1.95rem, 9.5vw, 2.7rem);
  }

  .location-choice {
    min-width: 190px;
  }

  .location-choice span {
    font-size: 0.96rem;
  }

  .location-choice small {
    font-size: 0.78rem;
  }

  .location-image-panel {
    min-height: 300px;
    border-radius: 28px;
  }

  .location-image-label {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .location-info-panel h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .location-info-panel h3 {
    font-size: clamp(1.35rem, 7.4vw, 1.85rem);
  }

  .location-facts div {
    padding: 0.82rem 0.9rem;
  }

  .map-card {
    padding: 1rem;
  }

  .location-map-frame {
    height: 320px;
  }

  .house-principle-card h2 {
    font-size: clamp(1.9rem, 11.5vw, 2.85rem);
  }

  .house-principle-card p,
  .house-applies-card p {
    font-size: 0.98rem;
  }

  .house-premium-rules .rule-card h3 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .house-premium-rules .rule-number {
    margin-bottom: 2rem;
  }

  .daypass-price-box {
    border-radius: 24px;
  }

  .image-frame {
    min-height: 230px;
  }

  .image-frame-large {
    min-height: 310px;
  }

  .gallery-card {
    flex: 0 0 84vw;
    min-width: 84vw;
  }

  .gallery-image {
    min-height: 210px;
  }

  .gallery-placeholder {
    font-size: 0.94rem;
  }

  .footer-inner {
    width: min(100% - 1rem, var(--max-width));
    padding: 2.7rem 0 1.2rem;
  }

  .footer-logo img {
    height: 56px;
    max-width: 152px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .footer-column,
  .footer-contact-card {
    padding: 0.86rem;
    border-radius: 20px;
  }

  .footer-column-title {
    font-size: 0.7rem;
  }

  .footer-link-list a,
  .footer-link-list p,
  .footer-contact-card a {
    font-size: 0.86rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.page-enter,
  body.page-ready,
  body.page-leaving {
    opacity: 1;
    transform: none;
  }
}
