/* DJ Gadani — landing */
:root {
  --bg: #060606;
  --bg-elevated: #0f0f10;
  --bg-card: #161618;
  --border: rgba(255, 255, 255, 0.12);
  --text: #f3f3f4;
  --text-muted: #b1b1b5;
  --magenta: #fafafa;
  --violet: #cccccf;
  --cyan: #97979c;
  --accent: var(--magenta);
  --accent-soft: rgba(255, 255, 255, 0.14);
  --gradient: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 55%, var(--cyan) 100%);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --container: min(1160px, 100% - 2.5rem);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #dedee2;
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--text);
  color: #111;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container.narrow {
  max-width: 720px;
}

/* Ambient */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.glow-a {
  width: 50vw;
  height: 50vw;
  max-width: 520px;
  max-height: 520px;
  top: -10%;
  right: -8%;
  background: rgba(255, 255, 255, 0.12);
}

.glow-b {
  width: 40vw;
  height: 40vw;
  max-width: 420px;
  max-height: 420px;
  bottom: 20%;
  left: -12%;
  background: rgba(180, 180, 190, 0.16);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.logo-image {
  width: min(220px, 47vw);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  color: var(--text);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-header.nav-open .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

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

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--text);
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 2.5rem));
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(12, 12, 18, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .site-nav a {
    font-size: 1rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

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

  .site-nav {
    margin-right: 1.25rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--gradient);
  color: #111;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  color: #111;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
    max-width: 380px;
    margin-inline: auto;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

#hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero-line {
  display: block;
  font-size: clamp(4.5rem, 14vw, 8.5rem);
}

.hero-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: 0.5rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.hero-stats > div:not(.stat-divider) {
  flex: 1 1 140px;
  min-width: 120px;
}

.hero-stats dt {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
}

.hero-stats dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stat-divider {
  display: none;
  flex: none;
  min-width: 0;
  width: 0;
  padding: 0;
  margin: 0;
}

@media (min-width: 700px) {
  .stat-divider {
    display: block;
    flex: none;
    width: 1px;
    min-width: 1px;
    align-self: stretch;
    background: var(--border);
    margin-inline: 0.5rem;
  }
}

/* Deck visual */
.deck-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-card) 0%, #16161f 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.deck-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 45, 149, 0.12), transparent 50%);
  pointer-events: none;
}

.equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 72px;
  margin-bottom: 1.5rem;
}

.equalizer span {
  width: 6px;
  border-radius: 3px;
  background: var(--gradient);
  animation: eq 0.9s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.07s);
  height: 20%;
}

.equalizer span:nth-child(odd) {
  background: linear-gradient(to top, var(--magenta), var(--violet));
}

.equalizer span:nth-child(even) {
  background: linear-gradient(to top, var(--violet), var(--cyan));
}

@keyframes eq {
  0% {
    height: 18%;
  }
  100% {
    height: 92%;
  }
}

.deck-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.deck-track {
  margin: 0.25rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

.vinyl {
  position: relative;
  width: 140px;
  height: 140px;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a35, #0a0a0f 70%);
  border: 3px solid #1a1a22;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
  animation: spin 8s linear infinite;
}

.vinyl::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vinyl::after {
  content: "";
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: var(--gradient);
}

.vinyl-label {
  position: absolute;
  inset: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--magenta);
  z-index: 1;
}

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

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 860px;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

.section h2 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

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

/* Services */
.services {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  font-size: 1.1rem;
  color: var(--magenta);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Mixes */
.mixes {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.mix-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.38) rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.mix-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin: -0.5rem 0 0.9rem;
}

.mix-controls.is-hidden {
  display: none;
}

.mix-arrow {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.mix-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.mix-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.mix-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.mix-grid > li {
  scroll-snap-align: start;
}

.mix-grid::-webkit-scrollbar {
  height: 10px;
}

.mix-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.mix-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.mix-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.52);
}

@media (max-width: 640px) {
  .mix-controls {
    display: none;
  }

  .mix-grid {
    grid-auto-columns: minmax(260px, 85vw);
  }
}

.mix-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.mix-card:hover {
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
  color: inherit;
}

.mix-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.mix-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.mix-card p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mix-play {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
}

.mix-card:hover .mix-play {
  color: var(--text);
}

.book-email {
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
}

.book-email a {
  font-weight: 600;
  text-decoration: none;
}

.book-email a:hover {
  text-decoration: underline;
}

/* Vibe */
.vibe-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.vibe-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.vibe-list li:first-child {
  padding-top: 0;
}

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

.vibe-list strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.7;
}

.vibe-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.vibe-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* IG banner */
.ig-banner {
  padding: 4rem 0;
}

.ig-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(130, 130, 140, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.ig-inner h2 {
  margin-bottom: 0.5rem;
}

.social-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-actions .btn {
  min-width: 190px;
}

/* Book */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.book-perks {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.book-perks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.book-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.book-form {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.field {
  margin-bottom: 1.1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.form-toast {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-toast.is-visible {
  display: block;
}

.form-toast.is-success {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--cyan);
}

.form-toast.is-error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fecaca;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .footer-copy {
    text-align: right;
  }
}

.footer-logo-image {
  width: min(210px, 62vw);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-tag {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
