:root {
  --ink: #f4f6f7;
  --muted: #9aa5b3;
  --surface: #111722;
  --surface-high: #18202d;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff5038;
  --accent-bright: #ff745f;
  --sidebar: 318px;
  --radius: 26px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background-color: #080b11;
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) #0b0f16;
}

body {
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  color: var(--ink);
  background-color: #080b11;
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

.page-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 8%, rgba(45, 71, 100, .28), transparent 33rem),
    linear-gradient(145deg, #111419 0%, #080b11 48%, #0b111b 100%);
}

a { color: inherit; }
button { font: inherit; }
section { scroll-margin-top: 28px; }

.corner-lines {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: .44;
  will-change: transform;
}

.corner-lines--top {
  width: min(43vw, 620px);
  top: -58px;
  left: -86px;
  transform: translate3d(var(--corner-top-x, 0), var(--corner-top-y, 0), 0) scale(var(--corner-scale, 1));
  transform-origin: top left;
}
.corner-lines--bottom {
  width: min(58vw, 860px);
  right: -86px;
  bottom: -75px;
  transform: translate3d(var(--corner-bottom-x, 0), var(--corner-bottom-y, 0), 0) scale(var(--corner-scale, 1));
  transform-origin: bottom right;
}

.sidebar {
  position: fixed;
  z-index: 5;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  padding: 46px 38px 38px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(8, 11, 17, .72);
  backdrop-filter: blur(22px);
}

.brand { display: block; width: 216px; text-decoration: none; }
.brand__mark {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 620;
  color: var(--ink);
  background: currentColor;
  -webkit-mask: url("assets/logo.svg") center / contain no-repeat;
  mask: url("assets/logo.svg") center / contain no-repeat;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.brand:hover .brand__mark { color: var(--accent-bright); transform: translateY(-2px); }

.side-nav { margin-top: 40px; display: grid; }
.side-nav a {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .71rem;
  font-weight: 700;
  transition: color .25s ease, padding .25s ease;
}
.side-nav a:hover { color: var(--ink); padding-left: 7px; }
.side-nav span { color: var(--accent); }

.contact-card { margin-top: auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  line-height: 1.2;
  font-weight: 800;
}
.contact-card h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: .01em;
}
.contact-card a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 6px 0;
  color: var(--ink);
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  font-size: .91rem;
  word-break: break-word;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.contact-card a:hover { color: var(--accent-bright); text-decoration-color: currentColor; }
.contact-secret[aria-disabled="true"] {
  color: var(--muted);
  text-decoration: none;
  cursor: wait;
  opacity: .58;
}
.contact-secret.is-revealed { animation: contact-reveal .8s var(--ease) both; }
@keyframes contact-reveal {
  from { opacity: 0; filter: blur(7px); transform: translateY(3px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
.location { margin: 19px 0 0; color: var(--muted); font-size: .75rem; }

.mobile-bar { display: none; }

main { position: relative; z-index: 1; margin-left: var(--sidebar); }
.hero, .section-shell, .footer { width: min(1180px, calc(100% - 96px)); margin-inline: auto; }

.hero {
  min-height: 94vh;
  padding: 12vh 0 7vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero__copy { max-width: 900px; }
.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4rem, 8.2vw, 9rem);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: .84;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__intro {
  max-width: 560px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 800;
}
.scroll-cue i { width: 54px; height: 1px; background: var(--accent); transition: width .25s ease; }
.scroll-cue:hover i { width: 76px; }

.section-shell { padding: 100px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 390px);
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.055em;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: .9rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.gallery-status { grid-column: 1 / -1; padding: 50px; color: var(--muted); border: 1px solid var(--line); border-radius: var(--radius); }

.gallery-card {
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 24, 34, .82);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .13);
  cursor: pointer;
  transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
}
.gallery-card--feature { grid-column: span 12; }
.gallery-card--large { grid-column: span 6; }
.gallery-card--wide { grid-column: span 8; }
.gallery-card--small { grid-column: span 4; }
.gallery-card--compact { grid-column: span 3; }
.gallery-card:hover { transform: translateY(-7px); border-color: rgba(255, 116, 95, .5); background: var(--surface-high); }
.gallery-card:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 4px; }

