:root {
  --charcoal: #080808;
  --surface: #191919;
  --foreground: #fff;
  --muted: rgb(255 255 255 / 64%);
  --faint: rgb(255 255 255 / 10%);
  --accent: #5ee7ff;
  --accent-foreground: #080808;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
  color: var(--foreground);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--charcoal);
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px clamp(24px, 5vw, 48px);
}

.site-nav .brand {
  justify-self: start;
}

.site-nav .nav-links {
  justify-self: center;
}

.site-nav .button-small {
  justify-self: end;
}

.v2-page-sub .site-nav {
  display: flex;
  justify-content: center;
  padding: 28px 24px;
}

.v2-page-sub .brand,
.v2-page-sub .site-nav .button-small {
  display: none;
}

.v2-page-sub .nav-links {
  display: flex;
  gap: 44px;
  justify-content: center;
  color: rgb(255 255 255 / 48%);
  font-size: 0.82rem;
}

.brand,
.footer-brand {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 32px;
  color: rgb(255 255 255 / 60%);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links .is-active,
.footer-links a:hover {
  color: var(--foreground);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 0 32px;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.button-small {
  min-height: 40px;
  padding-inline: 24px;
}

.button-outline {
  border-color: rgb(255 255 255 / 20%);
  background: transparent;
  color: rgb(255 255 255 / 82%);
}

.button-outline:hover {
  border-color: rgb(255 255 255 / 60%);
  background: transparent;
  color: var(--foreground);
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px 48px;
  text-align: center;
}

.hero-media,
.hero-media video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.hero-shade {
  background:
    radial-gradient(ellipse at center, transparent 0%, rgb(8 8 8 / 18%) 58%, rgb(8 8 8 / 62%) 100%),
    linear-gradient(180deg, rgb(8 8 8 / 38%), transparent 45%, rgb(8 8 8 / 66%));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 50%);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.hero h1,
.page-hero h1,
.booking-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.hero p,
.booking-hero p {
  max-width: 620px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.hero-line {
  width: 1px;
  height: 96px;
  margin: 64px auto 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 40%), transparent);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--faint);
  background: var(--surface);
  padding-block: 40px;
}

.marquee-track,
.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 40s linear infinite;
}

.marquee-track span {
  margin-inline: 24px;
  color: rgb(255 255 255 / 10%);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track b {
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 400;
}

.trusted {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--faint);
  padding-block: 44px;
}

.trusted p {
  margin: 0 0 32px;
  color: rgb(255 255 255 / 40%);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

.logo-track {
  gap: clamp(56px, 8vw, 96px);
  min-height: 74px;
  padding-inline: 32px;
  animation-duration: 60s;
}

.logo-item {
  display: inline-flex;
  width: clamp(150px, 14vw, 260px);
  height: 74px;
  align-items: center;
  justify-content: center;
}

.logo-track img {
  width: auto;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.logo-track img:hover {
  opacity: 1;
}

.section {
  max-width: 1280px;
  margin-inline: auto;
  padding: 128px clamp(24px, 5vw, 48px);
}

.section-wide {
  max-width: 1380px;
}

.compact-top {
  padding-top: 64px;
}

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

.section-heading p,
.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--faint);
  padding: 48px 16px;
  transition: background 160ms ease;
}

.service-row:last-child,
.service-detail:last-child {
  border-bottom: 1px solid var(--faint);
}

.service-row:hover {
  background: rgb(255 255 255 / 5%);
}

.service-row div {
  display: flex;
  align-items: baseline;
  gap: 40px;
}

.service-row span,
.service-detail > span {
  color: rgb(255 255 255 / 30%);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.9rem;
}

.service-row h3,
.service-detail h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-row p {
  max-width: 420px;
  margin: 0;
  color: rgb(255 255 255 / 42%);
  font-size: 0.92rem;
  line-height: 1.7;
}

.page-hero,
.booking-hero {
  max-width: 1080px;
  margin-inline: auto;
  padding: 170px clamp(24px, 5vw, 48px) 76px;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
}

.v2-page-about .page-hero,
.v2-page-services .page-hero {
  text-align: left;
}

.v2-page-about .page-hero {
  max-width: 980px;
}

.v2-page-services .page-hero {
  max-width: 1080px;
}

.service-detail {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 32px;
  border-top: 1px solid var(--faint);
  padding: 64px 16px;
}

.service-detail p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.65;
}

.service-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: rgb(255 255 255 / 72%);
  list-style: none;
}

.service-detail li::before {
  content: ">";
  margin-right: 12px;
  color: var(--accent);
}

.cta-band {
  background: var(--surface);
  padding: 96px 24px;
  text-align: center;
}

.cta-band p {
  max-width: 620px;
  margin: 24px auto 40px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-section,
.contact-section,
.pricing-section {
  border-top: 1px solid var(--faint);
  background: var(--charcoal);
  padding: 112px clamp(24px, 5vw, 48px);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(56px, 8vw, 96px);
  max-width: 1280px;
  margin-inline: auto;
}

.section-grid h2,
.pricing-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid var(--faint);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--faint);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font: inherit;
  padding: 24px 0;
  text-align: left;
  transition: color 160ms ease;
}

.faq-item button:hover {
  color: var(--accent);
}

.faq-item button span {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.faq-item button b {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 200ms ease;
}

.faq-item.is-open button b {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease, padding 220ms ease;
}

.faq-answer p {
  max-width: 720px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 7vw, 80px);
}

.contact-section p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 48px;
  color: rgb(255 255 255 / 72%);
  font-size: 0.95rem;
}

.contact-details p {
  margin: 0;
}

