/* ============================================================
   UROŠ NIKOLIĆ FOTOGRAFIJA — Main Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---- Custom Properties ---- */
:root {
  --bg:           #0b0a08;
  --bg-2:         #141210;
  --bg-card:      #1c1915;
  --text:         #e8ddd0;
  --text-muted:   #a8a098;
  --accent:       #b08d5a;
  --accent-light: #d4b483;
  --accent-dark:  #8a6c40;
  --border:       #252220;
  --white:        #f5f0ea;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:     72px;
  --section-v: 110px;
  --gap:        10px;
  --radius:      2px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; color: inherit; font: inherit; }

/* ---- Page fade-in ---- */
body { animation: pageFade 0.55s var(--ease) both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p  { font-size: 1rem; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 3.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 3vw;
  background: rgba(11, 10, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t), border-color var(--t);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin: 0 auto;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__phone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  border: 1px solid var(--accent-dark);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.nav__phone:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.nav__phone svg { flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--t), opacity var(--t);
}

/* Mobile nav */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(11,10,8,0.98);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav__mobile-overlay.open { display: flex; }
.nav__mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color var(--t);
}
.nav__mobile-overlay a:hover,
.nav__mobile-overlay a.active { color: var(--accent-light); }
.nav__mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-light) !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  letter-spacing: 0.12em !important;
  border: 1px solid var(--accent-dark);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .nav__links    { display: none; }
  .nav__phone    { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 10, 8, 0.45) 0%,
    rgba(11, 10, 8, 0.62) 60%,
    rgba(11, 10, 8, 0.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  animation: heroFadeUp 1.1s 0.3s var(--ease) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero__subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 2.8rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.hero__title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.hero__cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 141, 90, 0.25);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: heroFadeUp 1.2s 0.9s var(--ease) both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: var(--section-v) 5vw;
}
.section--alt { background: var(--bg-2); }
.section--center { text-align: center; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews {
  padding: var(--section-v) 0;
  overflow: hidden;
}
.reviews .container {
  overflow: visible;
}

.reviews-track-wrap {
  overflow: hidden;
  padding: 0 5vw;
}
.reviews-track {
  display: flex;
  transition: transform 0.7s var(--ease);
  gap: 1.5rem;
}
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 0.8rem;
  left: 1.4rem;
}
.review-card__text {
  font-style: italic;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
}
.review-card__name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.review-card__stars {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.reviews-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.reviews-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(176,141,90,0.08);
}
.reviews-dots {
  display: flex;
  gap: 6px;
}
.reviews-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--t), width var(--t);
}
.reviews-dot.active {
  background: var(--accent);
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(85vw); }
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 calc(92vw); }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: calc(var(--section-v) * 0.9) 5vw;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  margin-bottom: 0.8rem;
}
.cta-section p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.4rem;
  font-size: 0.96rem;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 4px;
  transition: color var(--t), border-color var(--t);
}
.btn-phone:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============================================================
   ABOUT MINI (homepage preview)
   ============================================================ */
.about-mini__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-mini__photo img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(15%) brightness(0.92);
  transition: filter 0.5s var(--ease);
}
.about-mini__photo img:hover { filter: grayscale(0%) brightness(1); }

.about-mini__text p.lead {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-mini__text p.lead:last-of-type { margin-bottom: 2.2rem; }

.about-mini__text .about-stats {
  margin-top: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-outline svg { transition: transform var(--t); }
.btn-outline:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .about-mini__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-mini__photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .about-mini__text .about-stats { justify-content: center; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: var(--section-v) 5vw;
}
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), background var(--t);
}
.faq-item:hover,
.faq-item[open] {
  border-color: var(--accent-dark);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 1.8rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-light); }

.faq-answer {
  padding: 0 1.8rem 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  animation: faqFade 0.4s var(--ease);
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-item summary { font-size: 0.95rem; padding: 1.1rem 1.3rem; }
  .faq-answer { padding: 0 1.3rem 1.3rem; font-size: 0.9rem; }
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 58vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 5vw;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,10,8,0.95) 0%,
    rgba(11,10,8,0.78) 35%,
    rgba(11,10,8,0.5)  70%,
    rgba(11,10,8,0.35) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero__content h1 {
  font-style: italic;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.page-hero__content p  {
  color: var(--text);
  font-size: 0.98rem;
  max-width: 480px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 4rem 3vw 6rem;
}
.gallery {
  columns: 3 260px;
  column-gap: var(--gap);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--gap);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
  filter: brightness(0.92) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,10,8,0);
  transition: background 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item__overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  color: rgba(255,255,255,0.9);
}
.gallery-item:hover .gallery-item__overlay {
  background: rgba(11,10,8,0.28);
}
.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, 0.95);
}
.lightbox__img-wrap {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox__img.changing {
  opacity: 0;
  transform: scale(0.97);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20,18,16,0.7);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.3rem;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: scale(1.08);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; font-size: 1.1rem; }
.lightbox__prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover,
.lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background: rgba(11,10,8,0.6);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.about-photo {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.5s var(--ease);
}
.about-photo img:hover { filter: grayscale(0%) brightness(1); }
.about-photo-caption {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1rem;
  text-align: center;
}

.about-text h2 {
  margin-bottom: 0.5rem;
}
.about-text h2 + p.eyebrow { margin-bottom: 2rem; }
.about-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-quote {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding: 0.8rem 0 0.8rem 1.5rem;
  margin: 2.5rem 0;
}
.about-quote__cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.about-work h3 {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.about-work > p.eyebrow { margin-bottom: 2rem; }

.work-steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 1rem;
}
.work-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.work-step__num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 2px;
}
.work-step__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.work-step__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photo {
    position: static;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delay for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 5vw;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.footer__logo span { color: var(--accent); }

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--accent-light); }

.footer__right {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
}
.footer__right a {
  color: var(--accent);
  transition: color var(--t);
}
.footer__right a:hover { color: var(--accent-light); }
.footer__credit {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.footer__credit a {
  color: var(--accent) !important;
  border-bottom: 1px dotted var(--accent-dark);
  padding-bottom: 1px;
}
.footer__credit a:hover {
  color: var(--accent-light) !important;
  border-bottom-color: var(--accent-light);
}

@media (max-width: 700px) {
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .footer__right { text-align: center; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-nav { margin-top: var(--nav-h); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* Selection */
::selection { background: var(--accent); color: var(--bg); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --section-v: 70px;
    --nav-h: 62px;
  }
  .hero__title   { font-size: 2.4rem; }
  .gallery       { columns: 2; }
  .about-stats   { gap: 1.5rem; }
}
