/* ============================================================
   aupa — Homepage Styles
   Design-Tokens nach dem aupa/Courtify Design-System
   ============================================================ */

/* ---------- Fonts (selbst gehostet, kein externes CDN) ---------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/pjs-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('fonts/pjs-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/pjs-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('fonts/pjs-800.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('fonts/jbm-500.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --bg: #fffaf5;
  --bg-card: #ffffff;
  --bg-subtle: #f5f1ec;
  --bg-elevated: #fff4eb;

  --orange: #ff4518;
  --orange-light: #ff7a52;
  --orange-pale: #fff1ec;
  --orange-deep: #e03008;
  --mint: #00e5a0;
  --mint-light: #d1fae5;

  --indigo: #12152b;
  --indigo-medium: #1e2444;

  --text: #0f0f1a;
  --text-secondary: #5c6370;
  --text-tertiary: #9ca3af;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(26, 26, 46, 0.06), 0 1px 2px rgba(26, 26, 46, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08), 0 2px 4px rgba(26, 26, 46, 0.04);
  --shadow-lg: 0 8px 24px rgba(26, 26, 46, 0.1), 0 4px 8px rgba(26, 26, 46, 0.06);
  --shadow-orange: 0 4px 16px rgba(255, 69, 24, 0.35), 0 2px 4px rgba(255, 69, 24, 0.15);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1080px;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: var(--orange-deep);
}

:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

section[id] {
  scroll-margin-top: 86px;
}

/* Skip-Link für Screenreader / Tastatur */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--indigo);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-md);
  z-index: 100;
  transition: top 0.18s var(--ease-out);
}
.skip-link:focus {
  top: 16px;
  color: #fff;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ---------- Typografie ---------- */
h1,
h2,
h3 {
  color: var(--text);
  text-wrap: balance;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

p {
  text-wrap: pretty;
}

.overline {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---------- Wordmark ---------- */
.wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
}
.wordmark:hover {
  color: var(--text);
}
.wordmark .mark {
  color: var(--orange);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.14s var(--ease-out),
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
  min-height: 52px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  color: #fff;
}
.btn-primary:active {
  background: var(--orange-deep);
  transform: scale(0.97);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(15, 15, 26, 0.14);
}
.btn-ghost:hover {
  background: var(--bg-subtle);
  color: var(--text);
}
.btn-ghost:active {
  transform: scale(0.97);
}

.btn-light {
  background: #fff;
  color: var(--orange-deep);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  background: #fff;
  color: var(--orange-deep);
  box-shadow: var(--shadow-lg);
}
.btn-light:active {
  transform: scale(0.97);
}

.btn .arrow {
  transition: transform 0.18s var(--ease-out);
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.scrolled {
  border-bottom-color: rgba(26, 26, 46, 0.07);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a.nav-link {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.16s ease;
}
.nav-links a.nav-link:hover {
  color: var(--text);
}
.nav-cta {
  font-size: 14px;
  padding: 11px 20px;
  min-height: 44px;
}

/* Sprach-Umschalter */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  border: 1.5px solid rgba(15, 15, 26, 0.14);
  border-radius: var(--r-full);
  padding: 8px 13px;
  min-height: 40px;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
.lang-switch:hover {
  color: var(--text);
  border-color: rgba(15, 15, 26, 0.28);
  background: var(--bg-subtle);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 88px;
  overflow: hidden;
}
.hero-inner {
  max-width: 780px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-orange {
  width: 460px;
  height: 460px;
  background: rgba(255, 69, 24, 0.13);
  top: -180px;
  right: -120px;
}
.blob-mint {
  width: 380px;
  height: 380px;
  background: rgba(0, 229, 160, 0.12);
  bottom: -200px;
  left: -140px;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}

/* Beta-Pille */
.beta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 69, 24, 0.18);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 16px 9px 13px;
  border-radius: var(--r-full);
}
.pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  flex: none;
}
.pulse-dot::before,
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
}
.pulse-dot::after {
  animation: ping 2s var(--ease-out) infinite;
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70%,
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 24px 0 0;
}
.hero h1 .accent {
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Sport-Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 40px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-pale);
  color: var(--orange-deep);
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-full);
}
.chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.chip.mint {
  background: var(--mint-light);
  color: #047857;
}
.chip.mint::before {
  background: var(--mint);
}

/* ---------- Section-Kopf ---------- */
.section-pad {
  padding: 88px 0;
}
.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-top: 14px;
}
.section-head p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  margin-top: 14px;
}

