@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap");

:root {
  --bg: #f3f2ee;
  --ink: #101010;
  --muted: #77746e;
  --line: rgba(16,16,16,.16);
  --pad: clamp(18px, 2.4vw, 42px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Be Vietnam Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: #101010; color: #fff; }

.page-loader {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .55s ease, visibility .55s ease;
}
.page-loader span { width: 44px; height: 1px; background: var(--ink); animation: loader 1s ease-in-out infinite; }
body.is-loaded .page-loader { opacity: 0; visibility: hidden; }
@keyframes loader { 50% { transform: scaleX(2.2); opacity: .35; } }

.site-header {
  position: fixed; z-index: 80; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 70px; padding: 0 var(--pad);
  mix-blend-mode: difference; color: white;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
}
.brand { justify-self: start; }
.brand sup { font-size: 7px; margin-left: 2px; }
.top-nav { display: flex; gap: clamp(18px, 3vw, 46px); }
.top-nav a, .language-toggle { opacity: .76; transition: opacity .2s ease; }
.top-nav a:hover, .language-toggle:hover { opacity: 1; }
.language-toggle { justify-self: end; border: 0; padding: 8px 0; background: transparent; cursor: pointer; font-weight: 700; }

.hero {
  min-height: 100svh; padding: 105px var(--pad) 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-kicker { font-size: 11px; letter-spacing: .1em; color: var(--muted); }
.hero-title {
  margin: auto 0; font-size: clamp(80px, 17vw, 285px); line-height: .75;
  letter-spacing: -.085em; font-weight: 800;
}
.hero-title span { display: block; margin-left: 16.5vw; font-weight: 300; font-style: italic; }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.hero-bottom p { margin: 0; max-width: 370px; font-size: clamp(14px, 1.2vw, 18px); line-height: 1.45; }
.scroll-link { font-size: 10px; letter-spacing: .12em; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

.work-section { padding: 46px var(--pad) 120px; max-width: 1760px; margin: 0 auto; }
.section-bar {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  padding: 0 0 20px; margin-bottom: 24px; border-bottom: 1px solid var(--line);
}
.section-bar h2 { margin: 0; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.section-bar{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;padding:0 0 20px;margin-bottom:24px;border-bottom:1px solid var(--line);}

.gallery {
  column-count: 4;
  column-gap: clamp(12px, 1.15vw, 18px);
}
.work-card {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 clamp(12px, 1.15vw, 18px);
  background: #deddd7;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.work-card.is-visible { opacity: 1; transform: translateY(0); }
.work-card.span-4,
.work-card.span-6,
.work-card.span-8,
.work-card.span-12 { width: 100%; }
.work-card.is-hidden { display: none; }
.work-card button { display: block; width: 100%; border: 0; padding: 0; background: none; cursor: zoom-in; text-align: left; }
.work-image-wrap { position: relative; overflow: hidden; background: #deddd7; }
.media-tag { position: absolute; z-index: 3; left: 12px; top: 12px; padding: 7px 10px; border-radius: 999px; background: rgba(0,0,0,.62); color: #fff; font-size: 10px; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.work-image-wrap::after { content: ""; position: absolute; inset: 0; background: #000; opacity: 0; transition: opacity .35s ease; }
.work-card img { display: block; width: 100%; height: auto; min-height: 180px; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.work-card.ratio-16-9 .work-image-wrap { aspect-ratio: 16 / 9; }
.work-card.ratio-16-9 img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.work-card:hover img { transform: scale(1.025); }
.work-card:hover .work-image-wrap::after { opacity: .12; }
.work-info {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; gap: 20px;
  padding: 18px; color: white;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.work-card:hover .work-info { opacity: 1; transform: translateY(0); }
.work-title { font-size: 13px; font-weight: 600; }
.work-meta { font-size: 10px; opacity: .72; letter-spacing: .08em; text-transform: uppercase; text-align: right; }

.about-section {
  display: grid; grid-template-columns: 1fr 3fr; gap: 30px;
  padding: 120px var(--pad) 160px; border-top: 1px solid var(--line);
}
.about-label { font-size: 11px; letter-spacing: .1em; }
.about-copy { max-width: 1100px; }
.about-lead { margin: 0 0 80px; font-size: clamp(36px, 5.7vw, 92px); line-height: .98; letter-spacing: -.055em; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.about-grid p { max-width: 540px; margin: 0; font-size: 16px; line-height: 1.65; color: #4f4d48; }
.about-note { margin: 18px 0 0; font-size: 13px; line-height: 1.6; color: #6a685f; }
.about-description { display: grid; gap: 24px; }
.about-description .experience-line {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.services { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 12px; letter-spacing: .08em; }
.services span { border-bottom: 1px solid var(--line); width: 100%; padding-bottom: 12px; }

.site-footer { background: #101010; color: #f4f3ef; padding: 95px var(--pad) 40px; }
.footer-title { font-size: clamp(52px, 12vw, 190px); line-height: .78; letter-spacing: -.07em; font-weight: 700; max-width: 1400px; }
.footer-bottom { margin-top: 88px; padding-top: 28px; border-top: 1px solid rgba(244,243,239,.14); }
.footer-contact { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.footer-email, .footer-phone, .footer-tiktok { color: #f4f3ef; text-decoration: none; opacity: 1; }
.footer-email { font-size: clamp(22px, 2.2vw, 34px); font-weight: 600; letter-spacing: -.02em; text-transform: none; }
.footer-phone { font-size: clamp(24px, 2.6vw, 38px); font-weight: 700; letter-spacing: -.03em; white-space: nowrap; }
.footer-tiktok { font-size: clamp(16px, 1.45vw, 22px); font-weight: 600; letter-spacing: -.015em; white-space: nowrap; }
.footer-email:hover, .footer-phone:hover, .footer-tiktok:hover { opacity: .82; }

.lightbox {
  width: 100vw; max-width: none; height: 100svh; max-height: none; margin: 0; padding: 0;
  border: 0; background: rgba(10,10,10,.96); color: white; overflow: hidden;
}
.lightbox::backdrop { background: transparent; }
.lightbox[open] { display: grid; place-items: center; }
.lightbox figure { margin: 0; width: min(88vw, 1500px); height: 88svh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox-image, .lightbox-video { max-width: 100%; max-height: calc(88svh - 66px); object-fit: contain; }
.lightbox-video { display: none; background: #000; }
.lightbox.is-video .lightbox-image { display: none; }
.lightbox.is-video .lightbox-video { display: block; }
.lightbox figcaption { width: 100%; display: grid; grid-template-columns: 60px 1fr auto; gap: 20px; padding-top: 16px; align-items: baseline; font-size: 12px; }
.lightbox-index, .lightbox-meta { opacity: .55; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.lightbox-close, .lightbox-arrow { position: fixed; z-index: 2; border: 0; background: transparent; color: white; cursor: pointer; }
.lightbox-close { top: 18px; right: 27px; font-size: 36px; font-weight: 200; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); font-size: 24px; opacity: .55; padding: 20px; }
.lightbox-arrow:hover { opacity: 1; }
.lightbox-arrow.prev { left: 7px; }
.lightbox-arrow.next { right: 7px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .top-nav { display: none; }
  .hero-title { font-size: clamp(74px, 20vw, 170px); }
  .hero-title span { margin-left: 4vw; }
  .gallery { column-count: 2; }
  .about-section { grid-template-columns: 1fr; }
  .about-lead { margin-bottom: 55px; }
}

@media (max-width: 620px) {
  .site-header { height: 58px; }
  .hero { min-height: 88svh; padding-top: 88px; }
  .hero-title { line-height: .82; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .section-bar { align-items: flex-start; flex-direction: column; }
  .gallery { column-count: 1; column-gap: 14px; }
  .work-card { margin-bottom: 14px; }
.work-info { opacity: 1; transform: none; padding: 14px; }
  .work-card img { min-height: 0; }
  .about-section { padding-top: 90px; padding-bottom: 110px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .site-footer { padding-top: 70px; }
  .footer-title { line-height: .87; }
  .footer-bottom { margin-top: 56px; padding-top: 20px; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-email { font-size: 22px; }
  .footer-phone { font-size: 28px; white-space: normal; }
  .footer-tiktok { font-size: 18px; white-space: normal; }
  .lightbox figure { width: 92vw; }
  .lightbox figcaption { grid-template-columns: 42px 1fr; }
  .lightbox-meta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  body::before, .hero::before, .hero::after, .about-section::after, .site-footer::before, .scroll-link::after { display: none !important; }
  .footer-title { color: #f4f3ef !important; background: none !important; -webkit-text-fill-color: currentColor; }
}


/* Artistic motion system */
body {
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .06;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.6) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 35%, rgba(16,16,16,.55) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 75%, rgba(16,16,16,.45) 0 1px, transparent 1px);
  background-size: 24px 24px, 29px 29px, 34px 34px;
  mix-blend-mode: soft-light;
  animation: grainShift 16s steps(8) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-.5%, .4%); }
  50% { transform: translate(.3%, -.6%); }
  75% { transform: translate(.45%, .35%); }
  100% { transform: translate(0,0); }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: 3px;
  pointer-events: none;
  background: rgba(16,16,16,.06);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #101010, #86817a 55%, #101010);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .12s linear;
}

.site-header {
  transition: transform .35s ease, background-color .35s ease, backdrop-filter .35s ease, height .35s ease;
}
body.is-scrolled .site-header {
  background: rgba(9,9,9,.22);
  backdrop-filter: blur(14px) saturate(120%);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --mx: 0;
  --my: 0;
  --scroll-shift: 0px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(22px);
  opacity: .4;
  pointer-events: none;
  z-index: -1;
}
.hero::before {
  width: 38vw;
  height: 38vw;
  min-width: 260px;
  min-height: 260px;
  left: -8vw;
  top: 16vh;
  background: radial-gradient(circle, rgba(168,161,149,.28) 0%, rgba(168,161,149,.08) 42%, transparent 72%);
  animation: floatOrbA 13s ease-in-out infinite alternate;
}
.hero::after {
  width: 30vw;
  height: 30vw;
  min-width: 220px;
  min-height: 220px;
  right: -6vw;
  bottom: 12vh;
  background: radial-gradient(circle, rgba(16,16,16,.11) 0%, rgba(16,16,16,.04) 40%, transparent 72%);
  animation: floatOrbB 16s ease-in-out infinite alternate;
}
@keyframes floatOrbA {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(5vw, -4vh, 0) scale(1.08); }
}
@keyframes floatOrbB {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-5vw, 3vh, 0) scale(1.12); }
}
.hero-kicker,
.hero-title,
.hero-bottom {
  will-change: transform;
}
.hero-kicker {
  transform: translate3d(calc(var(--mx) * 8px), calc(var(--my) * 8px), 0);
}
.hero-title {
  text-wrap: balance;
  transform: translate3d(calc(var(--mx) * 20px), calc(var(--my) * 14px - var(--scroll-shift) * .14), 0);
}
.hero-title span {
  transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * 10px), 0);
}
.hero-bottom {
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * 10px - var(--scroll-shift) * .08), 0);
}
.scroll-link {
  position: relative;
  overflow: hidden;
}
.scroll-link::after {
  content: "";
  position: absolute;
  left: -120%;
  bottom: -1px;
  width: 120%;
  height: 1px;
  background: var(--ink);
  animation: scrollLinkSweep 2.6s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes scrollLinkSweep {
  0%, 12% { transform: translateX(0); }
  45%, 100% { transform: translateX(200%); }
}

.work-card {
  transform: translateY(28px) perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: opacity .55s ease, transform .55s ease, box-shadow .45s ease, filter .45s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.work-card.is-visible { transform: translateY(0) perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.18) 50%, transparent 84%);
  transform: translateX(-120%);
}
.work-card:hover {
  filter: saturate(1.02);
  box-shadow: 0 26px 45px rgba(16,16,16,.12);
}
.work-card:hover::before {
  opacity: 1;
  animation: cardSweep 1.15s cubic-bezier(.2,.8,.2,1);
}
@keyframes cardSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}
.work-image-wrap::after {
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255,255,255,.12), rgba(0,0,0,.04) 40%, rgba(0,0,0,.14) 100%);
  opacity: .10;
}
.work-card:hover .work-image-wrap::after { opacity: .24; }
.work-info {
  backdrop-filter: blur(6px);
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}

.about-section,
.site-footer {
  position: relative;
  overflow: hidden;
}
.about-section::after,
.site-footer::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,16,16,.2), transparent);
  transform: translateX(-100%);
  animation: lineTravel 8s linear infinite;
}
.site-footer::before { background: linear-gradient(90deg, transparent, rgba(244,243,239,.25), transparent); }
@keyframes lineTravel { to { transform: translateX(100%); } }

.footer-title {
  color: transparent;
  background-image: linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,1), rgba(255,255,255,.78));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: footerShimmer 9s linear infinite;
}
@keyframes footerShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.footer-email,
.footer-phone,
.footer-tiktok {
  position: relative;
}
.footer-email::after,
.footer-phone::after,
.footer-tiktok::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.14em;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.footer-email:hover::after,
.footer-phone:hover::after,
.footer-tiktok:hover::after { transform: scaleX(1); }

.lightbox {
  opacity: 0;
  transition: opacity .28s ease;
}
.lightbox[open] { opacity: 1; }
.lightbox figure {
  transform: translateY(22px) scale(.985);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,.8,.2,1), opacity .35s ease;
}
.lightbox[open] figure {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px) scale(.985);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.8,.2,1), filter .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (hover: none) {
  .hero-kicker,
  .hero-title,
  .hero-title span,
  .hero-bottom,
  .work-card,
  .work-card.is-visible {
    transform: translateY(0) perspective(1200px) rotateX(0deg) rotateY(0deg) !important;
  }
  .work-card::before { display: none; }
}

/* Clear video-card affordance */
.video-play-button {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(10,10,10,.78);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), background-color .28s ease, border-color .28s ease;
}
.video-play-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding-left: 2px;
  border-radius: 50%;
  background: #fff;
  color: #101010;
  font-size: 10px;
}
.is-video-card:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(10,10,10,.92);
  border-color: rgba(255,255,255,.9);
}
.is-video-card .work-image-wrap::after { opacity: .16; }
.is-video-card:hover .work-image-wrap::after { opacity: .28; }

@media (max-width: 620px) {
  .video-play-button { padding: 10px 13px 10px 10px; font-size: 10px; }
  .video-play-icon { width: 27px; height: 27px; }
}

.lightbox-embed {
  display: none;
  width: min(88vw, 960px);
  height: min(82svh, 960px);
  border: 0;
  background: #000;
}
.lightbox.is-embed .lightbox-image,
.lightbox.is-embed .lightbox-video { display: none; }
.lightbox.is-embed .lightbox-embed { display: block; }
@media (max-width: 620px) {
  .lightbox-embed { width: 92vw; height: 72svh; }
}


/* Use Facebook's real video preview instead of a custom poster */
.video-card-preview {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
  pointer-events: none;
}
.has-live-video-thumb .work-image-wrap {
  aspect-ratio: 16 / 9;
  background: #111;
}
.has-live-video-thumb .video-play-button {
  z-index: 7;
}
.has-live-video-thumb .media-tag {
  z-index: 8;
}
.has-live-video-thumb .work-info {
  z-index: 6;
}
