/* ═══════════════════════════════════════════
   CANYON CURRENT — "Live Current" Design System
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;600;700;800&family=Manrope:wght@400;500;600&display=swap');

:root {
  /* ── Palette ── */
  --void: #080d16;
  --deep: #0c1220;
  --slate: #151d2e;
  --steel: #1e2a3f;

  --warm-white: #faf9f6;
  --cloud: #f3f1ec;
  --mist: #e8e5de;
  --stone: #c8c4bb;

  --amber: #f5a623;
  --amber-hot: #ffbe45;
  --amber-dim: #c8871c;
  --amber-glow: rgba(245, 166, 35, 0.15);
  --amber-glow-strong: rgba(245, 166, 35, 0.3);

  --text-light: #f0ede7;
  --text-light-secondary: #9ba4b5;
  --text-dark: #1a1a18;
  --text-dark-secondary: #5c5b56;

  --danger: #e74c3c;

  /* ── Typography ── */
  --font-display: 'Bricolage Grotesque', serif;
  --font-body: 'Manrope', sans-serif;

  /* ── Spacing ── */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem;
  --sp-4: 1rem;    --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;    --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem;   --sp-20: 5rem;   --sp-24: 6rem;
  --sp-32: 8rem;   --sp-40: 10rem;

  /* ── Radii ── */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px var(--amber-glow), 0 0 60px var(--amber-glow);
  --shadow-glow-sm: 0 0 16px var(--amber-glow);

  /* ── Transitions ── */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 250ms;
  --duration-slow: 500ms;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ═══ TYPOGRAPHY ═══ */
.display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.body {
  font-size: 1rem;
  line-height: 1.65;
}

.caption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
}

/* ═══ LAYOUT ═══ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  width: 100%;
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--sp-8); }
}

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--duration-slow) var(--ease),
              border-color var(--duration-slow) var(--ease);
}

.header--dark {
  background: rgba(8, 13, 22, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header--light {
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .nav-bar { padding: var(--sp-5) var(--sp-8); }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--amber);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header--dark .logo-text { color: var(--text-light); }
.header--light .logo-text { color: var(--text-dark); }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-links {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}

.header--dark .nav-link { color: var(--text-light-secondary); }
.header--dark .nav-link:hover { color: var(--text-light); }
.header--light .nav-link { color: var(--text-dark-secondary); }
.header--light .nav-link:hover { color: var(--text-dark); }

/* Mobile menu */
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none;
}

@media (min-width: 768px) { .menu-toggle { display: none; } }

.header--dark .menu-toggle { color: var(--text-light); }
.header--light .menu-toggle { color: var(--text-dark); }

.menu-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--deep);
  flex-direction: column;
  padding: var(--sp-24) var(--sp-8) var(--sp-8);
  gap: var(--sp-2);
}

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

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--duration) var(--ease);
}

.mobile-nav-link:hover { color: var(--amber); }

.mobile-nav-close {
  position: absolute; top: var(--sp-5); right: var(--sp-6);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--text-light);
}

.mobile-nav-close svg { width: 24px; height: 24px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-6);
  height: 2.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

/* Amber glow button — the signature interaction */
.btn-glow {
  background: var(--amber);
  color: var(--void);
  box-shadow: 0 0 0 rgba(245, 166, 35, 0);
}

.btn-glow:hover {
  background: var(--amber-hot);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--deep);
  color: var(--text-light);
}

.btn-dark:hover {
  background: var(--slate);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--mist);
}

.btn-outline-dark:hover {
  border-color: var(--stone);
  background: var(--cloud);
}

.btn-lg {
  height: 3.25rem;
  padding: 0 var(--sp-8);
  font-size: 1rem;
  border-radius: var(--r-lg);
}

.btn-full { width: 100%; }

/* ═══ DARK HERO ═══ */
.hero-dark {
  position: relative;
  background: var(--deep);
  padding: var(--sp-32) 0 var(--sp-20);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-dark { padding: var(--sp-40) 0 var(--sp-24); }
}

/* Circuit grid texture */
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, black 20%, transparent 70%);
}

/* Ambient glow */
.hero-dark::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--sp-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--sp-16);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.hero-content .display {
  color: var(--text-light);
}

/* Amber gradient text accent */
.hero-content .display .accent {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-hot) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .body-lg {
  color: var(--text-light-secondary);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--r-full);
  align-self: flex-start;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow-strong);
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--amber);
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--amber-glow-strong); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--amber-glow-strong); }
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Glow accent under hero image */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: var(--amber);
  filter: blur(40px);
  opacity: 0.15;
  border-radius: 50%;
}