/* ---------- Spot-Typen-Raster ---------- */
.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.spot-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.spot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.spot-card .spot-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.spot-card:nth-child(3n + 2) .spot-icon {
  background: var(--mint-light);
  color: #047857;
}
.spot-card:nth-child(3n) .spot-icon {
  background: #d6eeff;
  color: #0072b4;
}
.spot-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.spot-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 5px;
}

/* Detailzeile: was jeder Spot mitbringt */
.spot-meta {
  margin-top: 28px;
  background: var(--bg-elevated);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.spot-meta .spot-meta-label {
  width: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.spot-meta span.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.spot-meta span.tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

/* ---------- Funktions-Blöcke ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feat-block {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 30px;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.feat-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-block:nth-child(2) .feat-icon {
  background: var(--mint-light);
  color: #047857;
}
.feat-block:nth-child(3) .feat-icon {
  background: #d6eeff;
  color: #0072b4;
}
.feat-block:nth-child(4) .feat-icon {
  background: #fff3c7;
  color: #b7791f;
}
.feat-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
.feat-block > p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 9px;
}
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.feat-tag {
  background: var(--bg-subtle);
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: var(--r-sm);
}

/* ---------- Zahlen-Band ---------- */
.stats-band {
  background: var(--indigo);
  border-radius: var(--r-2xl);
  padding: 44px 32px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
}
.stat .stat-num {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 10px;
}

/* ---------- Beta-Band (Highlight-Karte) ---------- */
.beta-band {
  background: linear-gradient(135deg, #ff4518, #ff7a52);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-orange);
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.beta-band .overline {
  color: rgba(255, 255, 255, 0.82);
}
.beta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-top: 12px;
  max-width: 560px;
}
.beta-band p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.07rem;
  margin-top: 16px;
  max-width: 580px;
}
.beta-band .btn {
  margin-top: 30px;
}
.beta-band .deco-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.beta-band .deco-ring.r1 {
  width: 280px;
  height: 280px;
  right: -90px;
  top: -120px;
}
.beta-band .deco-ring.r2 {
  width: 180px;
  height: 180px;
  right: 40px;
  bottom: -100px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--orange-deep);
}
.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}
.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.22s var(--ease-out), opacity 0.22s ease;
}
.faq-plus::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2.5px;
}
.faq-plus::after {
  left: 9px;
  top: 2px;
  width: 2.5px;
  height: 16px;
}
.faq-item[open] .faq-plus::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-intro h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-top: 14px;
}
.contact-intro p {
  color: var(--text-secondary);
  font-size: 1.06rem;
  margin-top: 14px;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 600;
  font-size: 0.98rem;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--bg-subtle);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  padding: 13px 15px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-tertiary);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--orange);
}
.field textarea {
  resize: vertical;
  min-height: 104px;
}
.form-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}
.form-status {
  font-size: 14px;
  font-weight: 600;
  color: #047857;
  margin-top: 14px;
  min-height: 20px;
}
.contact-card .btn {
  width: 100%;
  margin-top: 6px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.62);
  padding: 56px 0 40px;
  margin-top: 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.footer .wordmark {
  color: #fff;
  font-size: 20px;
}
.footer-tagline {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-meta {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Schlichter Footer der Rechts-Seiten */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}
.footer-links a:hover {
  color: #fff;
}

/* ============================================================
   Rechts-Seiten (Impressum / Datenschutz)
   ============================================================ */
.legal-nav {
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
}
.legal-main {
  padding: 56px 0 80px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.legal-back:hover {
  color: var(--orange);
}
.prose {
  max-width: 720px;
}
.prose h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
}
.prose .updated {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.prose h2 {
  font-size: 1.32rem;
  font-weight: 700;
  margin-top: 40px;
}
.prose h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 24px;
}
.prose p,
.prose ul {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 1rem;
}
.prose ul {
  padding-left: 22px;
}
.prose li {
  margin-top: 6px;
}
.prose strong {
  color: var(--text);
  font-weight: 700;
}
.prose address {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 12px;
}
/* Platzhalter, die der Betreiber noch ausfüllen muss */
.fill {
  background: var(--orange-pale);
  color: var(--orange-deep);
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 5px;
  font-size: 0.92em;
}
.callout {
  background: var(--bg-elevated);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin-top: 24px;
}
.callout p {
  margin-top: 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* ---------- Reveal-Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.62s var(--ease-out),
    transform 0.62s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.feat-block.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.feat-block.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.feat-block.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .spot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links .nav-link {
    display: none;
  }
  .section-pad {
    padding: 64px 0;
  }
  .hero {
    padding: 52px 0 64px;
  }
  .beta-band {
    padding: 40px 26px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding: 0 18px;
  }
  .spot-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
