:root {
  --obsidian: #080908;
  --charcoal: #11100e;
  --smoke: #1c1a17;
  --ivory: #f4efe4;
  --linen: #dfd3bd;
  --muted: rgba(244, 239, 228, 0.72);
  --brass: #c99a48;
  --brass-light: #f0d28a;
  --oxblood: #7b1d24;
  --federal: #172a46;
  --line-dark: rgba(244, 239, 228, 0.16);
  --line-light: rgba(17, 16, 14, 0.14);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 29, 36, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 6%, rgba(201, 154, 72, 0.16), transparent 26rem),
    linear-gradient(180deg, #080908 0%, #11100e 48%, #090908 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  color: var(--obsidian);
  background: var(--brass-light);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.1rem, 4vw, 4.5rem);
  color: var(--ivory);
  background: rgba(8, 9, 8, 0.46);
  border-bottom: 1px solid rgba(244, 239, 228, 0.08);
  backdrop-filter: blur(20px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-elevated {
  padding-block: 0.72rem;
  background: rgba(8, 9, 8, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(10rem, 17vw, 14rem);
  height: auto;
  filter: brightness(0) invert(1) sepia(0.18) saturate(0.75) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.34));
}

.nav-links {
  gap: clamp(1.1rem, 3vw, 2.35rem);
  color: rgba(244, 239, 228, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
}

.nav-links a,
.header-cta {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--ivory);
}

.header-cta {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(240, 210, 138, 0.42);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(244, 239, 228, 0.04);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta:hover {
  background: rgba(240, 210, 138, 0.11);
  border-color: rgba(240, 210, 138, 0.72);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(6.8rem, 12vh, 8rem) clamp(1.1rem, 5vw, 5rem) clamp(3.5rem, 7vw, 6rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.94) 0%, rgba(8, 9, 8, 0.66) 44%, rgba(8, 9, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 9, 8, 0.12), rgba(8, 9, 8, 0.4) 58%, var(--obsidian) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 1.25rem;
  width: min(52rem, 74vw);
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(240, 210, 138, 0.78), transparent);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.92);
  transform: scale(1.025);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.flag-stripes {
  position: absolute;
  inset: auto 0 0;
  height: 26vh;
  opacity: 0.24;
  background:
    repeating-linear-gradient(180deg, rgba(123, 29, 36, 0.68) 0 9px, rgba(244, 239, 228, 0.18) 9px 18px),
    linear-gradient(90deg, rgba(23, 42, 70, 0.78), transparent 64%);
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, transparent, black 32%, transparent 100%);
}

.beam-sweep {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.34;
  background: linear-gradient(112deg, transparent 0 47%, rgba(201, 154, 72, 0.46) 49%, rgba(244, 239, 228, 0.42) 50%, transparent 54% 100%);
  filter: blur(8px);
  transform: translateX(-72%);
  animation: beamSweep 6.8s ease-in-out infinite;
  pointer-events: none;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.3rem, 8.2vw, 8.65rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5.2vw, 5.65rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.1vw, 1.9rem);
  font-weight: 400;
  line-height: 1.08;
}

.hero-copy,
.intro > p,
.showreel-copy p,
.service-row p,
.work-card p,
.process-steps span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-actions {
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #17110a;
  background: linear-gradient(135deg, #f6e8c4, var(--brass) 62%, #9d6225);
  box-shadow: 0 20px 50px rgba(201, 154, 72, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(240, 210, 138, 0.38);
  background: rgba(244, 239, 228, 0.045);
}

.btn-secondary:hover {
  border-color: rgba(240, 210, 138, 0.72);
  background: rgba(244, 239, 228, 0.08);
}

.hero-stat {
  display: inline-block;
  margin-top: 1.45rem;
  padding: 0.18rem 0 0.22rem 1rem;
  border-left: 1px solid rgba(240, 210, 138, 0.62);
}

.hero-stat strong {
  display: block;
}

.hero-stat strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 400;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(240, 210, 138, 0.16);
  background: #0d0d0c;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.6rem;
  padding: 1rem 0;
  animation: ticker 32s linear infinite;
}

.ticker span {
  color: rgba(244, 239, 228, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  white-space: nowrap;
}

.section,
.showreel,
.services,
.process,
.cta {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.1rem, 5vw, 5rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: end;
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.02), rgba(244, 239, 228, 0.045)),
    var(--obsidian);
}