.gallery-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0c1018;
}
.gallery-card--feature .gallery-card__media { aspect-ratio: 21 / 9; }
.gallery-card--large .gallery-card__media { aspect-ratio: 16 / 10; }
.gallery-card--wide .gallery-card__media { aspect-ratio: 16 / 9; }
.gallery-card__media img, .gallery-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s ease;
}
.media-thumbnail-fallback { width: 100%; height: 100%; display: grid; place-items: center; color: var(--accent-bright); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.gallery-card:hover .gallery-card__media img,
.gallery-card:hover .gallery-card__media video { transform: scale(1.035); filter: saturate(1.12); }
.gallery-card__type {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(5, 7, 10, .58);
  backdrop-filter: blur(12px);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .58rem;
  font-weight: 800;
}
.gallery-card__copy { padding: 21px 22px 24px; }
.gallery-card__meta { display: block; margin-bottom: 8px; color: var(--accent-bright); text-transform: uppercase; letter-spacing: .13em; font-size: .62rem; font-weight: 800; }
.gallery-card h3 { margin: 0 0 7px; font-size: 1.14rem; line-height: 1.2; }
.gallery-card p { margin: 0; overflow: hidden; color: var(--muted); font-size: .84rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.reel { padding-bottom: 100px; }
.showcase { padding-bottom: 150px; }
.reel-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: #05070a;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.reel-player iframe, .reel-player video { width: 100%; height: 100%; display: block; border: 0; object-fit: cover; }
.reel-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 30px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 80, 56, .17), transparent 30%),
    linear-gradient(145deg, #151c27, #080b10);
}
.reel-empty__play { margin: auto; width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--accent-bright); font-size: 1.4rem; }
.reel-empty h3 { margin: 0; font-size: clamp(1.35rem, 3vw, 2.1rem); }
.reel-empty p { max-width: 460px; margin: 0; color: var(--muted); font-size: .9rem; }

.footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .62rem;
}

