/* ==========================================================================
   HyperFlex Gym — Shared Stylesheet
   Strict black & white minimal, premium. No color accent — contrast and
   type carry the design.
   ========================================================================== */

:root {
  --bg: #0B0B0C;
  --bg-raised: #141416;
  --bg-card: #18181B;
  --line: #2A2A2E;
  --line-soft: #1F1F22;
  --ink: #F4F2ED;
  --ink-dim: #9C9CA1;
  --ink-faint: #616166;
  --accent: #FFFFFF;
  --accent-dim: #4A4A4E;
  --accent-ink: #0B0B0C;
  --white: #FFFFFF;

  --font-display: 'Anton', sans-serif;
  --font-nav: 'Poppins', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 400;
}

p { line-height: 1.65; margin: 0 0 1em; color: var(--ink-dim); }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.eyebrow.neutral { color: var(--ink-dim); }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img { height: 64px; width: auto; }

.nav-logo-text {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .nav-logo img { height: 48px; }
  .nav-logo-text { font-size: 16px; }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.nav-mobile-panel {
  display: none;
  flex-direction: column;
  padding: 8px 32px 24px;
  gap: 4px;
  border-bottom: 1px solid var(--line-soft);
}

.nav-mobile-panel a {
  padding: 12px 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}

.nav-mobile-panel a:last-child { border-bottom: none; }
.nav-mobile-panel a.active { color: var(--accent); }

.nav-mobile-panel.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #E5E5E0; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink-dim);
  padding: 15px 4px;
}
.btn-ghost:hover { color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-border-top { border-top: 1px solid var(--line-soft); }

@media (max-width: 640px) {
  section { padding: 64px 0; }
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-head p { font-size: 16.5px; }

.section-footer-link {
  margin-top: 32px;
}

/* ---------- Hero (home) ---------- */
.hero {
  padding: 40px 0 64px;
  text-align: center;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 580px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(9, 9, 10, 0) 28%, rgba(9, 9, 10, 0.5) 58%, rgba(9, 9, 10, 0.72) 100%);
  z-index: 1;
}

.hero-visual-content {
  position: relative;
  z-index: 2;
  padding: 40px 32px 44px;
  max-width: 720px;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-visual {
    min-height: 340px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
  .hero-visual-content {
    padding: 22px 18px 24px;
  }
  .hero-visual-content h1 {
    font-size: 26px;
    line-height: 1.08;
    margin-bottom: 8px;
  }
  .hero-visual-content p {
    font-size: 13px;
    line-height: 1.5;
  }
  .hero-visual-content .eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .hero-visual-content .slogan-link {
    font-size: 15px;
    margin-bottom: 18px;
  }
}

.hero .location-tag {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  background: rgba(9, 9, 10, 0.72);
  border-radius: 999px;
  padding: 8px 18px;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 28px;
}

@media (max-width: 480px) {
  .hero .location-tag {
    font-size: 10px;
    letter-spacing: 1.2px;
    padding: 7px 14px;
    margin-bottom: 20px;
  }
}

/* Combined "Coming Soon" tagline bubble (home hero) */
.hero-tagline-bubble {
  display: inline-block;
  background: rgba(9, 9, 10, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 38px;
  margin-bottom: 30px;
  text-align: center;
}

.hero-tagline-bubble .htb-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 10px;
}

.hero-tagline-bubble .htb-subtitle {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 480px) {
  .hero-tagline-bubble {
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 22px;
  }
  .hero-tagline-bubble .htb-title {
    font-size: 26px;
    margin-bottom: 6px;
  }
  .hero-tagline-bubble .htb-subtitle {
    font-size: 9.5px;
    letter-spacing: 1.2px;
  }
}

.hero h1 {
  font-size: clamp(44px, 9vw, 96px);
  line-height: 0.98;
  margin-bottom: 20px;
}

.hero .slogan-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 26px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent-dim);
  padding-bottom: 4px;
  margin-bottom: 36px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.hero .slogan-link:hover { border-color: var(--accent); opacity: 0.85; }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Concept render image (home page) */
.concept-image-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.concept-image-wrap img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
}

.concept-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--ink-faint);
  margin-top: 16px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  margin-bottom: 16px;
}

.page-hero p { max-width: 560px; font-size: 17px; }

