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

@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --orange: #ff3000;
  --orange-bright: #ff3000;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --black: #fffaf5;
  --black-2: #fff3ea;
  --black-3: #ffffff;
  --gray: #e8ddd3;
  --gray-light: #a89a8c;
  --white: #1a1410;
  --white-dim: rgba(26, 20, 16, 0.7);
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'SF Pro Display', 'Barlow', sans-serif;
  --nav-h: 70px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* ========== NAVBAR ========== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,107,0,0.15);
}
.nav-logo {
  display: flex; align-items: center;
  margin-right: auto;
}
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-logo .dot { color: var(--orange); }
.nav-links {
  list-style: none;
  display: flex; gap: 2.5rem;
}
.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--orange);
  transition: right 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  margin-left: 2.5rem;
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--orange-bright); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,250,245,0.97);
  backdrop-filter: blur(20px);
  padding: 2rem 5%;
  z-index: 999;
  border-bottom: 1px solid rgba(255,107,0,0.2);
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 1rem 0; border-bottom: 1px solid var(--gray); }
.mobile-link {
  color: var(--white); text-decoration: none;
  font-size: 1.5rem; font-family: var(--font-display); letter-spacing: 3px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,107,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-logo {
  position: absolute;
  width: clamp(380px, 48vw, 820px);
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.hero-content { z-index: 2; padding: 0 5%; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-highlight {
  font-family: 'SF Pro Display', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  font-style: normal;
  color: var(--orange);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.15;
  letter-spacing: 1px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; align-items: center; }
.btn-x {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(26,20,16,0.2);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-x svg { width: 16px; height: 16px; }
.btn-x:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--orange-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(26,20,16,0.2);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.btn-full { width: 100%; }
.contact-forms-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  max-width: 420px;
  margin: 1rem auto 0;
}

/* Hero marquee mural */
.hero-marquee {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.marquee-row {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
}
.marquee-row--left .marquee-track { animation: marqueeLeft 34s linear infinite; }
.marquee-row--right .marquee-track { animation: marqueeRight 34s linear infinite; }
.marquee-track img {
  width: clamp(300px, 30vw, 460px);
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 14px 34px rgba(26,20,16,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.marquee-track img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 48px rgba(255,107,0,0.25);
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ========== ABOUT ========== */
.about {
  padding: 8rem 5%;
  background: var(--black);
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-frame {
  position: relative;
  overflow: visible;
  aspect-ratio: 3/4;
  background: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-img-frame img {
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom;
  filter: none;
}
.about-img-frame::before { content: none; }
.about-badge {
  position: absolute; bottom: 1.5rem; right: -1.5rem;
  background: var(--orange);
  color: var(--black);
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 1px; 
  padding: 0.6rem 1.2rem;
  z-index: 2;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.about-deco-ring {
  position: absolute;
  width: 120px; height: 120px;
  border: 2px solid rgba(255,107,0,0.25);
  border-radius: 50%;
  bottom: -3rem; left: -3rem;
  z-index: -1;
}
.section-label {
  font-size: 0.78rem; letter-spacing: 4px; 
  color: var(--orange); font-weight: 600; margin-bottom: 1rem;
}
.section-title {
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95; letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.accent { color: var(--orange); }
.about-text p {
  color: var(--white-dim); line-height: 1.8; margin-bottom: 1rem;
}
.about-text strong { color: var(--orange); font-weight: 600; }
.skills-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem;
}
.skill-pill {
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange);
  font-size: 0.75rem; letter-spacing: 1.5px; 
  padding: 0.4rem 1rem;
  transition: background 0.3s, color 0.3s;
}
.skill-pill:hover { background: var(--orange); color: var(--black); }

/* ========== PROJECTS ========== */
.projects {
  padding: 8rem 0 6rem;
  background: var(--black-2);
  overflow: hidden;
}
.projects-header {
  text-align: center;
  padding: 0 5% 3rem;
}
.section-sub {
  color: var(--gray-light); font-size: 0.85rem;
  letter-spacing: 2px; margin-top: 0.75rem;
}

/* Project category filters */
.projects-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 5% 2.5rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1px;
  
  color: var(--gray-light);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: var(--orange);
  color: var(--white);
}
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  font-weight: 700;
}

/* Carousel */
.carousel-wrap {
  position: relative;
  display: flex; align-items: center;
  padding: 0 4%;
}
.carousel {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.thumb-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--black-3);
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.thumb-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,107,0,0.4);
  box-shadow: 0 20px 60px rgba(255,107,0,0.12);
}
.thumb-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.thumb-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s;
}
.thumb-card:hover .thumb-img-wrap img {
  transform: scale(1.06);
}

/* Placeholder card */
.thumb-card--placeholder { border: 1px dashed rgba(255,107,0,0.3); }
.placeholder-wrap {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/9;
  background: repeating-linear-gradient(
    45deg, rgba(255,107,0,0.03), rgba(255,107,0,0.03) 4px, transparent 4px, transparent 12px
  );
}
.placeholder-inner { text-align: center; color: rgba(255,107,0,0.5); }
.plus-icon { font-size: 3rem; display: block; line-height: 1; }
.placeholder-inner p { font-size: 0.8rem; letter-spacing: 3px; margin-top: 0.5rem; }

/* Carousel arrows */
.carousel-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  z-index: 10;
  border-radius: 0;
}
.carousel-arrow:hover { background: var(--orange); color: var(--black); transform: scale(1.1); }
.carousel-arrow:active { transform: scale(0.92); box-shadow: 0 0 0 rgba(255,48,0,0); }
.carousel-arrow.left { margin-right: 1rem; }
.carousel-arrow.right { margin-left: 1rem; }

/* Dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 6px; height: 6px;
  background: var(--gray);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  border-radius: 3px;
}
.carousel-dot.active { background: var(--orange); width: 24px; }

/* ========== PROCESS ========== */
.process {
  padding: 8rem 5%;
  background: var(--black);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-inner .section-label, .process-inner .section-title { text-align: center; }
.process-inner .section-title { margin-bottom: 4rem; }
.process-steps {
  display: flex; align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 200px;
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,107,0,0.18);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}
.process-step:hover .step-num { color: var(--orange); }
.process-step h3 {
  font-size: 1rem; letter-spacing: 2px;
  font-weight: 700; margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.7; }
.process-line {
  width: 1px; height: 80px; background: rgba(255,107,0,0.2);
  flex-shrink: 0; margin-top: 3rem; align-self: flex-start;
}

/* ========== FEEDBACK ========== */
.feedback {
  padding: 8rem 5%;
  background: var(--black);
  text-align: center;
}
.feedback-inner { max-width: 1100px; margin: 0 auto; }
.feedback-card {
  text-align: left;
  background: var(--black-2);
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 4px;
  padding: 1.8rem;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.feedback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.4);
  box-shadow: 0 16px 40px rgba(255,107,0,0.1);
}
.feedback-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 0.9rem;
}
.feedback-text {
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feedback-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.feedback-text.has-more {
  cursor: pointer;
  position: relative;
}
.feedback-text.has-more:not(.expanded) {
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}
.feedback-text.has-more::after {
  content: 'Click to read more';
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  -webkit-mask-image: none;
  mask-image: none;
}
.feedback-text.has-more.expanded::after { content: 'Click to collapse'; }
.feedback-author { display: flex; flex-direction: column; gap: 0.15rem; }
.feedback-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.feedback-role { font-size: 0.75rem; letter-spacing: 1px; color: var(--gray-light); }

.feedback-author--with-icon {
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
}
.feedback-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.feedback-author-text { display: flex; flex-direction: column; gap: 0.15rem; }

.feedback-track {
  cursor: grab;
  user-select: none;
}
.feedback-track.dragging { cursor: grabbing; }
.feedback-card--featured {
  flex: 0 0 calc(50% - 0.75rem);
  min-width: 280px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.feedback-card--featured .feedback-text {
  font-size: 0.95rem;
}
.feedback-carousel-wrap { margin: 3rem 0 1rem; }

/* ========== CONTACT ========== */
.contact {
  padding: 8rem 5%;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.contact-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.contact-sub {
  color: var(--white-dim); font-size: 1rem;
  margin-bottom: 3rem; margin-top: 1rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  padding: 2.5rem 5%;
  border-top: 1px solid rgba(26,20,16,0.08);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo img { height: 26px; width: auto; display: block; }
.footer-copy { font-size: 0.78rem; color: var(--gray-light); }
.footer-credit {
  font-size: 0.78rem; color: var(--gray-light);
}
.footer-credit strong { color: var(--orange); }

/* ========== SCROLL REVEAL ========== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.revealed { opacity: 1 !important; transform: translate(0) !important; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; }
  .thumb-card { flex: 0 0 calc(50% - 0.75rem); }
  .feedback-card--featured { flex: 0 0 100%; min-width: 0; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-line { width: 60px; height: 1px; margin: 0; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); min-height: auto; padding-bottom: 4rem; }
  .hero-bg-logo { width: 60vw; left: 50%; transform: translate(-50%, -50%); }
  .hero-marquee { gap: 0.7rem; }
  .marquee-track { gap: 0.7rem; }
  .marquee-track img { width: clamp(220px, 68vw, 320px); }
  .marquee-row--left .marquee-track, .marquee-row--right .marquee-track { animation-duration: 22s; }
  .about { padding: 5rem 5%; }
  .projects { padding: 5rem 0 4rem; }
  .thumb-card { flex: 0 0 calc(85vw); }
  .feedback-card--featured { flex: 0 0 calc(85vw); min-width: 0; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 1rem; }
  .contact { padding: 5rem 5%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .process { padding: 5rem 5%; }
  .feedback { padding: 5rem 5%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .section-title { font-size: clamp(2rem, 10vw, 3rem); }
}

/* ========== LIGHTBOX ========== */
.thumb-card:not(.thumb-card--placeholder) .thumb-img-wrap img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 6, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 4vh 4vw;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
}
@media (max-width: 768px) {
  .lightbox-close { top: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 1.5rem; }
}
