:root {
  --charcoal: #040303;
  --maroon: #780329;
  --purple: #2a034b;
  --graphite: #202324;
  --white: #ffffff;
  --line: rgba(4, 3, 3, 0.15);
  --muted: #666264;
  --display: "League Gothic", "Arial Narrow", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --header-height: 5.25rem;
  --gutter: clamp(1.4rem, 5vw, 5rem);
  --heading-size: clamp(4rem, 5.5vw, 5.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--white);
  background: var(--maroon);
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), 1280px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(4, 3, 3, 0.08);
  backdrop-filter: blur(14px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--maroon) 0%,
    var(--purple) 16%,
    rgba(42, 3, 75, 0.2) 34%,
    transparent 72%
  );
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (2 * var(--gutter))), 1280px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand > img {
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
}

.wordmark,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark > span,
.footer-brand > span {
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.wordmark small,
.footer-brand small {
  margin-top: 0.38rem;
  color: var(--maroon);
  font-size: 0.49rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.header-link {
  position: relative;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--maroon);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 220ms ease;
}

.header-link:hover::after,
.header-link:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(28rem, 7fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(2.2rem, 4.5vh, 4rem);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.45rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--maroon);
}

.hero h1,
.about h2,
.section-heading h2,
.coming-soon h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: var(--heading-size);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero h1 em,
.about h2 em,
.coming-soon h2 em,
.contact h2 em {
  color: var(--maroon);
  font-style: normal;
  font-weight: 400;
}

.hero-intro {
  max-width: 31rem;
  margin: 1.65rem 0 0;
  color: var(--graphite);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.72;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(46vw, calc(100svh - var(--header-height) - 3rem), 650px);
  aspect-ratio: 1;
}

.video-shell {
  position: relative;
  z-index: 2;
  width: 86%;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  box-shadow:
    0 2.6rem 6rem rgba(42, 3, 75, 0.1),
    0 0.8rem 2.4rem rgba(120, 3, 41, 0.07);
}

.video-shell::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(42, 3, 75, 0.15);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--maroon);
  border-radius: 50%;
}

.orbit-one {
  inset: 1.5%;
  animation: orbit 28s linear infinite;
}

.orbit-one::after {
  top: 18%;
  right: 8%;
}

.orbit-two {
  inset: 8%;
  border-color: rgba(120, 3, 41, 0.11);
  animation: orbit 36s linear infinite reverse;
}

.orbit-two::after {
  right: 16%;
  bottom: 4%;
  background: var(--purple);
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.about,
.services,
.contact {
  padding-block: clamp(4.8rem, 8vw, 7rem);
}

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

.about h2 {
  max-width: 72rem;
}

.statement-line {
  display: block;
}

.about h2 strong {
  color: var(--purple);
  font-weight: 400;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 61rem;
  margin-top: clamp(2rem, 4vw, 3.3rem);
}

.about-copy p {
  margin: 0;
  color: var(--graphite);
  font-size: 0.94rem;
}

.services {
  padding-top: clamp(4.8rem, 7vw, 6rem);
}

.section-heading {
  margin-bottom: clamp(2.4rem, 4vw, 3.5rem);
}

.section-heading h2 em {
  color: var(--purple);
  font-style: normal;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--charcoal);
}

.service {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1.2rem;
  min-height: 15.5rem;
  padding: 2.1rem clamp(1.5rem, 3vw, 2.7rem) 2.3rem 0;
  border-bottom: 1px solid var(--line);
}

.service:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(1.5rem, 3vw, 2.7rem);
  border-left: 1px solid var(--line);
}

.service-index {
  color: var(--maroon);
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.service h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.03;
  text-transform: uppercase;
}

.service h3 span {
  color: var(--muted);
}

.service p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.68;
}

.coming-soon {
  color: var(--white);
  background:
    radial-gradient(circle at 28% 50%, rgba(120, 3, 41, 0.72), transparent 35%),
    radial-gradient(circle at 82% 12%, rgba(42, 3, 75, 0.85), transparent 38%),
    var(--charcoal);
}

.coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: clamp(24rem, 48svh, 31rem);
  padding-block: 4rem;
}

.coming-soon .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.coming-soon h2 {
  max-width: 58rem;
}

.coming-soon > .coming-soon-inner > p:last-child {
  max-width: 40rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(4rem, 9vw, 8rem);
  align-items: start;
}

.contact h2 {
  margin-bottom: 1.7rem;
}

.contact-intro > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  padding-top: 0.4rem;
  border-top: 1px solid var(--charcoal);
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.72rem 0;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(4, 3, 3, 0.24);
  border-radius: 0;
  outline: none;
  font: inherit;
  resize: vertical;
  transition: border-color 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--maroon);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aaa4a6;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.6rem;
  padding: 0.95rem 1.15rem;
  color: var(--white);
  background: var(--charcoal);
  border: 0;
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--maroon);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status.success {
  color: #315f3b;
}

.form-status.error {
  color: var(--maroon);
}

footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  width: min(calc(100% - (2 * var(--gutter))), 1280px);
  margin-inline: auto;
  padding-block: 2.5rem;
}

footer .footer-brand {
  color: var(--white);
}

footer p,
footer a {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

footer a {
  justify-self: end;
}

@media (max-width: 980px) {
  :root {
    --heading-size: clamp(3.8rem, 9vw, 5.4rem);
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(23rem, 1.08fr);
  }

  .hero-visual {
    width: min(49vw, calc(100svh - var(--header-height) - 4rem), 560px);
  }

  .about-copy {
    max-width: none;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-form {
    max-width: 46rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.8rem;
    --heading-size: clamp(3.5rem, 15vw, 4.7rem);
  }

  .wordmark > span {
    font-size: 1.4rem;
  }

  .wordmark small {
    font-size: 0.42rem;
  }

  .brand > img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 3.5rem;
    overflow: visible;
  }

  .hero-copy {
    max-width: 36rem;
  }

  .hero-visual {
    justify-self: center;
    width: min(86vw, 34rem);
    margin-top: 2.4rem;
  }

  .about-copy,
  .service-list {
    grid-template-columns: 1fr;
  }

  .about-copy {
    gap: 1.25rem;
  }

  .service {
    min-height: 0;
    padding: 1.8rem 0 2rem;
  }

  .service:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .coming-soon-inner {
    min-height: 24rem;
  }

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

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 1.25rem;
    --heading-size: clamp(3.25rem, 16.5vw, 4.25rem);
  }

  .header-link {
    max-width: 7rem;
    line-height: 1.4;
    text-align: right;
  }

  .wordmark small {
    display: none;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .eyebrow {
    max-width: 18rem;
    font-size: 0.58rem;
    line-height: 1.5;
  }

  .hero-visual {
    width: min(92vw, 30rem);
  }

  .about,
  .services,
  .contact {
    padding-block: 4.2rem;
  }

  .statement-line {
    display: inline;
  }

  .statement-line + .statement-line::before {
    content: " ";
  }

  .service {
    grid-template-columns: 1.8rem 1fr;
    gap: 0.8rem;
  }

  .service h3 {
    font-size: 2.25rem;
  }

  .coming-soon-inner {
    min-height: 22rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  footer p {
    grid-column: auto;
    grid-row: auto;
  }

  footer a {
    justify-self: start;
  }
}

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

  .orbit {
    animation: none;
  }
}