/* ---------- Preview cards grid (home) ---------- */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.preview-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.preview-card:hover { background: var(--bg-raised); }

.preview-card .pc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 24px;
}

.preview-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.preview-card p {
  font-size: 14.5px;
  flex-grow: 1;
}

.preview-card .pc-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .preview-grid { grid-template-columns: 1fr; }
}

/* ---------- Timeline (the build) ---------- */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-left: 52px;
  padding-bottom: 44px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
}

.timeline-item.done .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.timeline-item.current .timeline-dot {
  border-color: var(--accent);
  color: var(--accent);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 19px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item p { font-size: 14.5px; margin: 0; }

/* ---------- About page ---------- */
.about-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
}

.about-block:last-child { border-bottom: 1px solid var(--line-soft); }

.about-block h3 {
  font-size: 22px;
}

.about-block p { font-size: 16px; max-width: 640px; }

@media (max-width: 700px) {
  .about-block { grid-template-columns: 1fr; gap: 12px; }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px;
}

.pillar .pillar-mark {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 16px;
}

.pillar h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.pillar p { font-size: 14px; }

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.team-card:hover { border-color: var(--line); transform: translateY(-2px); }

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--bg-raised);
}

.team-card-body { padding: 22px 22px 26px; }

.team-card-body .role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.team-card-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.team-card-body p {
  font-size: 14px;
  margin-bottom: 16px;
}

.team-card-body .view-profile {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}

.team-card:hover .view-profile { color: var(--accent); }

/* Team card without a photo yet — text-forward, still fully finished */
.team-card.no-photo .team-card-body { padding-top: 30px; }

.team-card.no-photo .initial-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink-dim);
  margin: 26px 0 0 22px;
}

@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Individual profile page */
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
}

.profile-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--ink-faint);
}

.profile-role {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.profile-name { font-size: clamp(32px, 5vw, 52px); margin-bottom: 28px; }

.profile-section { margin-bottom: 32px; }

.profile-section h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.profile-section p { font-size: 16px; color: var(--ink); }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--ink-dim);
}

@media (max-width: 780px) {
  .profile-layout { grid-template-columns: 1fr; }
}

/* ---------- Equipment ---------- */
.brand-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line-soft);
}

.brand-block:last-child { border-bottom: 1px solid var(--line-soft); }

.brand-block.reverse { direction: rtl; }
.brand-block.reverse > * { direction: ltr; }

.brand-logo-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.brand-logo-wrap img { max-height: 90px; width: auto; }
.brand-logo-wrap.dark-logo { background: var(--white); }

.brand-copy .eyebrow { margin-bottom: 12px; }
.brand-copy h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.brand-copy p { font-size: 16px; }

@media (max-width: 800px) {
  .brand-block, .brand-block.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- Coaching ---------- */
.coach-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.coach-pillar {
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px;
}

.coach-pillar .pc-num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 20px;
}

.coach-pillar h3 { font-size: 24px; margin-bottom: 12px; }
.coach-pillar p { font-size: 15px; }

@media (max-width: 700px) {
  .coach-pillars { grid-template-columns: 1fr; }
}

.cta-banner {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 64px 32px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg));
}

.cta-banner h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; }
.cta-banner p { max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-item {
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
}

.contact-info-item:last-child { border-bottom: 1px solid var(--line-soft); }

.contact-info-item .eyebrow { margin-bottom: 10px; }
.contact-info-item a, .contact-info-item span.value {
  font-size: 18px;
  font-weight: 600;
}

.contact-info-item a:hover { color: var(--accent); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Forms ---------- */
.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-dim);
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--accent); }

.form-status {
  font-size: 13.5px;
  margin-top: 12px;
  display: none;
}
.form-status.success { color: var(--ink); display: block; }
.form-status.error { color: var(--accent); display: block; }

/* Waitlist / email signup band */
.signup-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 72px 0;
  text-align: center;
}

.signup-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 28px auto 0;
}

.signup-form input {
  flex: 1;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  color: var(--ink);
  font-size: 15px;
  outline: none;
}

.signup-form input:focus { border-color: var(--accent); }

.signup-form button {
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .signup-form { flex-direction: column; }
}

.signup-success {
  display: none;
  margin-top: 24px;
  font-size: 15px;
}
.signup-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo-text { font-size: 20px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--ink); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }

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