:root {
  --black: #030303;
  --white: #ffffff;
  --soft: #f6f6f6;
  --ink: #171717;
  --gray: #555555;
  --line: #dedede;
  --blue: #90b4ee;
  --yellow: #ffc84f;
  --red: #fe6161;
  --max: 1120px;
  --sans: Avenir, Montserrat, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px clamp(16px, 5vw, 58px);
  background: var(--black);
  color: var(--white);
}

.logo-link {
  width: min(86vw, 680px);
}

.logo-link img {
  width: 100%;
}

.desktop-nav {
  display: none;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.05);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.52));
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 5vw, 76px);
  right: clamp(14px, 6vw, 86px);
  bottom: clamp(18px, 5vw, 62px);
}

.hero-kicker {
  display: inline;
  margin: 0 0 10px;
  background: var(--black);
  color: var(--yellow);
  padding: 5px 8px;
  font-size: clamp(0.68rem, 2.8vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  display: grid;
  justify-items: start;
  gap: 0;
  margin: 12px 0 0;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 span,
h1 em {
  background: var(--black);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 9px 4px;
  font-weight: 900;
}

h1 span {
  color: var(--blue);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.01em;
}

h1 em {
  color: var(--yellow);
  font-size: clamp(1.08rem, 3.7vw, 2.15rem);
  font-style: italic;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
  font-size: clamp(1rem, 3.6vw, 1.18rem);
  font-weight: 700;
}

.hero-actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 360px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 0;
  padding: 13px 20px;
  color: var(--black);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  background: var(--black);
  color: var(--white);
}

.white-section,
.black-section {
  padding: clamp(58px, 9vw, 105px) clamp(18px, 6vw, 70px);
}

.white-section {
  background: var(--white);
}

.black-section {
  background: var(--black);
  color: var(--white);
}

.samples {
  padding-bottom: clamp(24px, 4vw, 44px);
}

.industry {
  padding-top: clamp(24px, 4vw, 44px);
}

.white-section > *,
.black-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label.blue {
  color: var(--blue);
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.15rem, 7.5vw, 4.1rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h3 {
  color: var(--red);
  font-size: clamp(1.15rem, 5vw, 1.65rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.proof-strip span {
  border: 2px solid var(--black);
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.success-grid,
.process-grid,
.highlight-grid,
.offer-grid,
.path-grid {
  display: grid;
  gap: 20px;
}

.success-grid article {
  text-align: center;
}

.success-grid img {
  width: min(215px, 62vw);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}

.highlight-grid article {
  text-align: left;
}

.highlight-grid img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 0;
  object-fit: cover;
}

.highlight-grid article:first-child img {
  aspect-ratio: 1;
}

.highlight-grid article:not(:first-child) img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.success-grid p,
.highlight-grid p,
.process-grid p,
.philosophy p,
.offer p,
.offer li,
.form-intro p,
.form-note,
.media-layout p {
  color: var(--gray);
}

.black-section .philosophy p,
.black-section p,
.black-section .media-layout p {
  color: rgba(255, 255, 255, 0.82);
}

.philosophy {
  display: grid;
  gap: 20px;
}

.philosophy h2 {
  margin-bottom: 0;
}

.philosophy > p {
  max-width: 660px;
  font-size: 1.08rem;
  font-weight: 700;
}

.accordion {
  display: grid;
  gap: 14px;
  max-width: var(--max);
}

.service-card {
  border: 2px solid var(--black);
  background: var(--white);
  scroll-margin-top: 92px;
}

.service-card.is-open {
  box-shadow: 10px 10px 0 var(--blue);
}

.service-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: clamp(18px, 5vw, 30px);
  text-align: left;
}

.service-trigger span {
  display: grid;
  gap: 8px;
}

.service-trigger small {
  color: var(--red);
  font-weight: 900;
}

.service-trigger strong {
  font-size: clamp(1.25rem, 5.8vw, 2.15rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-trigger em {
  max-width: 770px;
  color: var(--gray);
  font-style: normal;
  font-weight: 700;
}

.service-trigger b {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.service-trigger b::before,
.service-trigger b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--black);
  content: "";
  transform: translate(-50%, -50%);
}

.service-trigger b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .service-trigger b::after {
  transform: translate(-50%, -50%);
}

.service-panel {
  padding: 0 clamp(18px, 5vw, 30px) clamp(20px, 6vw, 34px);
}

.offer {
  border-top: 2px solid var(--line);
  padding-top: 20px;
}

.price {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.price span {
  color: var(--black);
}

.price .subprice {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}

.offer ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.offer a {
  display: inline-flex;
  margin-top: 8px;
  background: var(--black);
  color: var(--yellow);
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-grid button {
  min-height: 70px;
  border: 0;
  color: var(--black);
  cursor: pointer;
  padding: 16px;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.path-grid button:nth-child(1) {
  background: #90b4ee;
}

.path-grid button:nth-child(2) {
  background: #ffc84f;
}

.path-grid button:nth-child(3) {
  background: #fe8585;
}

.path-grid button:nth-child(4) {
  background: #bfa7ff;
}

.path-grid button:hover,
.path-grid button:focus-visible {
  filter: brightness(1.06) saturate(1.08);
  transform: translateY(-2px);
}

.process-grid article {
  border-top: 2px solid var(--black);
  padding-top: 20px;
}

.process-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 18px;
}

.media-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.media-layout img {
  width: 100%;
  border: 2px solid var(--white);
}

.spotify-embed {
  max-width: 860px;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.industry-photo {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 52% center;
}

.project {
  display: grid;
  gap: 28px;
}

.project-form {
  display: grid;
  gap: 16px;
  border: 2px solid var(--black);
  background: var(--soft);
  padding: clamp(18px, 5vw, 30px);
}

.form-row {
  display: grid;
  gap: 16px;
}

.guidance-booking {
  display: grid;
  gap: 12px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 16px;
}

.guidance-booking[hidden] {
  display: none;
}

.booking-intro {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.booking-options {
  display: grid;
  gap: 10px;
}

.booking-card {
  display: grid;
  gap: 4px;
  border: 2px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

.booking-card strong {
  color: var(--ink);
  line-height: 1.05;
  text-transform: uppercase;
}

.booking-card span {
  color: var(--gray);
  font-weight: 800;
}

.booking-card em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(144, 180, 238, 0.4);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.footer {
  display: grid;
  gap: 18px;
  padding: 42px clamp(18px, 6vw, 70px);
  background: var(--black);
  color: var(--white);
}

.footer img {
  width: min(680px, 86vw);
}

.footer p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.74);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 680px) {
  .success-grid,
  .process-grid,
  .highlight-grid,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-grid.single {
    grid-template-columns: minmax(0, 0.7fr);
  }
}

@media (min-width: 461px) and (max-width: 979px) {
  .hero-copy {
    bottom: clamp(16px, 3.5vw, 34px);
    left: clamp(16px, 4vw, 38px);
    right: clamp(16px, 4vw, 38px);
  }

  .hero-kicker {
    font-size: clamp(0.62rem, 1.5vw, 0.75rem);
  }

  h1 span {
    font-size: clamp(2rem, 6.8vw, 3.8rem);
  }

  h1 em {
    font-size: clamp(0.96rem, 2.8vw, 1.55rem);
  }
}

@media (min-width: 980px) {
  .site-header {
    justify-content: space-between;
    min-height: 92px;
  }

  .logo-link {
    width: min(38vw, 720px);
  }

  .desktop-nav {
    display: flex;
  }

  .hero-image {
    min-height: 590px;
    max-height: 680px;
  }

  .success-grid,
  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .project,
  .media-layout {
    grid-template-columns: 0.9fr 1fr;
  }

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

  .feature-offer {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1800px) {
  .hero {
    display: grid;
    justify-items: center;
  }

  .hero-image {
    width: min(100%, 3000px);
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .hero::after,
  .hero-copy {
    width: min(100%, 3000px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-copy {
    padding-left: clamp(28px, 4vw, 82px);
    padding-right: clamp(28px, 4vw, 82px);
  }

  .hero-kicker {
    font-size: clamp(0.9rem, 0.78vw, 1.12rem);
  }

  h1 span {
    font-size: clamp(5rem, 4.6vw, 7rem);
  }

  h1 em {
    font-size: clamp(2.05rem, 2vw, 3rem);
  }
}

@media (max-width: 460px) {
  .site-header {
    min-height: 76px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .logo-link {
    width: 96vw;
  }

  .hero {
    display: grid;
  }

  .hero-image {
    min-height: 0;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-copy {
    position: static;
    padding: 0 12px 14px;
    background: var(--black);
  }

  .hero-kicker {
    display: none;
  }

  h1 span {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
  }

  h1 em {
    font-size: clamp(1rem, 4.5vw, 1.45rem);
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 94%;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .industry-photo {
    aspect-ratio: 1.25;
    object-position: 54% center;
  }

  .footer img {
    width: 94vw;
  }
}
