:root {
  color-scheme: dark;
  --bg: #050506;
  --ink: #0d0d10;
  --panel: #121216;
  --text: #f6f0e8;
  --muted: rgba(246, 240, 232, 0.68);
  --soft: rgba(246, 240, 232, 0.1);
  --line: rgba(246, 240, 232, 0.18);
  --gold: #d5ad69;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: var(--gold);
  color: var(--bg);
}

a {
  color: inherit;
}

button {
  cursor: pointer;
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.07;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 46px 46px;
  mix-blend-mode: overlay;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-raised {
  background: rgba(5, 5, 6, 0.72);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(246, 240, 232, 0.34);
  border-radius: 50%;
  background: rgba(5, 5, 6, 0.32);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  backdrop-filter: blur(16px);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.8vw, 14px);
  color: rgba(246, 240, 232, 0.78);
  font-size: clamp(0.68rem, 2.8vw, 0.78rem);
  font-weight: 850;
  text-transform: uppercase;
}

.topbar nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to right, rgba(5, 5, 6, 0.8), rgba(5, 5, 6, 0.28) 56%, rgba(5, 5, 6, 0.46)),
    linear-gradient(to top, rgba(5, 5, 6, 0.82), transparent 56%, rgba(5, 5, 6, 0.34));
}

.hero-content {
  width: min(100%, 900px);
  padding: 112px 18px 78px;
}

.hero-lockup {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 0;
}

.hero-lockup::before {
  display: none;
}

.hero-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  max-width: 39rem;
}

.hero-lockup span {
  width: min(100%, 38rem);
  border-top: 1px solid rgba(246, 240, 232, 0.42);
  padding-top: 12px;
  color: rgba(246, 240, 232, 0.72);
  font-size: clamp(0.78rem, 3.1vw, 0.96rem);
  font-weight: 850;
  line-height: 1.42;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 20vw, 8.6rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 11vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: clamp(1.4rem, 7vw, 2.7rem);
  line-height: 1;
}

p {
  line-height: 1.58;
}

.hero-content p:not(.eyebrow) {
  max-width: 39rem;
  margin: 2px 0 0;
  color: rgba(246, 240, 232, 0.84);
  font-size: clamp(1.06rem, 4.8vw, 1.45rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: var(--text);
  color: #09090a;
}

.button.secondary {
  border-color: rgba(246, 240, 232, 0.34);
  background: rgba(246, 240, 232, 0.08);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.button.dark {
  border-color: rgba(5, 5, 6, 0.2);
  background: rgba(5, 5, 6, 0.08);
  color: #111;
}

.sound-button,
.audio-toggle {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(246, 240, 232, 0.32);
  border-radius: 50%;
  padding: 0;
  place-items: center;
  background: rgba(246, 240, 232, 0.08);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.audio-toggle {
  width: 48px;
  min-width: 0;
  padding: 0;
  border-radius: 50%;
}

.icon-volume {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-arrow {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.icon-volume-on {
  display: none;
}

.sound-button[aria-pressed="true"] .icon-volume-off,
.audio-toggle[aria-pressed="true"] .icon-volume-off {
  display: none;
}

.sound-button[aria-pressed="true"] .icon-volume-on,
.audio-toggle[aria-pressed="true"] .icon-volume-on {
  display: block;
}

.scroll-cue {
  position: absolute;
  right: 18px;
  bottom: 26px;
  width: 18px;
  height: 46px;
  border: 1px solid rgba(246, 240, 232, 0.46);
  border-radius: 999px;
}

.scroll-cue::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: rgba(246, 240, 232, 0.78);
  transform: translateX(-50%);
}

.section {
  padding: 72px 18px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
}

.work-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(213, 173, 105, 0.12), transparent 26rem),
    var(--bg);
}

.work-grid {
  display: grid;
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.work-card::after {
  display: none;
}

.work-media {
  position: relative;
  display: grid;
  gap: 1px;
  background: #000;
}

.swipe-button {
  position: absolute;
  right: 16px;
  bottom: 92px;
  z-index: 4;
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 240, 232, 0.32);
  border-radius: 50%;
  place-items: center;
  background: rgba(5, 5, 6, 0.6);
  color: var(--text);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.media-video {
  position: relative;
  width: 100%;
  min-width: 0;
}

.work-media img,
.work-media video,
.media-video {
  height: min(72svh, 760px);
  min-height: 430px;
}

.work-media img,
.work-media video {
  width: 100%;
  object-fit: cover;
}

.media-video video {
  height: 100%;
  min-height: 0;
}

.media-video.is-landscape video {
  object-fit: contain;
  background: #000;
}

.work-media.count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-media.count-3,
.work-media.count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-media.count-3 :first-child {
  grid-row: span 2;
}

.work-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 52px 18px 18px;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.84), rgba(5, 5, 6, 0));
}

.work-copy h3 {
  max-width: 15rem;
  font-size: clamp(1.45rem, 8vw, 2.4rem);
}

