:root {
  --ink: #f8f4eb;
  --muted: #cfc6b7;
  --charcoal: #252525;
  --charcoal-2: #333333;
  --black: #101010;
  --gold: #f6ad35;
  --sage: #7c9286;
  --line: rgba(248, 244, 235, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.72), var(--black) 54%),
    var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(16, 16, 16, 0.68);
  border-bottom: 1px solid rgba(248, 244, 235, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 92px;
  min-width: 80px;
  overflow: hidden;
  background: #333333;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  transform: scale(1.035);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a,
footer a,
.contact-email a {
  transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible,
footer a:hover,
footer a:focus-visible,
.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--gold);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 104px clamp(18px, 4vw, 56px) 44px;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.42) 56%, rgba(16, 16, 16, 0.72)),
    linear-gradient(0deg, rgba(16, 16, 16, 0.94), rgba(16, 16, 16, 0.04) 50%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-video img,
.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.hero-video img {
  z-index: 0;
  filter: saturate(0.86) contrast(1.08);
}

.play-reel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(28px, 8vh, 84px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  color: #171717;
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background 180ms ease;
}

.play-reel:hover,
.play-reel:focus-visible {
  background: #ffc35c;
  transform: translateY(-1px);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #171717;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  padding-bottom: clamp(8px, 2vh, 22px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6.45rem);
  line-height: 0.96;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.6vw, 4.5rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #171717;
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  background: #ffc35c;
  transform: translateY(-1px);
}

.about-band {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.section-inner > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.capabilities {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 100px) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.capability {
  min-height: 430px;
  display: grid;
  grid-template-rows: 190px 1fr;
  background: #181818;
  overflow: hidden;
}

.capability img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06) brightness(0.82);
}

.capability:nth-child(1) img {
  object-position: center 24%;
}

.capability:nth-child(3) img {
  object-position: center 22%;
}

.capability-copy {
  padding: clamp(24px, 3.5vw, 34px);
}

.capability span,
.area-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capability p,
.area-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.areas-band,
.faq-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 0;
}

.areas-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.areas-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.areas-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.area-grid article {
  min-height: 300px;
  padding: clamp(26px, 3vw, 38px);
  background: #181818;
}

.area-grid span {
  margin-bottom: 58px;
  color: var(--gold);
}

.area-grid h3 {
  max-width: 24ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.08;
  font-weight: 500;
}

.faq-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.faq-band h2 {
  max-width: 10ch;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 36px 22px 0;
  position: relative;
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--gold);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 0 22px;
  margin: 0;
  color: var(--muted);
}

.contact-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0 clamp(70px, 10vw, 128px);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-copy h2 {
  max-width: 8ch;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  line-height: 1.02;
}

.contact-copy .contact-email {
  margin-top: 28px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: #181818;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form label:nth-of-type(4),
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: #242424;
  border: 1px solid rgba(248, 244, 235, 0.18);
  border-radius: 4px;
  padding: 12px 13px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(246, 173, 53, 0.65);
  outline-offset: 2px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: var(--muted);
  background: #0b0b0b;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.88);
}

.reel-modal[hidden] {
  display: none;
}

.modal-frame,
.watch-frame {
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}

.modal-frame iframe,
.watch-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.close-reel {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(248, 244, 235, 0.1);
  border: 1px solid rgba(248, 244, 235, 0.24);
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.close-reel:hover,
.close-reel:focus-visible {
  background: rgba(248, 244, 235, 0.18);
}

.reel-page-main {
  min-height: calc(100svh - 75px);
  padding: 150px clamp(20px, 4vw, 56px) clamp(70px, 10vw, 120px);
}

.reel-intro,
.watch-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reel-intro {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.reel-intro h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
}

.reel-intro > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.watch-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  padding-top: clamp(38px, 6vw, 70px);
}

.watch-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.watch-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.watch-copy .button {
  grid-column: 2;
  justify-self: start;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.thanks {
  width: min(680px, calc(100% - 40px));
  text-align: center;
  padding: 80px 0;
}

.thanks img {
  width: 156px;
  height: auto;
  margin-bottom: 34px;
}

.thanks h1 {
  max-width: none;
  margin-bottom: 20px;
}

.thanks p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (min-width: 821px) {
  .hero-copy {
    transform: translateY(34px);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    padding: 14px 18px;
  }

  .brand {
    width: 82px;
  }

  .hero {
    min-height: 88svh;
    padding: 124px 20px 104px;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(16, 16, 16, 0.86), rgba(16, 16, 16, 0.32) 58%, rgba(16, 16, 16, 0.64)),
      linear-gradient(0deg, rgba(16, 16, 16, 0.96), rgba(16, 16, 16, 0.16) 62%);
  }

  .hero-video img {
    object-position: 48% center;
  }

  .play-reel {
    left: 20px;
    right: auto;
    bottom: 28px;
    min-height: 48px;
    padding: 0 17px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .section-inner,
  .contact-band,
  .areas-heading,
  .faq-band,
  .watch-copy {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .areas-heading,
  .faq-band,
  .watch-copy {
    width: 100%;
  }

  .areas-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .capabilities,
  .area-grid {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .area-grid {
    width: 100%;
  }

  .capability {
    min-height: 0;
    grid-template-columns: minmax(128px, 36%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    border: 1px solid var(--line);
  }

  .capability img {
    min-width: 0;
    min-height: 160px;
    max-width: 100%;
    object-position: center center;
  }

  .capability-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    overflow-wrap: break-word;
  }

  .capability span {
    margin-bottom: 14px;
    font-size: 0.7rem;
  }

  .capability h3 {
    margin-bottom: 8px;
  }

  .capability p {
    font-size: 0.95rem;
    line-height: 1.42;
  }

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

  .area-grid span {
    margin-bottom: 28px;
  }

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

  .contact-form label:nth-of-type(4),
  .contact-form button,
  .watch-copy .button {
    grid-column: auto;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 18px;
  }

  nav {
    gap: 12px;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 11.5ch;
    margin-bottom: 16px;
    font-size: clamp(2.32rem, 12.5vw, 3.42rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy > p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .section-inner {
    padding: 42px 0;
  }

  .capabilities {
    padding: 28px 0;
  }

  .capability {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .capability img {
    min-height: 176px;
  }

  .capability-copy {
    padding: 16px;
  }

  .areas-band,
  .faq-band {
    padding: 52px 0;
  }

  .contact-band {
    padding: 32px 0 64px;
  }

  .contact-copy h2 {
    max-width: 10ch;
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .contact-form {
    padding: 18px;
  }

  .reel-page-main {
    padding: 126px 18px 64px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
