/* ============================================================
   LIA VISUALS — style.css
   ============================================================ */

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

/* ── Fullpage scroll-snap ───────────────────────────────────── */
html {
  scroll-snap-type: y mandatory;
  overflow-x: hidden;
}

#hero, #section-ig, #section-catalog,
#section-services, #section-pricing, #section-contact {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ============================================================
   FULLSCREEN LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s ease;
}
#lightbox.hidden { opacity: 0; pointer-events: none; }

.lb-img-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 6rem;
}
#lb-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 0.25s ease;
  cursor: default;
}

.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease; z-index: 10;
}
.lb-close:hover { background: rgba(255,255,255,0.18); }

.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease; z-index: 10;
}
.lb-arrow:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.35);
}

:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --g100:    #f5f5f5;
  --g200:    #e8e8e8;
  --g400:    #999999;
  --g600:    #555555;
  --g800:    #222222;
  --font-d:  'Inter Tight', sans-serif;
  --font-b:  'Inter', sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:       0.4s var(--ease);
}

html { scroll-behavior: auto; }
body { font-family: var(--font-b); background: var(--white); color: var(--black); overflow-x: hidden; }
body.is-loading { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; }

/* ============================================================
   SECCIÓN LOGO (página 1)
   ============================================================ */
#section-logo {
  height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#logo-hero-img {
  width: clamp(120px, 18vw, 260px);
  height: auto;
  filter: invert(1) brightness(1.4);
  animation: logoFadeIn 1.4s ease both;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.logo-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ── iPhone reveal sobre negro ── */
#canvas-iphone-reveal {
  position: absolute;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  z-index: 800;
  transition: background var(--t), box-shadow var(--t);
}

#navbar.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: invert(1) brightness(1.4);
  transition: filter var(--t);
}
#navbar.is-scrolled .nav-logo-img { filter: none; }

.nav-logo-text {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--t);
}
.nav-logo-text span { opacity: 0.5; }
#navbar.is-scrolled .nav-logo-text { color: var(--black); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.8rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--t);
}
.nav-links a:hover { color: var(--white); }
#navbar.is-scrolled .nav-links a { color: var(--g600); }
#navbar.is-scrolled .nav-links a:hover { color: var(--black); }

.nav-cta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--t);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--g200); }
#navbar.is-scrolled .nav-cta { background: var(--black); color: var(--white); }
#navbar.is-scrolled .nav-cta:hover { background: var(--g800); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
#navbar.is-scrolled .hamburger span { background: var(--black); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  z-index: 790;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease), box-shadow var(--t);
}
#mobile-nav.is-open {
  max-height: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
#mobile-nav ul { list-style: none; padding: 1rem 2rem 2rem; }
#mobile-nav li { border-bottom: 1px solid var(--g200); }
#mobile-nav a {
  display: block;
  padding: 1.1rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

/* ============================================================
   SHARED SECTION LABELS
   ============================================================ */
.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--g600);
  max-width: 400px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--black);
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--white); transition: all var(--t);
}
.btn-white:hover { background: transparent; color: var(--white); }

.btn-ghost-white {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.6);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.2); transition: all var(--t);
}
.btn-ghost-white:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.btn-black {
  display: inline-flex; align-items: center;
  background: var(--black); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all var(--t);
}
.btn-black:hover { background: var(--g800); }

.btn-outline-black {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 0.9rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid var(--black); color: var(--black); background: transparent;
  transition: all var(--t);
}
.btn-outline-black:hover { background: var(--black); color: var(--white); }

.btn-white-solid {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 0.9rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; background: var(--white); color: var(--black); border: 1.5px solid var(--white);
  transition: all var(--t);
}
.btn-white-solid:hover { background: transparent; color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 120px clamp(1.5rem, 5vw, 5rem) 80px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  overflow: hidden;
}
.ht-line { display: block; overflow: hidden; }
.hero-title em {
  font-style: italic;
  font-size: 0.88em;
  color: rgba(255,255,255,0.5);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin-bottom: 2.8rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; align-items: center; justify-content: center; }