.intro > p {
  max-width: 560px;
  padding-left: clamp(1rem, 3vw, 2.2rem);
  border-left: 1px solid rgba(240, 210, 138, 0.34);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.showreel {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 42, 70, 0.18), transparent 44%),
    #0c0d0d;
}

.showreel-copy {
  max-width: 540px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 210, 138, 0.32);
  background: #030303;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 10px rgba(8, 9, 8, 0.22);
}

.showreel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 44%, rgba(201, 154, 72, 0.34) 49%, rgba(244, 239, 228, 0.45) 50%, transparent 56% 100%);
  mix-blend-mode: screen;
  filter: blur(10px);
  opacity: 0.42;
  transform: translateX(-72%);
  animation: beamSweep 7s ease-in-out infinite;
}

.video-chrome {
  display: none;
}

.work {
  background:
    linear-gradient(180deg, #0c0d0d 0%, #12100d 100%);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(240, 210, 138, 0.18);
  border: 1px solid rgba(240, 210, 138, 0.18);
}

.work-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.02), rgba(8, 9, 8, 0.76)),
    url("assets/falconbeam-hero.png") center / cover;
  isolation: isolate;
}

.work-card:first-child {
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.04), rgba(8, 9, 8, 0.82)),
    url("assets/executive-recognition-award.jpg") center / cover;
}

.work-card:nth-child(2) {
  background-position: 60% center;
}

.work-card:nth-child(3) {
  background-position: 82% center;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(123, 29, 36, 0.24), transparent 52%),
    linear-gradient(225deg, rgba(23, 42, 70, 0.3), transparent 54%);
  opacity: 0.9;
}

.card-number {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  color: rgba(240, 210, 138, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.work-card h3,
.work-card p {
  position: relative;
}

.services {
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent),
    var(--ivory);
}

.services .section-kicker {
  color: var(--oxblood);
}

.services h2 {
  color: #171410;
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service-row {
  display: grid;
  grid-template-columns: 4rem 0.72fr 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line-light);
}

.service-row span {
  color: var(--oxblood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.service-row p {
  color: rgba(17, 16, 14, 0.68);
}

.process {
  background:
    linear-gradient(135deg, rgba(23, 42, 70, 0.18), transparent 45%),
    linear-gradient(225deg, rgba(123, 29, 36, 0.16), transparent 42%),
    #0d0d0c;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(240, 210, 138, 0.18);
  border: 1px solid rgba(240, 210, 138, 0.18);
}

.process-steps li {
  min-height: 260px;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(244, 239, 228, 0.045);
}

.process-steps strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.process-steps span {
  display: block;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.9), rgba(8, 9, 8, 0.55)),
    url("assets/falconbeam-hero.png") center / cover;
  border-top: 1px solid rgba(240, 210, 138, 0.18);
}

.cta h2 {
  max-width: 940px;
}

.site-footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 2.6rem clamp(1.1rem, 5vw, 5rem) 3.4rem;
  color: rgba(244, 239, 228, 0.58);
  background: #060605;
  border-top: 1px solid rgba(240, 210, 138, 0.14);
  font-size: 0.88rem;
}

@keyframes heroDrift {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(1.25rem, -0.6rem, 0);
  }
}

@keyframes beamSweep {
  0%,
  44% {
    transform: translateX(-82%);
  }
  70%,
  100% {
    transform: translateX(78%);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .intro,
  .showreel,
  .work-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .intro > p {
    padding-left: 1.2rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .work-card,
  .process-steps li {
    min-height: 280px;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 0.72rem 1rem;
  }

  .brand img {
    width: 8.5rem;
  }

  .header-cta {
    padding: 0.62rem 0.75rem;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.85rem, 12.6vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.6rem);
  }

  .hero {
    padding-top: 5.8rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .ticker-track {
    gap: 1.7rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