/* ═══ LIGHT SECTIONS ═══ */
.section-light {
  padding: var(--sp-20) 0;
  background: var(--warm-white);
}

@media (min-width: 768px) {
  .section-light { padding: var(--sp-32) 0; }
}

.section-cloud {
  padding: var(--sp-20) 0;
  background: var(--cloud);
}

@media (min-width: 768px) {
  .section-cloud { padding: var(--sp-32) 0; }
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.section-header .headline { color: var(--text-dark); }
.section-header .body-lg { color: var(--text-dark-secondary); }

/* ═══ SERVICE CARDS ═══ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--mist);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--stone);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-card-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber-dim);
  margin-top: var(--sp-1);
  transition: gap var(--duration) var(--ease), color var(--duration) var(--ease);
}

.card-link:hover { gap: 10px; color: var(--amber); }
.card-link svg { width: 16px; height: 16px; }

/* ═══ FEATURE SECTION (community / about) ═══ */
.feature-row {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
}

.feature-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.feature-content .headline { color: var(--text-dark); }
.feature-content .body-lg { color: var(--text-dark-secondary); }
.feature-content .body { color: var(--text-dark-secondary); }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  position: relative;
  background: var(--deep);
  border-radius: var(--r-xl);
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-banner { padding: var(--sp-16) var(--sp-12); }
}

/* Grid texture on CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 70%);
}

.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .headline { color: var(--text-light); max-width: 580px; }
.cta-banner .body-lg { color: var(--text-light-secondary); max-width: 480px; }

/* ═══ SERVICE DETAIL PAGE ═══ */
.page-hero {
  text-align: center;
  padding: var(--sp-32) 0 var(--sp-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.page-hero .display { color: var(--text-dark); }
.page-hero .body-lg { color: var(--text-dark-secondary); max-width: 560px; }

.service-detail {
  padding: var(--sp-12) 0;
}

.service-detail + .service-detail {
  border-top: 1px solid var(--mist);
}

.detail-grid {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
  }
  .detail-grid.flipped { direction: rtl; }
  .detail-grid.flipped > * { direction: ltr; }
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.detail-content .headline { color: var(--text-dark); }
.detail-content .body { color: var(--text-dark-secondary); max-width: 480px; }

.detail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

.check-list li svg {
  width: 20px; height: 20px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══ VALUES GRID ═══ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  background: var(--warm-white);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.value-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: var(--shadow-glow-sm);
}

.value-icon {
  width: 48px; height: 48px;
  background: var(--amber-glow);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
}

.value-icon svg { width: 24px; height: 24px; }
.value-card .title { color: var(--text-dark); }
.value-card .body { color: var(--text-dark-secondary); }

/* ═══ CONTACT PAGE ═══ */
.contact-grid {
  display: grid;
  gap: var(--sp-8);
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--sp-12);
  }
}

.form-card {
  background: var(--warm-white);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

@media (min-width: 768px) {
  .form-card { padding: var(--sp-10); }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input {
  background: var(--cloud);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
  min-height: 2.75rem;
}

.form-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
  background: var(--warm-white);
}

.form-input::placeholder { color: var(--stone); }

textarea.form-input { resize: vertical; min-height: 120px; }

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c8c4bb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.info-card {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.info-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.info-item svg {
  width: 20px; height: 20px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.info-item .body {
  font-size: 0.9375rem;
  color: var(--text-dark-secondary);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--void);
  color: var(--text-light-secondary);
  padding: var(--sp-16) var(--sp-6) var(--sp-8);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

/* Subtle grid on footer */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 60%);
}

.footer > * { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  max-width: 1200px;
  margin: 0 auto var(--sp-12);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo-icon { color: var(--amber); }
.footer-brand .logo-text { color: var(--text-light); }

.footer-brand .body {
  color: var(--text-light-secondary);
  max-width: 280px;
  margin-top: var(--sp-3);
  font-size: 0.9375rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-secondary);
  margin-bottom: var(--sp-1);
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--text-light-secondary);
  transition: color var(--duration) var(--ease);
}

.footer-link:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-light-secondary);
}

.footer-bottom-links { display: flex; gap: var(--sp-6); }

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--text-light-secondary);
  transition: color var(--duration) var(--ease);
}

.footer-bottom-links a:hover { color: var(--amber); }

/* ═══ ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══ UTILITIES ═══ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
