/* ============================================================
   Joos Media — Luxury Real Estate Media
   Design system: editorial, cinematic, dark with warm gold.
   ============================================================ */

:root {
  --bg:        #0d0d0f;
  --bg-2:      #131316;
  --bg-3:      #1a1a1e;
  --ink:       #f3efe9;
  --ink-soft:  #b4afa6;
  --ink-dim:   #7c776e;
  --line:      rgba(243, 239, 233, 0.12);
  --gold:      #c9a96a;
  --gold-soft: #e0c690;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1340px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--gold); color: #0d0d0f; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .eyebrow { display: block; margin-bottom: 1rem; }

/* ---------- grain + progress ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 9999; transition: width 0.1s linear;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; padding: 1.05em 2em; border-radius: 999px;
  transition: all 0.4s var(--ease); white-space: nowrap;
}
.btn--solid { background: var(--gold); color: #0d0d0f; }
.btn--solid:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--line { border: 1px solid var(--line); color: var(--ink); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost { padding: 0.7em 1.4em; border: 1px solid var(--line); font-size: 0.7rem; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 15, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__logo img { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.8rem; letter-spacing: 0.08em; color: var(--ink-soft);
  position: relative; padding: 0.3rem 0; transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1.4rem; }
.lang { display: flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; letter-spacing: 0.1em; }
.lang__btn { color: var(--ink-dim); transition: color 0.3s; }
.lang__btn.is-active { color: var(--ink); }
.lang__btn:hover { color: var(--gold); }
.lang__sep { color: var(--ink-dim); }

.nav__burger { display: none; width: 30px; height: 18px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; height: 1.5px; width: 100%; background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav__burger span:nth-child(1) { top: 2px; }
.nav__burger span:nth-child(2) { bottom: 2px; }
.nav__burger.is-open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { bottom: 8px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.6rem; opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.mobile-menu nav a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.mobile-menu__mail { margin-top: 1.5rem; color: var(--gold); letter-spacing: 0.05em; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.35) 40%, rgba(13,13,15,0.92) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(13,13,15,0.95), transparent 65%);
}
.hero__content {
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 12vh, 9rem);
}
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.9rem, 8.5vw, 7rem); line-height: 0.98; letter-spacing: -0.015em;
  margin: 1.2rem 0; max-width: 16ch;
  text-shadow: 0 2px 24px rgba(13,13,15,0.6);
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { max-width: 46ch; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; right: var(--pad);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-soft);
}
.hero__scroll i { display: block; width: 1px; height: 48px; background: var(--ink-soft); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60%,100% { top: 100%; } }

/* ============================================================
   CLIENTS / MARQUEE
   ============================================================ */
.clients { padding: clamp(3.5rem, 7vw, 6rem) 0; border-bottom: 1px solid var(--line); }
.clients__label {
  text-align: center; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 2.8rem; padding: 0 var(--pad);
}
.clients__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: clamp(0.7rem, 1.4vw, 1.1rem); max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
}
.logo-card {
  background: #fff; border-radius: 12px;
  padding: 0.9rem 1.4rem;
  width: clamp(150px, 15vw, 188px); height: 96px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.logo-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35); }
.logo-card img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; }
.logo-card--dark { background: var(--bg-3); border: 1px solid var(--line); }

/* ============================================================
   INTRO / STATS
   ============================================================ */
.intro { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 12vw, 9rem) var(--pad); }
.intro__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: end; }
.intro__lead { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.22; font-weight: 400; letter-spacing: -0.01em; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem 1.5rem; }
.stat { border-top: 1px solid var(--line); padding-top: 1rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 3.2rem); color: var(--gold); line-height: 1; }
.stat__plus { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.stat p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.5rem; letter-spacing: 0.02em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.service {
  display: grid; grid-template-columns: 90px 1fr 220px; align-items: baseline; gap: 2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-top: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease);
}
.services .service:last-child { border-bottom: 1px solid var(--line); }
.service:hover { padding-left: 1rem; }
.service__no { font-family: var(--serif); font-size: 1.4rem; color: var(--ink-dim); }
.service__body h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.6rem; transition: color 0.3s; }
.service:hover .service__body h3 { color: var(--gold); }
.service__body p { color: var(--ink-soft); max-width: 52ch; font-size: 0.98rem; }
.service__tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); text-align: right; }

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.work .sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; }

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px; gap: 14px; grid-auto-flow: dense;
}
.g-item {
  position: relative; overflow: hidden; border-radius: 6px; background: var(--bg-2);
  cursor: pointer; transition: transform 0.4s var(--ease), opacity 0.4s;
}
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,13,15,0.75));
  opacity: 0; transition: opacity 0.4s;
}
.g-item:hover::after { opacity: 1; }
.g-item figcaption {
  position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease);
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   STAGING / BEFORE-AFTER
   ============================================================ */
