/* ================================================================
   IVORY SAFARI — style.css
   Dark cinematic artist website
   ================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
   Edit these to retheme the entire site quickly.
   ---------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg:           #05060d;         /* near-black background */
  --color-bg-2:         #080c18;         /* slightly lighter panel bg */
  --color-bg-3:         #0b1020;         /* card backgrounds */
  --color-border:       rgba(0, 210, 255, 0.08);
  --color-text:         #e8eaf0;
  --color-text-muted:   #8892aa;
  --color-text-dim:     #555f78;
  --color-cyan:         #00d2ff;         /* primary glow accent */
  --color-blue:         #1a5fff;         /* secondary accent */
  --color-violet:       #7c4dff;         /* tertiary accent */
  --color-white:        #ffffff;

  /* Gradients */
  --grad-hero:          radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,92,200,0.22) 0%, transparent 70%),
                        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,210,255,0.08) 0%, transparent 60%),
                        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124,77,255,0.08) 0%, transparent 60%);
  --grad-btn-primary:   linear-gradient(135deg, #00d2ff 0%, #1a5fff 60%, #7c4dff 100%);
  --grad-text:          linear-gradient(90deg, #00d2ff 0%, #7c4dff 100%);

  /* Typography */
  --font-display:       'Cormorant Garamond', Georgia, serif;
  --font-body:          'Outfit', system-ui, sans-serif;

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    7rem;

  /* Layout */
  --max-width:   1160px;
  --nav-height:  68px;

  /* Misc */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ----------------------------------------------------------------
   NOISE GRAIN OVERLAY
   Creates the cinematic film-grain texture over everything.
   ---------------------------------------------------------------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ----------------------------------------------------------------
   UTILITY — CONTAINER
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* ----------------------------------------------------------------
   UTILITY — SECTION
   ---------------------------------------------------------------- */
.section {
  padding-block: var(--space-xl);
  position: relative;
}

/* ----------------------------------------------------------------
   UTILITY — EYEBROW LABEL
   ---------------------------------------------------------------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: var(--space-sm);
  display: block;
}

/* ----------------------------------------------------------------
   UTILITY — SECTION HEADINGS
   ---------------------------------------------------------------- */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL ANIMATION
   JavaScript adds .is-visible to trigger the animation.
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* Stagger delays for sibling elements */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  overflow: hidden;
}

/* Primary — glowing gradient */
.btn-primary {
  background: var(--grad-btn-primary);
  color: var(--color-white);
  box-shadow: 0 0 28px rgba(0, 210, 255, 0.2),
              0 0 60px rgba(26, 95, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.35),
              0 0 80px rgba(26, 95, 255, 0.25);
}

/* Animated inner glow pulse */
.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn-primary:hover .btn-glow {
  transform: translateX(100%);
}

/* Secondary — ghost with subtle border */
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 210, 255, 0.4);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Outline — for streaming platform buttons */
.btn-outline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1.6rem;
}

.btn-outline:hover {
  background: rgba(0, 210, 255, 0.06);
  border-color: rgba(0, 210, 255, 0.35);
  color: var(--color-cyan);
  transform: translateY(-2px);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(5, 6, 13, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav-logo:hover {
  color: var(--color-cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-menu a:hover {
  color: var(--color-cyan);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Background atmospheric orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.orb-1 {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,90,200,0.4) 0%, transparent 70%);
  animation: orb-drift-1 14s ease-in-out infinite alternate;
}

.orb-2 {
  width: 35vw;
  height: 35vw;
  max-width: 450px;
  max-height: 450px;
  top: 30%;
  right: -10%;
  background: radial-gradient(circle, rgba(0,210,255,0.18) 0%, transparent 70%);
  animation: orb-drift-2 18s ease-in-out infinite alternate;
}

.orb-3 {
  width: 30vw;
  height: 30vw;
  max-width: 380px;
  max-height: 380px;
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(124,77,255,0.18) 0%, transparent 70%);
  animation: orb-drift-3 22s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  from { transform: translateX(-50%) translateY(0px); }
  to   { transform: translateX(-50%) translateY(-40px); }
}

@keyframes orb-drift-2 {
  from { transform: translateY(0px) scale(1); }
  to   { transform: translateY(30px) scale(1.08); }
}

@keyframes orb-drift-3 {
  from { transform: translateY(0px) scale(1); }
  to   { transform: translateY(-25px) scale(1.05); }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
  position: relative;
  z-index: 1;
}

/* ---- Avatar ---- */
.hero-avatar {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(0, 210, 255, 0.25);
  position: relative;
  z-index: 1;
  /* Placeholder background color while image loads */
  background-color: var(--color-bg-3);
}

.avatar-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,255,0.18) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { opacity: 0.5; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1.03); }
}