.showreel-box {
  width: clamp(240px, 32vw, 480px);
  aspect-ratio: 16/9;
  background: linear-gradient(140deg, #1c1c1c, #2e2e2e);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.2rem; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.showreel-box:hover { transform: scale(1.025); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.showreel-play {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--t);
}
.showreel-play svg { width: 22px; height: 22px; margin-left: 3px; }
.showreel-box:hover .showreel-play { border-color: rgba(255,255,255,0.6); color: var(--white); }
.showreel-label {
  font-size: 0.6rem; letter-spacing: 0.4em; color: rgba(255,255,255,0.25);
}

.hero-scroll {
  position: absolute; bottom: 3rem; left: clamp(1.5rem, 5vw, 5rem);
  display: flex; align-items: center; gap: 1rem;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); writing-mode: vertical-rl;
}
.scroll-line-anim {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.scroll-line-anim::after {
  content: ''; position: absolute; top: -100%; width: 100%; height: 100%;
  background: rgba(255,255,255,0.5);
  animation: scrollLineMove 2s ease-in-out infinite;
}
@keyframes scrollLineMove { to { top: 200%; } }

/* ============================================================
   CANVAS SHOWREEL + REELS SECTION
   ============================================================ */
#section-ig { position: relative; }

/* ── Reel wall — desktop: 5 en fila · móvil: scroll horizontal ── */
#section-ig {
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* ─ Desktop ───────────────────────────────────────────────── */
.reel-wall {
  display: flex;
  width: 100%;
  height: 100%;
}

.reel-slot {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* Iframe centrado a 9:16 llenando la altura, recorta lados */
.reel-slot iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 100vh × 9/16 = ancho exacto para llenar alto sin barras negras */
  width: 56.25vh;
  height: 100vh;
  /* Zoom extra para ocultar chrome de YouTube (botones, logos) */
  transform: translate(-50%, -50%) scale(1.08);
  border: none;
  pointer-events: none;
}

/* ─ Móvil: carrusel horizontal con snap ──────────────────── */
@media (max-width: 768px) {
  .reel-wall {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reel-wall::-webkit-scrollbar { display: none; }

  .reel-slot {
    flex: 0 0 100vw;      /* cada video ocupa la pantalla completa */
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .reel-slot iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;       /* sin zoom en móvil, video centrado natural */
    pointer-events: auto;  /* permite interactuar en móvil */
  }

  /* Puntos de navegación */
  .reel-dots-mobile {
    display: flex;
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.4rem;
    z-index: 20;
    pointer-events: none;
  }
  .reel-dot-m {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.2s, transform 0.2s;
  }
  .reel-dot-m.active {
    background: var(--white);
    transform: scale(1.4);
  }
}

/* Ocultar dots en desktop */
.reel-dots-mobile { display: none; }

.ig-handle-link {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 0.2rem;
  transition: opacity var(--t);
}
.ig-handle-link:hover { opacity: 0.5; }

/* Reels player fills the phone screen */
.reels-player {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.reels-player iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Fill portrait phone: scale landscape iframe to cover height */
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* Reels overlay UI */
.reels-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    transparent 22%,
    transparent 52%,
    rgba(0,0,0,0.72) 100%
  );
  pointer-events: none;
}

.reels-header {
  padding: 0.55rem 0.7rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.68rem; font-weight: 700; color: #fff;
}

.reels-actions {
  position: absolute;
  right: 0.5rem; bottom: 4.2rem;
  display: flex; flex-direction: column;
  gap: 1.1rem; align-items: center;
}

.reels-action {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.15rem;
  color: #fff; font-size: 0.5rem; font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.reels-bottom {
  padding: 0 0.65rem 0.65rem;
}

.reels-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border: 1.5px solid #fff;
  margin-bottom: 0.3rem;
}

.reels-username {
  font-size: 0.6rem; font-weight: 700;
  color: #fff; display: block;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.reels-caption {
  font-size: 0.54rem; color: rgba(255,255,255,0.85);
  margin: 0.12rem 0; line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.reels-music-bar {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.49rem; color: rgba(255,255,255,0.7);
  margin-top: 0.28rem;
}

/* Navigation dots */
.reels-dots {
  display: flex; gap: 0.45rem; justify-content: center;
}

.reels-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  display: inline-block;
}

.reels-dot.is-active {
  background: var(--white);
  transform: scale(1.4);
}

/* iPhone */
.iphone-col {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 640px;
}

.iphone-wrap { position: relative; z-index: 2; }