.work-copy p {
  margin: 0;
  color: var(--muted);
}

.reel-heading {
  display: grid;
  gap: 14px;
  padding: 0 18px 32px;
  background: var(--bg);
}

.reel-section {
  display: grid;
  gap: 14px;
  padding-top: 72px;
  background: #000;
}

.reel-card {
  position: relative;
  min-height: 0;
  height: 92svh;
  overflow: hidden;
  border-top: 1px solid rgba(246, 240, 232, 0.22);
  border-bottom: 1px solid rgba(246, 240, 232, 0.12);
  background: #000;
}

.reel-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  z-index: 2;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(246, 240, 232, 0.34), transparent);
}

.reel-card video {
  height: 100%;
  object-fit: cover;
}

.reel-card.is-landscape {
  min-height: auto;
  aspect-ratio: 16 / 9;
  align-self: center;
}

.reel-card.is-landscape video {
  height: 100%;
  object-fit: contain;
  background: #000;
}

.audio-toggle {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 6;
}

.media-video .audio-toggle {
  right: 12px;
  bottom: 12px;
  z-index: 6;
}

.about-section {
  display: grid;
  gap: 28px;
  padding: 84px 18px;
  background:
    linear-gradient(180deg, #070708, #111113),
    radial-gradient(circle at 18% 18%, rgba(213, 173, 105, 0.13), transparent 22rem);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
  color: rgba(246, 240, 232, 0.74);
  font-size: clamp(1.06rem, 4.8vw, 1.36rem);
}

.drone-feature {
  display: grid;
  background: #e7e0d5;
  color: #10100e;
}

.drone-feature img {
  min-height: 54svh;
  object-fit: cover;
}

.drone-feature div {
  display: grid;
  gap: 12px;
  padding: 44px 18px;
}

.drone-feature .eyebrow {
  color: #72552a;
}

.drone-feature p:not(.eyebrow) {
  margin: 0;
  color: rgba(16, 16, 14, 0.68);
}

.clients-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(213, 173, 105, 0.14), transparent 24rem),
    #080809;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.client-card {
  display: grid;
  min-height: 154px;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(246, 240, 232, 0.14);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(246, 240, 232, 0.08), rgba(246, 240, 232, 0.02)),
    #111113;
  text-decoration: none;
}

.client-mark {
  display: grid;
  min-height: 72px;
  place-items: center;
}

.client-card img {
  width: min(100%, 136px);
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.02);
}