/* ---- Hero text ---- */
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-block: var(--space-sm);
}

.hero-name em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-top: var(--space-xs);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-sm);
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(0,210,255,0.6), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1) translateY(30px); }
}

/* ----------------------------------------------------------------
   RELEASE SECTION
   ---------------------------------------------------------------- */
.release {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.release-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ---- Artwork ---- */
.release-artwork {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
              0 0 0 1px var(--color-border);
}

.release-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.release-artwork:hover .release-img {
  transform: scale(1.04);
}

.release-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,210,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Release info ---- */
.release-artist {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 0.5rem;
}

.release-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.release-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 42ch;
}

.release-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ----------------------------------------------------------------
   ABOUT SECTION
   ---------------------------------------------------------------- */
.about-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-deco {
  padding-top: 2.2rem;
}

.about-line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, var(--color-cyan), transparent);
  margin-inline: auto;
}

.about-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* ----------------------------------------------------------------
   GALLERY SECTION
   ---------------------------------------------------------------- */
.gallery {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

/* Large item spans 2 columns and 2 rows */
.gallery-item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-3);
  cursor: pointer;
}

.gallery-item--large {
  aspect-ratio: unset;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  /* Placeholder tint while image loads */
  background: linear-gradient(135deg, #0b1020 0%, #111827 100%);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,210,255,0.06) 0%, rgba(124,77,255,0.06) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ----------------------------------------------------------------
   CONNECT / SOCIAL SECTION
   ---------------------------------------------------------------- */
.connect-inner {
  text-align: center;
}

.connect-sub {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: -2rem;
  margin-bottom: var(--space-lg);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-md) var(--space-sm);
  border-radius: var(--radius-lg);
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-btn-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.social-card:hover::before {
  opacity: 0.05;
}

.social-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(0, 210, 255, 0.06);
}

.social-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.social-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.social-card:hover .social-icon-wrap svg {
  color: var(--color-cyan);
}

.social-name {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

.social-card:hover .social-name {
  color: var(--color-white);
}

.social-arrow {
  font-size: 0.7rem;
  color: var(--color-text-dim);
  position: relative;
  z-index: 1;
  transition: color var(--transition), transform var(--transition);
}

.social-card:hover .social-arrow {
  color: var(--color-cyan);
  transform: translate(2px, -2px);
}

/* ----------------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------------- */
.contact-inner {
  text-align: center;
}

.contact-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: -2.5rem;
  margin-bottom: var(--space-sm);
}

.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-cyan);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-cyan);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform var(--transition);
}

.contact-email:hover {
  color: var(--color-white);
}

.contact-email:hover::after {
  transform: scaleX(1);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-md);
  background: var(--color-bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: var(--space-md);
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  transition: color var(--transition);
}

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

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET
   ---------------------------------------------------------------- */
@media (max-width: 900px) {

  :root {
    --space-xl: 5rem;
  }

  .release-card {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .release-artwork {
    max-width: 420px;
    margin-inline: auto;
  }

  .release-info {
    text-align: center;
  }

  .release-btns {
    justify-content: center;
  }

  .release-desc {
    margin-inline: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-deco {
    display: none;
  }

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

  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE
   ---------------------------------------------------------------- */
@media (max-width: 600px) {

  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
    --space-md: 1.5rem;
  }

  /* Show hamburger, hide desktop menu */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 6, 13, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md);
    gap: var(--space-md);
    text-align: center;
  }

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

  .hero-avatar {
    width: 140px;
    height: 140px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .gallery-item--large {
    aspect-ratio: 4 / 3;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
   ACCESSIBILITY — Reduced Motion
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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