.iphone-body {
  width: 272px; height: 580px;
  background: linear-gradient(160deg, #2c2c2c, #181818);
  border-radius: 46px; position: relative;
  box-shadow:
    0 0 0 1px #3a3a3a,
    0 0 0 3px #151515,
    0 0 0 4px #444,
    0 35px 90px rgba(0,0,0,0.4),
    inset 0 1px 1px rgba(255,255,255,0.08);
}

/* side buttons */
.i-btn { position: absolute; background: #3a3a3a; border-radius: 2px; }
.i-btn.left { left: -3px; width: 3px; }
.i-btn.left.top  { top: 108px; height: 28px; }
.i-btn.left.mid  { top: 150px; height: 55px; }
.i-btn.left.bot  { top: 218px; height: 55px; }
.i-btn.right     { right: -3px; top: 148px; width: 3px; height: 75px; }

.iphone-screen-border {
  position: absolute;
  top: 10px; left: 8px; right: 8px; bottom: 10px;
  background: var(--white);
  border-radius: 38px;
  overflow: hidden;
}

.dynamic-island {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px;
  background: var(--black); border-radius: 14px; z-index: 10;
}

.iphone-screen { position: absolute; inset: 0; overflow: hidden; }

.iphone-home-bar {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 4px;
  background: rgba(255,255,255,0.25); border-radius: 2px;
}


/* ============================================================
   3D PHOTO CATALOG
   ============================================================ */
#section-catalog {
  padding: 130px clamp(1.5rem, 5vw, 5rem) 100px;
  background: var(--g100);
}

.catalog-header { margin-bottom: 4rem; }
.catalog-header h2 {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 6.5vw, 7.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}

.catalog-scene { perspective: 1100px; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.c-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease), box-shadow 0.4s ease;
  background: var(--white);
}
.c-card:hover {
  transform: translateY(-14px) scale(1.025) rotateX(3deg);
  box-shadow: 0 50px 100px rgba(0,0,0,0.2);
  z-index: 5;
}

.c-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.c-card:hover .c-card-img { transform: scale(1.04); }

.c-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: rgba(0,0,0,0.38); backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem; border-radius: 100px;
}

.c-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--t);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.c-card:hover .c-overlay { opacity: 1; }

.c-info { color: var(--white); }
.c-cat {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.65; display: block; margin-bottom: 0.3rem;
}
.c-title {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.catalog-hint {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--g400);
}

/* Project Overlay */
#proj-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: opacity 0.4s ease;
}
#proj-overlay.hidden { opacity: 0; pointer-events: none; }

.proj-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: none; border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.proj-close:hover { background: rgba(255,255,255,0.1); }

.proj-overlay-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
  max-width: 1200px; width: 100%; align-items: start;
}

/* Gallery column */
.proj-gallery-col { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }

.proj-main-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--g800);
}
.proj-main-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.proj-thumbs {
  display: flex; gap: 0.6rem; overflow-x: auto; scrollbar-width: none;
}
.proj-thumbs::-webkit-scrollbar { display: none; }

.proj-thumb {
  width: 72px; height: 54px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.5;
}
.proj-thumb img { width: 100%; height: 100%; object-fit: cover; }
.proj-thumb.is-active { border-color: var(--white); opacity: 1; }
.proj-thumb:hover { opacity: 0.85; }

.proj-info { color: var(--white); padding-top: 0.5rem; }
.proj-cat {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 1rem;
}
.proj-info h3 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.proj-info p {
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(255,255,255,0.55); margin-bottom: 2.5rem;
}
.proj-cta { display: inline-flex; }

/* ============================================================
   SERVICES
   ============================================================ */
#section-services {
  padding: 130px clamp(1.5rem, 5vw, 5rem) 100px;
  background: var(--black); color: var(--white);
}

.services-header .section-label { color: rgba(255,255,255,0.28); }
.services-header h2 {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 6.5vw, 7.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-top: 0.5rem; margin-bottom: 6rem;
}

.service-category { margin-bottom: 6rem; }
.service-category:last-child { margin-bottom: 0; }

.cat-title-row {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.cat-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.38);
  margin-top: 0.3rem; letter-spacing: 0.01em;
}
.cat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cat-icon svg { width: 24px; height: 24px; stroke: var(--white); }
.cat-title-row h3 {
  font-family: var(--font-d);
  font-size: 2.4rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.02em;
}

.sblocks {
  display: grid; gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden;
}
.video-grid { grid-template-columns: repeat(3, 1fr); }
.photo-grid { grid-template-columns: repeat(2, 1fr); }
.paid-grid  { grid-template-columns: repeat(3, 1fr); }

.sblock {
  background: var(--black); padding: 2.5rem 2.2rem;
  position: relative; overflow: hidden;
  transition: background var(--t);
}
.sblock:hover { background: #111; }
.sblock-num {
  display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.22); margin-bottom: 1.2rem;
}
.sblock h4 {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 0.8rem;
}
.sblock p { font-size: 0.84rem; line-height: 1.72; color: rgba(255,255,255,0.45); }

/* ============================================================
   PRICING
   ============================================================ */
#section-pricing {
  padding: 130px clamp(1.5rem, 5vw, 5rem) 100px;
  background: var(--g100);
}

