/* ==========================================================================
   Fallen Art Studio — Styles
   Mobile-first. Dark theme with teal/cyan accents.
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --bg: #0a0e1a;
  --bg-elev: #0f1624;
  --bg-elev-2: #151d30;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text: #e8ecf4;
  --text-dim: #9aa3b8;
  --text-faint: #5a6480;
  --accent: #00d4d4;
  --accent-bright: #2ff7f7;
  --accent-deep: #007a7a;
  --accent-glow: rgba(0, 212, 212, 0.25);
  --danger: #ff5470;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1320px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px -10px var(--accent-glow);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 0.3s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Ambient background glow — visible mainly on wide screens */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(0, 212, 212, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(0, 212, 212, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--accent-bright); }

/* ---- Utilities ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 14, 26, 0.92);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}
@media (min-width: 768px) {
  .nav { padding: 1.25rem 2rem; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.logo:hover { color: var(--text); }

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
}
.logo-text { display: none; }
@media (min-width: 640px) { .logo-text { display: inline; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

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

.nav-menu {
  list-style: none;
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.nav-menu.open { display: flex; }

.nav-menu a {
  position: relative;
  padding: 0.5rem 1rem;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--dur) var(--ease), left var(--dur) var(--ease);
}
.nav-menu a:hover::after { width: 100%; left: 0; }

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-cta:hover { background: var(--accent-bright); transform: translateY(-2px); }
.nav-cta::after { display: none; }

@media (min-width: 900px) {
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.02em;
    gap: 2rem;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--accent-bright);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 0 50px -5px var(--accent-glow);
}
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  transform: translateY(-2px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 9rem 0 6rem; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(0, 212, 212, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(0, 122, 122, 0.1), transparent 50%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/*
  Hero showcase image — ACTIVADO.
  La imagen se carga de /images/hero-feature.jpg
*/
.hero-showcase {
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 650px;
  aspect-ratio: 1;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  display: none;
}
.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: saturate(1.15);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  animation: fadeIn 1.2s var(--ease) 0.8s forwards;
  border: 1px solid var(--border);
}
@media (min-width: 900px) {
  .hero-showcase {
    display: block;
    opacity: 1;
    right: -8%;
  }
}
@media (min-width: 1200px) {
  .hero-showcase { right: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- Sections ---- */
.section {
  padding: 4rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .section { padding: 5.5rem 0; }
}

/* Subtle divider between sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 800px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.section-subtitle {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
}
.lead {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.about-text p:not(.lead) { color: var(--text-dim); }

.about-facts {
  display: grid;
  gap: 1.5rem;
}
.fact {
  padding: 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fact:hover { border-color: var(--accent); transform: translateY(-4px); }
.fact-icon {
  display: inline-block;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.fact h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.fact p { color: var(--text-dim); font-size: 0.95rem; }

/* ---- Services ---- */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.service-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.service-card:hover::before { transform: translateX(100%); }

.service-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.service-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-faint);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-price strong { color: var(--accent); font-weight: 500; }

/* ---- Process ---- */
.process-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.step {
  padding: 2rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.step:hover { border-color: var(--accent); background: var(--bg-elev-2); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-dim); font-size: 0.9rem; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  cursor: pointer;
  padding: 0;
  transition: transform var(--dur) var(--ease);
}
.gallery-item::after {
  content: '↗';
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  padding: 2rem;
  background: var(--bg-elev);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.testimonial p {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ---- FAQ ---- */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---- Order Form ---- */
.order-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.95rem 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elev-2);
}
.form-field textarea { resize: vertical; font-family: inherit; }
.form-field select { cursor: pointer; }

.form-payment-note {
  padding: 1rem 1.25rem;
  background: var(--bg-elev);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dim);
}
.form-payment-note strong { color: var(--accent); }

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
}

.form-status {
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.5em;
}
.form-status.success { color: var(--accent-bright); }
.form-status.error { color: var(--danger); }

/* ---- Contact ---- */
.contact-card {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-elev-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.contact-card > p { color: var(--text-dim); margin-bottom: 2rem; }
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .contact-links { flex-direction: row; gap: 2rem; } }

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  min-width: 240px;
}
.contact-link:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-value { color: var(--text); font-weight: 500; }

/* ---- Footer ---- */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}
.footer-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand strong { display: block; font-size: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-faint); font-family: var(--font-mono); }
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-meta {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
}
@media (min-width: 768px) { .footer-meta { text-align: right; } }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s var(--ease);
}
.lightbox.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-content {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
}
@media (min-width: 900px) {
  .lightbox-content { grid-template-columns: 1fr 320px; gap: 2rem; }
}

.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-info {
  padding: 1.5rem;
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  align-self: center;
}
.lightbox-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
}
.lightbox-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0.75rem 0 0.75rem;
}
.lightbox-info p { color: var(--text-dim); font-size: 0.95rem; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.5rem;
  transition: all var(--dur) var(--ease);
  z-index: 1001;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
