/* ============================================
   11 DECIBELS — Recording Studio, Andheri Mumbai
   Dark · cinematic · warm. Light-mode toggle included.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* dark is the default identity */
  --bg: #0a0a0c;
  --bg-elevated: #141417;
  --bg-card: #161619;
  --ink: #f5f5f7;
  --ink-dim: #a1a1a6;
  --ink-faint: #6e6e73;
  --accent: #f5a524;        /* warm amber — analog/VU-meter glow */
  --accent-soft: #ffb74d;
  --accent-ink: #0a0a0c;    /* text that sits on the amber */
  --line: #2a2a2e;
  --nav-bg: rgba(10, 10, 12, 0.72);
  --glow: rgba(245, 165, 36, 0.16);
  --max-width: 1100px;
  --gutter: clamp(1.5rem, 5vw, 3.5rem);
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
}

:root[data-theme="light"] {
  --bg: #fbfbfd;
  --bg-elevated: #ffffff;
  --bg-card: #f4f4f6;
  --ink: #15151a;
  --ink-dim: #5d5d66;
  --ink-faint: #a0a0a8;
  --accent: #c8791a;
  --accent-soft: #e0902b;
  --accent-ink: #ffffff;
  --line: #e4e4e8;
  --nav-bg: rgba(251, 251, 253, 0.8);
  --glow: rgba(200, 121, 26, 0.12);
}

html { color-scheme: dark; }
:root[data-theme="light"] { color-scheme: light; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: color 0.3s ease, opacity 0.3s ease; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
}

.nav-brand b { font-weight: 700; }
.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.nav-links a {
  color: var(--ink-dim);
  position: relative;
  padding: 0.25rem 0;
}

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

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

/* Book CTA in the nav */
.nav-links a.nav-cta {
  color: var(--accent-ink);
  background: var(--accent);
  padding: 0.5rem 1.1rem;
  border-radius: 980px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--accent-soft); transform: translateY(-1px); color: var(--accent-ink); }

.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
}

.nav-right { display: flex; align-items: center; gap: 1.4rem; }

.theme-toggle {
  position: relative; z-index: 101;
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; padding: 0;
  background: none; border: none;
  color: var(--ink-dim);
  cursor: pointer;
  transition: color 0.3s ease;
}
.theme-toggle:hover { color: var(--accent); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    font-size: 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; z-index: 101; }
  .nav-links a.nav-cta { padding: 0.6rem 1.6rem; font-size: 1.25rem; }
}

/* ============================================
   PAGE WRAPPER + SHARED
   ============================================ */

main { padding-top: 80px; min-height: 100vh; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

em.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 980px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.3s, transform 0.3s, border-color 0.3s, color 0.3s;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-soft); transform: translateY(-2px); color: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============================================
   HERO (homepage)
   ============================================ */

.hero {
  min-height: calc(92vh - 60px);
  display: flex;
  align-items: center;
  padding: 5rem var(--gutter) 6rem;
  position: relative;
  overflow: hidden;
}

/* soft amber glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* animated equalizer bars, decorative */
.hero-eq {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, transparent 100%);
}
.hero-eq span {
  width: 5px;
  background: var(--accent);
  border-radius: 3px;
  animation: eq 1.4s ease-in-out infinite;
}
@keyframes eq {
  0%, 100% { height: 12%; }
  50% { height: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eq span { animation: none; height: 30%; }
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-intro {
  margin: 1.75rem auto 0;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 40rem;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-top: 3rem;
}
.hero-meta-item { text-align: center; }
.hero-meta-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-meta-item span { color: var(--ink-faint); font-size: 0.82rem; }

/* ============================================
   SECTION SCAFFOLD
   ============================================ */

.section { padding: 5.5rem var(--gutter); }
.section-tight { padding: 3.5rem var(--gutter); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-head { max-width: 42rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.section-desc {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--ink-dim);
  line-height: 1.6;
}

.section-alt { background: var(--bg-elevated); }

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border-color: var(--accent);
}

.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glow);
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.55;
}
.service-tag {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Larger detail blocks on the services page */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 760px) {
  .service-detail { grid-template-columns: 0.8fr 2fr; gap: 3rem; }
}
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.service-detail-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
}
.service-detail h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}
.service-detail p { font-size: 1.05rem; color: var(--ink-dim); line-height: 1.65; }
.service-detail ul {
  margin-top: 1.1rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.service-detail li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
  color: var(--ink-dim);
}
.service-detail li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================
   FEATURE / WHY-US STRIP
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
}
.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.feature h3 svg { width: 20px; height: 20px; color: var(--accent); }
.feature p { font-size: 0.95rem; color: var(--ink-dim); line-height: 1.55; }

