:root {
  --cyan: #20c9e8;
  --black: #000000;
  --white: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Ctext x='18' y='26' text-anchor='middle' font-size='25'%3E%F0%9F%91%93%3C/text%3E%3C/svg%3E") 18 18, auto;
  text-rendering: geometricPrecision;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

@keyframes photoBounce {
  0%,
  100% {
    transform: translate3d(0, var(--photo-bounce-y, 0px), 0) scale(1);
  }

  50% {
    transform: translate3d(0, calc(var(--photo-bounce-y, 0px) - 5px), 0) scale(1.006);
  }
}

@keyframes scrollCueFloat {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }

  50% {
    transform: translate3d(-50%, -7px, 0);
  }
}

@keyframes scrollArrowPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translate3d(3px, 3px, 0);
  }
}

.feature-shot,
.hero-image,
.services-grid article > img,
.process-visual,
.lens-panel,
.photo-grid figure,
.whatsapp-visual {
  --photo-bounce-y: 0px;
  animation: photoBounce 4.8s ease-in-out infinite;
  will-change: transform;
}

.feature-shot:nth-child(2),
.services-grid article:nth-child(2n) > img,
.lens-panel:nth-of-type(2),
.photo-grid figure:nth-child(2),
.whatsapp-visual {
  animation-delay: -1.6s;
}

.services-grid article:nth-child(3n) > img,
.photo-grid figure:nth-child(3) {
  animation-delay: -3.2s;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid color-mix(in srgb, var(--cyan) 72%, var(--white));
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--white) 22%, transparent), color-mix(in srgb, var(--cyan) 18%, transparent)),
    color-mix(in srgb, var(--black) 48%, transparent);
  box-shadow: none;
  font-weight: 900;
  line-height: 1.05;
  pointer-events: auto;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible,
.secondary-cta:hover,
.secondary-cta:focus-visible {
  transform: translateY(-2px);
  border-color: var(--white);
}

.story {
  position: relative;
  min-height: 360svh;
  background: var(--black);
}

.story-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.media-shell,
.story-video {
  position: absolute;
  inset: 0;
}

.media-shell {
  z-index: -3;
  overflow: hidden;
  background: var(--black);
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1.12) brightness(1.06) saturate(1.04);
  transform: scale(var(--video-scale, 1.012));
  transition: filter 120ms linear;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  animation: scrollCueFloat 2.1s ease-in-out infinite;
}

.scroll-arrows {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.scroll-arrows span {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  animation: scrollArrowPulse 1.25s ease-in-out infinite;
}

.scroll-arrows span:nth-child(2) {
  animation-delay: 0.18s;
}

.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-cta {
  width: max-content;
  max-width: 100%;
  min-height: 58px;
  gap: 10px;
  padding: 0 22px;
  color: var(--black);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--white) 84%, transparent), color-mix(in srgb, var(--cyan) 22%, transparent)),
    var(--white);
}

.primary-cta img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.clients-section,
.services-section,
.process-section,
.lens-section,
.gallery-section,
.whatsapp-section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 78px);
}

.reveal {
  opacity: 1;
  transform: translateY(28px) scale(0.985);
  transition: transform 520ms ease;
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.reveal.is-exiting {
  transform: translateY(-14px) scale(0.995);
}

.clients-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  color: var(--black);
  background: var(--white);
}

.section-copy,
.service-copy,
.whatsapp-copy {
  max-width: 720px;
}

.section-copy h2,
.service-copy h2,
.whatsapp-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2.4rem, 6vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-copy p,
.service-copy p,
.whatsapp-copy p,
.services-grid p {
  margin: 22px 0 0;
  color: var(--black);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  font-weight: 650;
  line-height: 1.58;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.feature-shot,
.hero-image,
.whatsapp-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cyan);
  border-radius: 18px;
  background: var(--black);
  box-shadow: none;
}

.feature-shot {
  aspect-ratio: 16 / 8.4;
}

.feature-shot:not(.wide) {
  width: min(64%, 520px);
  justify-self: end;
  aspect-ratio: 4 / 3;
}

.feature-shot img,
.hero-image img,
.whatsapp-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  color: var(--white);
  background: var(--black);
}

.hero-image {
  min-height: 420px;
  aspect-ratio: 16 / 10;
}

.service-copy {
  align-self: center;
}