.pricing-header { text-align: center; margin-bottom: 5rem; }
.pricing-header .section-label { justify-content: center; display: flex; }
.pricing-header h2 {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 6.5vw, 7.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}
.pricing-sub { font-size: 1rem; color: var(--g600); margin-top: 1rem; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}

.pricing-card {
  background: var(--white); border-radius: 22px; padding: 2.8rem 2.4rem;
  border: 1.5px solid var(--g200); position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}
.pricing-card.is-featured {
  background: var(--black); color: var(--white);
  border-color: var(--black); transform: scale(1.04);
}
.pricing-card.is-featured:hover { transform: scale(1.04) translateY(-10px); }

.pfeatured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--black);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.28rem 1rem; border-radius: 100px; white-space: nowrap;
}

.ptier {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.pprice { margin-bottom: 2rem; }
.pfrom {
  display: block; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 0.3rem;
}
.is-featured .pfrom { color: rgba(255,255,255,0.35); }
.pval { font-family: var(--font-d); font-size: 2rem; font-weight: 600; font-style: normal; letter-spacing: -0.02em; }

.pfeatures { list-style: none; margin-bottom: 2.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.pfeatures li {
  font-size: 0.86rem; color: var(--g600);
  padding-left: 1.5rem; position: relative;
}
.pfeatures li::before { content: '—'; position: absolute; left: 0; color: var(--g400); font-size: 0.75rem; }
.is-featured .pfeatures li { color: rgba(255,255,255,0.65); }
.is-featured .pfeatures li::before { color: rgba(255,255,255,0.28); }

.pricing-note { text-align: center; margin-top: 3rem; font-size: 0.9rem; color: var(--g600); }
.pricing-note a { color: var(--black); font-weight: 700; text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
#section-contact {
  padding: 130px clamp(1.5rem, 5vw, 5rem) 100px;
  background: var(--black); color: var(--white);
}

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 7rem;
  max-width: 1300px; margin: 0 auto; align-items: start;
}

.contact-left .section-label { color: rgba(255,255,255,0.28); }
.contact-left h2 {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-top: 0.5rem; margin-bottom: 1.5rem;
}
.contact-sub { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; }
.contact-details a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color var(--t);
}
.contact-details a:hover { color: var(--white); }

/* Form */
#contact-form { display: flex; flex-direction: column; gap: 1.6rem; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }

.fg { display: flex; flex-direction: column; gap: 0.55rem; }
.fg label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1rem 1.2rem;
  font-family: var(--font-b); font-size: 0.9rem; color: var(--white);
  outline: none; transition: border-color var(--t);
  -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(255,255,255,0.35); }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.fg select option { background: #1a1a1a; color: var(--white); }
.fg textarea { resize: vertical; min-height: 120px; }
.fg select:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--white); color: var(--black);
  padding: 1.1rem; border-radius: 100px; border: none;
  font-family: var(--font-b); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: all var(--t);
}
.btn-submit:hover { background: var(--g200); }
.btn-submit svg { stroke: var(--black); }

.form-note {
  font-size: 0.7rem; color: rgba(255,255,255,0.22); text-align: center; margin-top: -0.6rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
}
.footer-inner {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.75);
}
.footer-logo span { opacity: 0.45; }
.footer-tag { font-size: 0.7rem; color: rgba(255,255,255,0.22); letter-spacing: 0.15em; }
.footer-right { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.footer-right a {
  font-size: 0.78rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--t);
}
.footer-right a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.18); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .iphone-body { transform: scale(0.88); transform-origin: center center; }
  .reels-wrap { gap: 2.5rem; }
}

@media (max-width: 900px) {
  #hero { text-align: center; justify-content: center; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-scroll { display: none; }
  .eyebrow { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .reels-wrap { grid-template-columns: 1fr; text-align: center; }
  .reels-text-col .section-body { margin-left: auto; margin-right: auto; }
  .ig-handle-link { margin: 0 auto; }

  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: 1fr; }
  .paid-grid  { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-card.is-featured { transform: none; }
  .pricing-card.is-featured:hover { transform: translateY(-10px); }

  .contact-wrap { grid-template-columns: 1fr; gap: 3.5rem; }
  .fg-row { grid-template-columns: 1fr; }

  .proj-overlay-inner { grid-template-columns: 1fr; gap: 2rem; }
  .proj-main-img-wrap { aspect-ratio: 16/9; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .paid-grid  { grid-template-columns: 1fr; }
  #intro-lia { font-size: 22vw; }
  #intro-visuals { font-size: 11vw; }
  .iphone-body { transform: scale(0.78); transform-origin: center top; }
}