.contact-details a:hover,
.contact-success a {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgb(255 255 255 / 62%);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--faint);
  border-radius: 12px;
  background: var(--surface);
  color: var(--foreground);
  font: inherit;
  letter-spacing: 0;
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form option {
  background: var(--charcoal);
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.contact-success {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--faint);
  border-radius: 24px;
  background: var(--surface);
  padding: 40px;
}

.contact-success[hidden] {
  display: none;
}

.contact-success h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.pricing-inner {
  max-width: 1280px;
  margin-inline: auto;
}

.pricing-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.pricing-heading p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid var(--faint);
  border-radius: 18px;
  background: var(--surface);
  padding: 32px;
  transition: border-color 160ms ease;
}

.package-card:hover {
  border-color: rgb(255 255 255 / 22%);
}

.package-card.featured {
  border-color: rgb(94 231 255 / 60%);
  background: rgb(94 231 255 / 5%);
}

.popular {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.package-name {
  margin: 0 0 8px;
  color: rgb(255 255 255 / 50%);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: rgb(255 255 255 / 42%);
  font-size: 0.9rem;
}

.package-price span {
  color: var(--foreground);
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.package-tag {
  margin: 8px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.92rem;
  list-style: none;
}

.package-card li::before {
  content: ">";
  margin-right: 10px;
  color: var(--accent);
}

.package-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 999px;
  margin-top: auto;
  color: rgb(255 255 255 / 82%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 0 24px;
  text-align: center;
  text-transform: uppercase;
}

.featured .package-button {
  border-color: transparent;
  background: var(--accent);
  color: var(--accent-foreground);
}

.package-button:hover {
  border-color: rgb(255 255 255 / 42%);
  color: var(--foreground);
}

.featured .package-button:hover {
  background: var(--foreground);
  color: var(--charcoal);
}

.addons {
  margin-top: 64px;
}

.addons h3 {
  margin: 0 0 24px;
  color: rgb(255 255 255 / 50%);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.addon-list {
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: 18px;
}

.addon-row {
  display: grid;
  grid-template-columns: 1fr 120px 2fr;
  gap: 24px;
  padding: 16px 24px;
}

.addon-row + .addon-row {
  border-top: 1px solid var(--faint);
}

.addon-row div:nth-child(2) {
  color: var(--accent);
}

.addon-row div:nth-child(3) {
  color: var(--muted);
  font-size: 0.92rem;
}

.addons > p {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 42%);
  font-size: 0.9rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: 18px;
  background: var(--surface);
}

.work-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  object-fit: cover;
}

.work-card-body {
  padding: 28px;
}

.work-card-body h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  letter-spacing: -0.03em;
}

.work-card-body p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-block: 1px solid var(--faint);
  background: var(--surface);
  padding: 96px max(24px, calc((100vw - 1080px) / 2));
}

.split-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.copy-stack {
  display: grid;
  gap: 24px;
  color: rgb(255 255 255 / 72%);
  line-height: 1.7;
}

.copy-stack p {
  margin: 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--faint);
}

.principles article {
  background: var(--charcoal);
  padding: 40px;
}

.principles h3 {
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-hero {
  max-width: 1080px;
  padding-top: 150px;
  text-align: center;
}

.booking-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.booking-wrap {
  max-width: 940px;
  margin-inline: auto;
  padding: 0 24px 128px;
}

.booking-form,
.form-success {
  border: 1px solid var(--faint);
  border-radius: 24px;
  background: rgb(8 8 8 / 88%);
  padding: clamp(32px, 6vw, 48px);
}

.booking-form {
  display: grid;
  gap: 24px;
}

.booking-form label,
.booking-form legend {
  display: grid;
  gap: 8px;
  color: rgb(255 255 255 / 62%);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--faint);
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--foreground);
  font: inherit;
  letter-spacing: 0;
  padding: 14px 20px;
  outline: none;
}

.booking-form textarea {
  border-radius: 20px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--accent);
}

.booking-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.check-grid label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--faint);
  border-radius: 999px;
  color: var(--foreground);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  padding: 10px 16px;
  text-transform: none;
}

.check-grid input {
  width: auto;
  accent-color: var(--accent);
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgb(255 255 255 / 42%);
  font-size: 0.85rem;
  text-align: center;
}

.form-note a,
.form-success a {
  color: var(--accent);
}

.form-success {
  text-align: center;
}

.form-success h2 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid rgb(255 255 255 / 5%);
  padding: 80px 24px;
}

.footer-inner {
  display: flex;
  max-width: 1280px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-inline: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: rgb(255 255 255 / 42%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.copyright {
  color: rgb(255 255 255 / 22%);
  font-size: 0.8rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 20px;
  }

  .nav-links {
    display: none;
  }

  .v2-page-sub .site-nav {
    display: flex;
    justify-content: center;
    padding: 22px 16px;
  }

  .v2-page-sub .nav-links {
    display: flex;
    gap: 22px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .brand {
    font-size: 1rem;
  }

  .button-small {
    justify-self: end;
    min-height: 36px;
    padding-inline: 16px;
  }

  .service-row,
  .footer-inner,
  .split-band {
    align-items: stretch;
    flex-direction: column;
  }

  .service-row {
    display: grid;
  }

  .service-row div {
    gap: 24px;
  }

  .service-detail,
  .split-band,
  .principles,
  .section-grid,
  .contact-grid,
  .package-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .booking-hero {
    padding-top: 116px;
  }

  .logo-track {
    gap: 40px;
  }

  .logo-item {
    width: 160px;
  }

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

  .addon-row {
    grid-template-columns: 1fr auto;
  }

  .addon-row div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

@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;
  }
}