.service-copy h2,
.service-copy p {
  color: var(--white);
}

.services-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-grid article {
  min-height: 200px;
  overflow: hidden;
  padding: 0 0 24px;
  border: 1px solid var(--cyan);
  border-radius: 18px;
  color: var(--white);
  background: var(--black);
}

.services-grid article > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--cyan);
}

.services-grid h3 {
  margin: 24px 24px 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.services-grid p {
  margin-left: 24px;
  margin-right: 24px;
  color: var(--white);
}

.whatsapp-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  color: var(--black);
  background: var(--white);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  color: var(--black);
  background: var(--white);
}

.process-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cyan);
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: var(--white);
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--cyan);
  border-radius: 18px;
  background: var(--white);
}

.process-grid h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.08;
}

.process-grid p {
  margin: 14px 0 0;
  font-weight: 650;
  line-height: 1.55;
}

.lens-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1fr) minmax(240px, 0.9fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  color: var(--white);
  background: var(--black);
}

.lens-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.lens-copy p {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 650;
  line-height: 1.58;
}

.lens-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cyan);
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  background: var(--black);
}

.lens-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-section {
  color: var(--black);
  background: var(--white);
}

.gallery-copy {
  max-width: 840px;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.gallery-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 5.6vw, 6rem);
  line-height: 0.98;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 14px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cyan);
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  background: var(--white);
}

.photo-grid figure:nth-child(2),
.photo-grid figure:nth-child(4) {
  --photo-bounce-y: 34px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-icon {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px color-mix(in srgb, var(--cyan) 44%, transparent));
}

.whatsapp-copy .primary-cta {
  margin-top: 28px;
}

.whatsapp-visual {
  min-height: 420px;
  aspect-ratio: 16 / 9;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 78px);
  color: var(--black);
  background: var(--white);
  border-top: 1px solid var(--cyan);
}

.site-footer img {
  width: 180px;
}

.site-footer p {
  margin: 0;
  font-weight: 750;
}

.site-footer a {
  color: var(--black);
  font-weight: 950;
  overflow-wrap: anywhere;
}

@media (max-width: 940px) {
  .feature-shot,
  .hero-image,
  .services-grid article > img,
  .process-visual,
  .lens-panel,
  .photo-grid figure,
  .whatsapp-visual {
    animation-duration: 5.8s;
  }

  .story {
    min-height: 280svh;
    background: var(--white);
  }

  .story-stage {
    min-height: 620px;
  }

  .story-video {
    inset: auto 0 auto 0;
    top: 50%;
    width: 100vw;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: 50% 50%;
    filter: contrast(1.14) brightness(1.08) saturate(1.04);
    transform: translateY(-50%) scale(var(--video-scale, 1));
  }

  .media-shell {
    background: var(--white);
  }

  .scroll-cue {
    top: min(calc(50% + 28vw + 20px), calc(100svh - 76px));
    bottom: auto;
    font-size: 0.68rem;
  }

  .clients-section,
  .services-section,
  .process-section,
  .lens-section,
  .gallery-section,
  .whatsapp-section {
    grid-template-columns: 1fr;
  }

  .feature-shot:not(.wide) {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid figure:nth-child(2),
  .photo-grid figure:nth-child(4) {
    --photo-bounce-y: 0px;
  }

  .hero-image,
  .process-visual,
  .whatsapp-visual {
    min-height: 0;
  }
}

@media (max-width: 540px) {
  .story {
    min-height: 250svh;
  }

  .story-stage {
    min-height: 600px;
  }

  .primary-cta {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
  }

  .feature-shot,
  .hero-image,
  .process-visual,
  .lens-panel,
  .photo-grid figure,
  .whatsapp-visual {
    border-radius: 20px;
  }

  .services-grid article {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .story {
    min-height: auto;
  }

  .story-stage {
    position: relative;
    min-height: 720px;
  }

  .story-video {
    display: none;
  }

  .media-shell {
    background: var(--white);
  }

  .reveal,
  .reveal.is-visible,
  .reveal.is-exiting {
    opacity: 1;
    transform: none;
  }

  .feature-shot,
  .hero-image,
  .services-grid article > img,
  .process-visual,
  .lens-panel,
  .photo-grid figure,
  .whatsapp-visual {
    animation: none !important;
  }

  .scroll-cue,
  .scroll-arrows span {
    animation: none !important;
  }
}