.client-name {
  border-top: 1px solid rgba(246, 240, 232, 0.12);
  padding-top: 12px;
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.contact {
  display: grid;
  gap: 24px;
  padding: 74px 18px;
  background: linear-gradient(135deg, #d8b46e, #f3ece0 58%, #b9c7bb);
  color: #11100e;
}

.contact .eyebrow {
  color: rgba(17, 16, 14, 0.66);
}

.contact p {
  max-width: 38rem;
  color: rgba(17, 16, 14, 0.68);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 18px;
  color: var(--muted);
  background: #050506;
}

footer a {
  text-decoration: none;
}

@media (max-width: 520px) {
  .topbar {
    align-items: flex-start;
    padding: 16px 18px;
  }

  .topbar nav {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 45;
    width: 366px;
    max-width: calc(100vw - 24px);
    display: flex;
    gap: 0;
    border: 1px solid rgba(246, 240, 232, 0.2);
    border-radius: 999px;
    overflow: hidden;
    padding: 6px;
    background: rgba(5, 5, 6, 0.78);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
    transform: none;
    backdrop-filter: blur(18px);
  }

  .topbar nav a {
    display: grid;
    flex: 1 1 0;
    min-width: 0;
    min-height: 38px;
    place-items: center;
    border-radius: 999px;
    color: rgba(246, 240, 232, 0.84);
    font-size: 0.62rem;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
  }

  .topbar nav a[href="#contact"] {
    display: none;
  }

  .brand {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    padding: 108px 18px 104px;
  }

  .hero-footer {
    flex-wrap: nowrap;
    align-items: end;
    gap: 10px;
  }

  h1 {
    max-width: 22rem;
    font-size: clamp(3.8rem, 17vw, 4.65rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 0.96;
  }

  h3 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-lockup span {
    width: 100%;
    max-width: 21rem;
    font-size: 0.72rem;
  }

  .hero-actions {
    flex: 0 1 auto;
    gap: 8px;
    min-width: 0;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .sound-button,
  .audio-toggle {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .about-section,
  .contact {
    padding: 64px 18px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .work-grid {
    gap: 22px;
  }

  .work-card {
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .swipe-button {
    display: grid;
    animation: swipeButtonCue 1600ms ease-in-out infinite;
  }

  .work-media,
  .work-media.count-2,
  .work-media.count-3,
  .work-media.count-4 {
    display: flex;
    grid-template-columns: none;
    gap: 1px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .work-media::-webkit-scrollbar {
    display: none;
  }

  .work-media.count-3 :first-child {
    grid-row: auto;
  }

  .work-media img,
  .work-media video,
  .media-video {
    flex: 0 0 100vw;
    width: 100vw;
    min-height: 0;
    height: min(68svh, 560px);
    scroll-snap-align: start;
  }

  .work-copy {
    padding: 66px 18px 18px;
  }

  .work-copy h3 {
    max-width: 13rem;
  }

  .reel-section {
    padding-top: 64px;
    gap: 14px;
  }

  .reel-card,
  .reel-card video {
    min-height: 0;
    height: 76svh;
  }

  .reel-card.is-landscape {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .reel-card.is-landscape video {
    min-height: 0;
    height: 100%;
  }

  .reel-card .audio-toggle {
    right: 18px;
    bottom: 78px;
  }

  .drone-feature img {
    min-height: 44svh;
  }

  .client-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client-card {
    min-height: 96px;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 16px;
    padding: 16px;
  }

  .client-mark {
    min-height: 64px;
    border-right: 1px solid rgba(246, 240, 232, 0.12);
    padding-right: 16px;
  }

  .client-card img {
    max-height: 54px;
  }

  .client-name {
    border-top: 0;
    padding-top: 0;
    font-size: 0.78rem;
    text-align: left;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  footer {
    padding-bottom: 86px;
  }
}

@media (min-width: 760px) {
  .topbar {
    padding: 20px 38px;
  }

  .hero-content {
    padding: 136px 42px 88px;
  }

  .section,
  .about-section,
  .contact {
    padding: 104px 42px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: end;
    margin-bottom: 42px;
  }

  .work-copy {
    padding: 64px 24px 24px;
  }

  .reel-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 104px;
  }

  .reel-heading {
    grid-column: 1 / -1;
    padding: 0 42px 42px;
  }

  .reel-card,
  .reel-card video {
    min-height: 72svh;
    height: 72svh;
  }

  .about-section {
    grid-template-columns: 0.8fr 1fr;
    align-items: start;
  }

  .drone-feature {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .drone-feature div {
    padding: 62px;
  }

  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 1180px) {
  .section,
  .about-section,
  .contact {
    padding-right: max(42px, calc((100vw - 1180px) / 2));
    padding-left: max(42px, calc((100vw - 1180px) / 2));
  }

  .hero-content {
    padding-left: max(42px, calc((100vw - 1180px) / 2));
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(100%, 960px);
  }

  h1 {
    font-size: clamp(6.4rem, 10vw, 10.5rem);
  }

  h2 {
    font-size: clamp(3.6rem, 5.8vw, 6rem);
  }

  h3 {
    font-size: clamp(1.6rem, 2.6vw, 3rem);
  }

  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .work-media,
  .work-media.count-2,
  .work-media.count-3,
  .work-media.count-4 {
    grid-template-columns: 1fr;
  }

  .work-media.count-3 :first-child {
    grid-row: auto;
  }

  .work-media img,
  .work-media video,
  .media-video {
    min-height: 0;
    height: clamp(230px, 22vw, 340px);
  }

  .work-media.count-4 img:nth-child(n + 3),
  .work-media.count-4 video:nth-child(n + 3),
  .work-media.count-4 .media-video:nth-child(n + 3),
  .work-media.count-3 img:nth-child(n + 3),
  .work-media.count-3 video:nth-child(n + 3),
  .work-media.count-3 .media-video:nth-child(n + 3) {
    display: none;
  }

  .work-copy {
    min-height: 0;
  }

  .reel-section {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .reel-heading {
    padding-right: max(42px, calc((100vw - 1180px) / 2));
    padding-left: max(42px, calc((100vw - 1180px) / 2));
  }

  .reel-card,
  .reel-card video {
    min-height: 0;
    height: min(70svh, 680px);
  }

  .reel-card.is-landscape {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .reel-card.is-landscape video {
    min-height: 0;
    height: 100%;
  }

  .drone-feature img {
    height: min(76svh, 720px);
  }

  .client-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .client-card {
    min-height: 170px;
  }
}

@media (min-width: 1500px) {
  .section,
  .about-section,
  .contact {
    padding-right: max(64px, calc((100vw - 1380px) / 2));
    padding-left: max(64px, calc((100vw - 1380px) / 2));
  }

  .hero-content {
    padding-left: max(64px, calc((100vw - 1380px) / 2));
  }

  .work-media img,
  .work-media video,
  .media-video {
    height: 360px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .client-card,
  .work-card {
    transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
  }

  .button:hover,
  .client-card:hover,
  .work-card:hover {
    transform: translateY(-3px);
  }

  .client-card:hover img {
    filter: grayscale(0) contrast(1);
  }
}

@keyframes swipeButtonCue {
  0%,
  100% {
    transform: translateX(-7px);
  }

  45% {
    transform: translateX(0);
  }
}