/* ── Video reel ── */
.videos { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.vid-card {
  position: relative; display: block; border-radius: 10px; overflow: hidden;
  aspect-ratio: 16 / 9; background: var(--bg-3);
}
.vid-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.vid-card:hover img { transform: scale(1.04); }
.vid-card__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(13,13,15,0.35); transition: background 0.3s;
}
.vid-card:hover .vid-card__play { background: rgba(13,13,15,0.2); }
.vid-card__play span {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(13,13,15,0.7); border: 2px solid rgba(255,255,255,0.8);
  display: grid; place-items: center; transition: transform 0.3s, background 0.3s;
}
.vid-card:hover .vid-card__play span { transform: scale(1.1); background: var(--gold); border-color: var(--gold); }
.vid-card__play span::after {
  content: ""; display: block;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 3px;
}
.vid-card:hover .vid-card__play span::after { border-left-color: #0d0d0f; }
@media (max-width: 640px) {
  .videos__grid { grid-template-columns: 1fr; }
}

/* ── Reels (Instagram / TikTok style) ── */
.reels { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.reels__track {
  display: flex; gap: 1.25rem; margin-top: 3rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  justify-content: safe center;
  padding-bottom: 1rem;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
  -webkit-overflow-scrolling: touch;
}
.reels__track::-webkit-scrollbar { height: 6px; }
.reels__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.reel-card {
  position: relative; flex: 0 0 auto; width: min(300px, 78vw);
  aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden;
  background: var(--bg-3); border: 1px solid var(--line);
  scroll-snap-align: center; cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.reel-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.reel-card__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-card__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(13,13,15,0.25); opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.reel-card.is-paused .reel-card__play { opacity: 1; }
.reel-card__play span {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(13,13,15,0.6); border: 2px solid rgba(255,255,255,0.85);
  display: grid; place-items: center;
}
.reel-card__play span::after {
  content: ""; width: 0; height: 0;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  border-left: 18px solid #fff; margin-left: 4px;
}
.reel-card__sound {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(13,13,15,0.55); border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; cursor: pointer; color: #fff;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  backdrop-filter: blur(4px);
}
.reel-card__sound:hover { background: var(--gold); border-color: var(--gold); color: #0d0d0f; }
.reel-card__sound .ic-unmute { display: none; }
.reel-card.is-unmuted .reel-card__sound .ic-mute { display: none; }
.reel-card.is-unmuted .reel-card__sound .ic-unmute { display: block; }

/* ── Staging ── */
.staging { background: var(--bg-2); border-block: 1px solid var(--line); }
.staging__grid {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) var(--pad);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.staging__text .eyebrow { display: block; margin-bottom: 1rem; }
.staging__p { color: var(--ink-soft); margin: 1.3rem 0 2rem; max-width: 42ch; }

.ba {
  position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 8px;
  user-select: none; cursor: ew-resize; touch-action: none; background: var(--bg-3);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.ba__before .ba__img { width: 100%; }
.ba__handle {
  position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: var(--ink);
  transform: translateX(-50%); pointer-events: none;
}
.ba__handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #0d0d0f;
  display: grid; place-items: center; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.ba__handle span::before { content: "⟷"; font-size: 1.1rem; }
.ba__tag {
  position: absolute; bottom: 1rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(13,13,15,0.6); backdrop-filter: blur(6px); padding: 0.4em 0.9em; border-radius: 999px; pointer-events: none;
}
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; color: var(--gold); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 9rem) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.about__media { border-radius: 8px; overflow: hidden; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__text .eyebrow { display: block; margin-bottom: 1rem; }
.about__text .sec-title { margin-bottom: 1.5rem; }
.about__text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 52ch; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold); margin-top: 1.5rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 8rem) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 6rem);
}
.contact__left .eyebrow { display: block; margin-bottom: 1.2rem; }
.contact__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.01em; }
.contact__p { color: var(--ink-soft); margin: 1.4rem 0 2.5rem; max-width: 40ch; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.contact__details li { display: flex; flex-direction: column; gap: 0.25rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.contact__k { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.contact__details a:hover { color: var(--gold); }
.contact__social { display: flex; gap: 1.2rem; }

.contact__map { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) var(--pad) 0; }
.contact__map-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.contact__map-link { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--gold); transition: opacity 0.3s; }
.contact__map-link:hover { opacity: 0.7; }
.contact__map iframe {
  width: 100%; height: clamp(300px, 42vw, 460px); border: 0; border-radius: 10px; display: block;
  filter: grayscale(0.35) contrast(1.02);
}

.contact__form { display: flex; flex-direction: column; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); }
.field input, .field textarea {
  background: transparent; border: 1px solid var(--line); border-radius: 6px;
  padding: 0.9em 1em; color: var(--ink); font-family: inherit; font-size: 0.95rem; font-weight: 300;
  transition: border-color 0.3s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) var(--pad) 2.5rem; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line);
}
.footer__brand img { height: 38px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__tag { color: var(--ink-dim); font-size: 0.85rem; letter-spacing: 0.05em; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; margin-top: 2rem; font-size: 0.8rem; color: var(--ink-dim);
}
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a:hover { color: var(--gold); }
.footer__credit {
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  text-align: center; font-size: 0.75rem; color: var(--ink-dim);
}
.footer__credit a { color: var(--ink-dim); text-decoration: underline; text-underline-offset: 2px; }
.footer__credit a:hover { color: var(--gold); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 10000; background: rgba(8,8,10,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
  backdrop-filter: blur(6px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox__close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.4rem; color: var(--ink); line-height: 1; opacity: 0.8; transition: opacity 0.3s; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: var(--ink); opacity: 0.6; padding: 1rem; transition: opacity 0.3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .intro__grid, .staging__grid, .about, .contact__inner { grid-template-columns: 1fr; }
  .about__media { order: 2; max-width: 480px; }
  .service { grid-template-columns: 60px 1fr; }
  .service__tag { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-item--wide { grid-column: span 2; }
  .hero__scroll { display: none; }
  .contact__details { gap: 1rem; }
}
