/* ═══════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --ink: #0a0a0f;
  --surface: #111118;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --accent: #c8a96e;
  --accent2: #7c6fcd;
  --text: #e8e6e1;
  --muted: #7a7870;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
  --ff-mono: 'DM Mono', monospace;
  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
}

/* ═══════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════ */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
button { border:none; background:none; cursor:none; font-family:inherit; }

/* Restore normal cursor & hide custom cursor on touch devices */
@media (hover: none) {
  body, button, a { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration:0.01ms!important; transition-duration:0.01ms!important; }
}

/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR  (desktop/mouse only)
═══════════════════════════════════════════════════════ */
#cursor-dot, #cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  top: 0; left: 0;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,169,110,0.5);
  top: 0; left: 0;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s;
}
#cursor-ring.expanded {
  width: 60px; height: 60px;
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   CANVAS PARTICLES
═══════════════════════════════════════════════════════ */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.primary-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--text); }
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

.header-actions { display:flex; gap:0.5rem; align-items:center; }

.btn-theme {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  font-size: 1rem;
  display: grid; place-items: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.btn-theme:hover { border-color: var(--accent); background: rgba(200,169,110,0.08); }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Hamburger → X animation */
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .menu-btn { display: flex; }

  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0 5% 1.5rem;
    display: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav li { border-bottom: 1px solid var(--glass-border); }
  .primary-nav li:last-child { border-bottom: none; }
  .primary-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text);
  }
  .primary-nav a::after { display: none; }
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  gap: 4rem;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,111,205,0.12) 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-heading .line { display: block; overflow: hidden; }
.hero-heading .line-inner {
  display: block;
  transform: translateY(110%);
  animation: slideUp 0.9s var(--ease-out-expo) forwards;
}
.hero-heading .line:nth-child(2) .line-inner { animation-delay: 0.08s; }
.hero-heading .line:nth-child(3) .line-inner { animation-delay: 0.16s; }
.hero-heading em { color: var(--accent); font-style: italic; }

@keyframes slideUp { to { transform: translateY(0); } }

.hero-typed-wrap {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 1rem;
  min-height: 1.6em;
  font-weight: 300;
}
#typed-output::after {
  content: '|';
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 38ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
@media (hover: hover) {
  .btn:hover { transform: translateY(-3px); }
}
.btn:active { transform: scale(0.98) !important; }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(200,169,110,0.3); }
.btn-outline {
  border: 1px solid var(--glass-border);
  color: var(--text);
  background: var(--glass);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,169,110,0.06); }

/* Hero image */
.hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: min(360px, 100%);
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 4px;
  z-index: -1;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.7) 100%);
  border-radius: 3px;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 3px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.hero-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  z-index: 3;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-stats {
  position: absolute;
  top: 50%; left: -16px;
  transform: translateY(-50%);
  background: rgba(10,10,15,0.88);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  z-index: 3;
}
.hero-stats .stat-num {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .hero { gap: 2.5rem; padding: 7rem 5% 4rem; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5.5rem 6% 3rem;
    gap: 2rem;
    min-height: auto;
  }
  .hero::after { display: none; }
  .hero-media { order: -1; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-img-wrap { width: min(240px, 72%); margin-inline: auto; }
  .hero-stats {
    left: auto;
    right: -8px;
    top: 10px;
    transform: none;
    padding: 0.6rem 0.85rem;
  }
  .hero-stats .stat-num { font-size: 1.3rem; }
  .hero-badge { width: 64px; height: 64px; bottom: -10px; right: -10px; font-size: 0.5rem; }
}

/* ── Small phones ── */
@media (max-width: 420px) {
  .hero { padding: 5rem 5% 2.5rem; }
  .hero-heading { font-size: clamp(2.4rem, 13vw, 3rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.marquee-item::after {
  content: '✦';
  font-size: 0.75rem;
  color: var(--accent);
  font-style: normal;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   SECTION SHELL
═══════════════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 8vw, 7rem) 5%;
}
.section-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 50ch;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.skill-tag {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.skill-tag:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,169,110,0.06); }

.about-visual { position: relative; }
.about-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.about-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.about-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.about-meta-item .num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.about-meta-item .label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

@media (max-width: 900px) { .about-inner { gap: 3rem; } }
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════════════ */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.filter-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.2s;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,169,110,0.08);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 2px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
  cursor: none;
}
@media (hover: none) { .card { cursor: auto; } }

.card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s;
  filter: grayscale(30%) brightness(0.85);
}
.card:hover img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1);
}

/* Desktop: overlay appears on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
@media (hover: hover) {
  .card-overlay {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
  }
  .card:hover .card-overlay { opacity: 1; transform: translateY(0); }
}
/* Touch: overlay is always visible */
@media (hover: none) {
  .card-overlay {
    background: linear-gradient(to top, rgba(10,10,15,0.88) 0%, transparent 52%);
  }
  .card img { filter: grayscale(10%) brightness(0.9); }
}

.card-cat {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.card p {
  font-size: 0.82rem;
  color: rgba(232,230,225,0.65);
  font-weight: 300;
  line-height: 1.5;
}

.is-hidden { display: none !important; }

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .card { aspect-ratio: 16/10; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-direct { margin-top: 2.5rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.3s var(--ease-out-expo);
  min-height: 52px;
  word-break: break-all;
}
.contact-link:hover { color: var(--accent); padding-left: 0.5rem; }
.contact-link .cl-icon {
  font-size: 0.7rem;
  font-family: var(--ff-mono);
  letter-spacing: 0.05em;
  color: var(--accent);
  min-width: 2.5rem;
  flex-shrink: 0;
}
.social-row {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.social-btn {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.2s;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,169,110,0.06); }

.contact-form { display: grid; gap: 1.1rem; }
.form-field { display: grid; gap: 0.5rem; }
.form-field label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;        /* 1rem prevents iOS zoom-on-focus */
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(200,169,110,0.04);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); opacity: 0.6; }

#form-status {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

@media (max-width: 900px) { .contact-inner { gap: 3rem; } }
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-direct { margin-top: 1.75rem; }
  .contact-link { word-break: break-word; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--glass-border);
  padding: 1.75rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-footer p {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--muted);
}
.footer-logo span { color: var(--accent); }

@media (max-width: 480px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════════════════ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  position: relative;
  z-index: 2;
}