.lightbox {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 78px 24px 24px;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 5, 8, .96);
  backdrop-filter: blur(20px);
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { visibility: visible; opacity: 1; }
body.lightbox-open { overflow: hidden; }
.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 8px 7px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.08);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
  font-weight: 800;
  cursor: pointer;
}
.lightbox__close span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #080b11; background: var(--ink); font-size: 1.25rem; line-height: 1; }
.lightbox__stage {
  grid-column: 2;
  position: relative;
  min-width: 0;
  min-height: 0;
  display: block;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  touch-action: none;
  cursor: zoom-in;
}
.lightbox__stage::-webkit-scrollbar { display: none; }
.lightbox__stage.is-zoomed { cursor: grab; }
.lightbox__stage.is-dragging { cursor: grabbing; user-select: none; }
.lightbox__image-canvas {
  display: grid;
  place-items: center;
  min-width: 100%;
  min-height: 100%;
}
.lightbox__stage img { display: block; border-radius: 8px; box-shadow: 0 18px 80px rgba(0,0,0,.48); }
.lightbox__stage video { display: block; max-width: 100%; max-height: 100%; border-radius: 8px; background: #000; }
.lightbox__related {
  grid-row: 1;
  z-index: 1;
  align-self: stretch;
  min-height: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
  overflow-y: auto;
  scrollbar-width: none;
}
.lightbox__related::-webkit-scrollbar { display: none; }
.lightbox__related--left { grid-column: 1; align-items: flex-start; }
.lightbox__related--right { grid-column: 3; align-items: flex-end; }
.lightbox__related-item {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: var(--ink);
  background: #111722;
  opacity: .48;
  cursor: pointer;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.lightbox__related-item:hover,
.lightbox__related-item:focus-visible { opacity: 1; border-color: var(--accent); transform: scale(1.05); outline: 0; }
.lightbox__related-item img,
.lightbox__related-item video { width: 100%; height: 100%; display: block; object-fit: cover; }
.lightbox__related-video { display: grid; place-items: center; height: 100%; color: var(--accent-bright); font-size: .54rem; font-weight: 800; letter-spacing: .1em; }
.lightbox__arrow {
  z-index: 2;
  align-self: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.04);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.lightbox__arrow:hover { color: var(--accent-bright); border-color: var(--accent); transform: scale(1.06); }
.lightbox__arrow:disabled { opacity: .18; cursor: default; transform: none; }
.lightbox__arrow--previous { grid-column: 1; grid-row: 1; justify-self: start; }
.lightbox__arrow--next { grid-column: 3; grid-row: 1; justify-self: end; }
.lightbox__caption { grid-column: 2; grid-row: 2; padding-top: 20px; }
.lightbox__caption > div { display: flex; gap: 15px; color: var(--accent-bright); text-transform: uppercase; letter-spacing: .14em; font-size: .61rem; font-weight: 800; }
.zoom-level { color: var(--muted); }
.lightbox__caption h2 { margin: 7px 0 2px; font-size: 1.2rem; }
.lightbox__caption p { max-width: 700px; margin: 0; color: var(--muted); font-size: .84rem; }

@media (max-width: 1120px) {
  :root { --sidebar: 270px; }
  .sidebar { padding-inline: 28px; }
  .brand { width: 186px; }
  .hero, .section-shell, .footer { width: min(100% - 60px, 920px); }
  .gallery-card--feature, .gallery-card--wide { grid-column: span 12; }
  .gallery-card--large, .gallery-card--small, .gallery-card--compact { grid-column: span 6; }
}

@media (max-width: 760px) {
  body { padding-top: 68px; }
  section { scroll-margin-top: 82px; }
  .sidebar { display: none; }
  .mobile-bar {
    position: fixed;
    z-index: 20;
    inset: 0 0 auto;
    height: 68px;
    padding: 9px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 11, 17, .88);
    backdrop-filter: blur(20px);
  }
  .mobile-brand { display: block; width: 79px; height: 49px; }
  .mobile-brand span { display: block; width: 100%; height: 100%; color: var(--ink); background: currentColor; -webkit-mask: url("assets/logo.svg") center/contain no-repeat; mask: url("assets/logo.svg") center/contain no-repeat; }
  .mobile-contact { display: flex; gap: 7px; }
  .mobile-contact a { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-size: .58rem; font-weight: 800; }
  .mobile-contact a:last-child { color: #080b11; border-color: var(--accent); background: var(--accent); }
  main { margin-left: 0; }
  .hero, .section-shell, .footer { width: calc(100% - 36px); }
  .hero { min-height: calc(85vh - 68px); padding-block: 70px 54px; }
  .hero h1 { font-size: clamp(3.55rem, 18vw, 6rem); }
  .hero__intro { margin-top: 28px; }
  .scroll-cue { margin-top: 42px; }
  .section-shell { padding: 70px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
  .section-heading > p { max-width: 440px; }
  .gallery { gap: 15px; }
  .gallery-card--feature, .gallery-card--large, .gallery-card--wide, .gallery-card--small, .gallery-card--compact { grid-column: 1 / -1; }
  .gallery-card__media,
  .gallery-card--feature .gallery-card__media,
  .gallery-card--large .gallery-card__media,
  .gallery-card--wide .gallery-card__media { aspect-ratio: 4 / 3; }
  .reel { padding-bottom: 70px; }
  .showcase { padding-bottom: 90px; }
  .reel-player { border-radius: 19px; }
  .footer { min-height: 90px; }
  .corner-lines--top { width: 500px; opacity: .27; }
  .corner-lines--bottom { width: 620px; opacity: .25; }
  .lightbox { grid-template-columns: 56px minmax(0, 1fr) 56px; padding: 70px 7px 15px; }
  .lightbox__arrow { width: 43px; height: 43px; }
  .lightbox__related { gap: 6px; padding-block: 4px; }
  .lightbox__related-item { width: 43px; border-radius: 9px; }
  .lightbox__caption { grid-column: 1 / -1; padding: 15px 12px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .corner-lines { transform: none !important; }
}