/* ============================================
   TESTIMONIALS / REVIEWS
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.15em; }
.review-text { font-size: 1rem; line-height: 1.6; color: var(--ink); font-style: italic; }
.review-author { font-size: 0.9rem; color: var(--ink-dim); font-weight: 500; }
.review-author span { color: var(--ink-faint); font-weight: 400; }

.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================
   BIG CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--glow), transparent 60%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.cta-banner h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.cta-banner p { margin: 1.1rem auto 2rem; color: var(--ink-dim); max-width: 34rem; font-size: 1.1rem; }
.cta-banner .hero-actions { margin-top: 0; }

/* ============================================
   PAGE HEADERS (interior pages)
   ============================================ */

.page-header { padding: 7rem var(--gutter) 3rem; position: relative; overflow: hidden; }
.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, var(--glow), transparent 60%);
  pointer-events: none;
}
.page-header-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.page-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.page-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.page-desc {
  margin-top: 1.75rem;
  max-width: 40rem;
  font-size: 1.15rem;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* ============================================
   BOOKING (Calendly embed)
   ============================================ */

.booking { padding: 1rem var(--gutter) 5rem; }
.booking-inner { max-width: var(--max-width); margin: 0 auto; }

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.booking-placeholder {
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: clamp(2.5rem, 6vw, 4.5rem) 2rem;
  text-align: center;
  background: var(--bg-card);
}
.booking-placeholder .service-icon { margin: 0 auto 1.25rem; width: 56px; height: 56px; }
.booking-placeholder .service-icon svg { width: 28px; height: 28px; }
.booking-placeholder h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.75rem; }
.booking-placeholder p { color: var(--ink-dim); max-width: 32rem; margin: 0 auto 1.5rem; }
.booking-placeholder code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  color: var(--accent);
}

.booking-steps {
  margin: 3rem auto 0;
  max-width: 40rem;
  display: grid;
  gap: 1rem;
}
.booking-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
}
.booking-step b {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.booking-step p { font-size: 0.98rem; color: var(--ink-dim); }
.booking-step strong { color: var(--ink); font-weight: 500; }

/* ============================================
   CONTACT
   ============================================ */

.contact { padding: 1rem var(--gutter) 6rem; }
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 880px) {
  .contact-inner { grid-template-columns: 1.2fr 1fr; gap: 4.5rem; }
}

.contact-form { display: grid; gap: 1.5rem; }
.form-row { display: grid; gap: 0.5rem; }
.form-row label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-dim);
}
.form-row input,
.form-row textarea,
.form-row select {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  transition: border-color 0.3s, background 0.3s;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.form-row select { appearance: none; cursor: pointer; }
.form-grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 520px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.form-submit { justify-self: start; margin-top: 0.5rem; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); }

/* contact side panel */
.contact-side { display: grid; gap: 1.5rem; align-content: start; }
.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
}
.contact-block .label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
  display: block;
}
.contact-block a, .contact-block address {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: normal;
  line-height: 1.5;
}
.contact-block a:hover { color: var(--accent); }
.contact-block .muted { color: var(--ink-dim); font-size: 0.92rem; margin-top: 0.35rem; }

.contact-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 980px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.contact-social svg { width: 18px; height: 18px; }
.contact-social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* map */
.map-wrap {
  margin-top: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(0.2); }

/* ============================================
   ABOUT
   ============================================ */

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 820px) {
  .about-inner { grid-template-columns: 1.6fr 1fr; gap: 4.5rem; align-items: start; }
}
.about-prose { font-size: 1.18rem; line-height: 1.7; color: var(--ink); }
.about-prose p { margin-bottom: 1.4rem; }
.about-prose em { font-family: var(--font-serif); font-style: italic; color: var(--accent); }
.about-stats {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
}
.about-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.about-stat span { font-size: 0.92rem; color: var(--ink-dim); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem var(--gutter) 2.5rem;
  margin-top: auto;
  background: var(--bg-elevated);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}
.footer-brand .nav-brand { font-size: 1.25rem; }
.footer-brand p { margin-top: 0.9rem; color: var(--ink-dim); font-size: 0.95rem; max-width: 22rem; line-height: 1.55; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--ink-dim);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; }
  html { scroll-behavior: auto; }
}
