:root {
  --ink: #0b0f14;
  --paper: #f4f0e8;
  --paper-2: #e9e4da;
  --white: #fffdf8;
  --accent: #ff5a36;
  --accent-soft: #ffb59f;
  --line: rgba(11, 15, 20, 0.15);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --pad: clamp(1.25rem, 4vw, 5rem);
  --radius: 1.35rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

::selection {
  color: var(--ink);
  background: var(--accent-soft);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem var(--pad);
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.brand img {
  flex: 0 0 auto;
}

.brand-wordmark b {
  font-weight: 600;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  font-size: 0.84rem;
  font-weight: 600;
}

.desktop-nav > a:not(.nav-cta) {
  opacity: 0.76;
  transition: opacity 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.76rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #101820;
}

.hero-video,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.82) 0%, rgba(5, 10, 16, 0.45) 48%, rgba(5, 10, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 10, 16, 0.82) 0%, transparent 46%);
}

.hero-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to top, black, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 2 * var(--pad)));
  margin: 0 var(--pad);
  padding: clamp(8rem, 18vh, 12rem) 0 3rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow span {
  width: 2.2rem;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9.8vw, 8.9rem);
  line-height: 0.83;
  letter-spacing: -0.075em;
  font-weight: 600;
}

.hero h1 em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.hero-copy {
  max-width: 610px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  gap: 1rem;
  padding: 0.95rem 1.1rem 0.95rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--accent);
}

.button-primary:hover {
  background: #ff7254;
}

.button span {
  font-size: 1.25em;
}

.text-link {
  font-size: 0.84rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-tag {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.city-tag i {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.35);
}

.marquee {
  overflow: hidden;
  color: white;
  background: var(--accent);
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.65rem;
  padding: 0.9rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.marquee-track i {
  color: var(--ink);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-40%);
  }
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) var(--pad);
}

.intro {
  display: grid;
  grid-template-columns: minmax(140px, 0.62fr) minmax(0, 2fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.section-label {
  padding-top: 0.7rem;
  color: rgba(11,15,20,0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-copy h2,
.section-heading h2,
.approach-top h2,
.proof-statement h2,
.cta-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.intro-copy h2 {
  max-width: 1000px;
  font-size: clamp(2.6rem, 6.4vw, 6.3rem);
  line-height: 0.98;
}

.intro-copy h2 span,
.proof-statement h2 span,
.cta-copy h2 span {
  display: block;
  color: rgba(11,15,20,0.35);
}

.intro-copy > p {
  max-width: 640px;
  margin: 2.2rem 0 0 auto;
  color: rgba(11,15,20,0.67);
  font-size: 1rem;
}

.services {
  padding-top: 2rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: end;
  gap: 2rem;
  padding-bottom: 2.3rem;
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: rgba(11,15,20,0.62);
}

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

.service-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.service-card:first-child {
  border-top: 0;
}

.service-card:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  background: rgba(255,255,255,0.42);
}

.service-number {
  align-self: start;
  padding-top: 0.45rem;
  color: rgba(11,15,20,0.42);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 700px;
  margin: 0.8rem 0 0;
  color: rgba(11,15,20,0.61);
}

.service-arrow {
  justify-self: end;
  font-size: 1.8rem;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.service-card:hover .service-arrow {
  transform: rotate(0deg);
}

.dark-section {
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 82% 15%, rgba(255,90,54,0.18), transparent 25%),
    #0b0f14;
  overflow: hidden;
}

.dark-section::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -24vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(255,255,255,0.025),
    0 0 0 14vw rgba(255,255,255,0.018);
  pointer-events: none;
}

.approach {
  position: relative;
  z-index: 1;
}

.section-kicker.light {
  color: var(--accent-soft);
}

.approach-top h2 {
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.86;
}

.approach-top h2 span {
  color: var(--accent);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 9vw, 8rem);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.approach-grid article {
  min-height: 310px;
  padding: 1.35rem;
  background: #0b0f14;
}

.approach-grid article > span {
  display: block;
  margin-bottom: 5.5rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
}

.approach-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.approach-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}

.proof {
  padding-bottom: 3rem;
}

.proof-statement h2 {
  max-width: 950px;
  font-size: clamp(3rem, 6.7vw, 6.4rem);
  line-height: 0.93;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.client-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.28);
}

.client-logo-wrap {
  height: clamp(205px, 18vw, 255px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 1.7vw, 1.35rem);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.client-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: 91%;
  object-fit: contain;
}

.client-card-body {
  padding: 1.5rem;
}

.client-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: -0.035em;
}

.client-location {
  margin: 0.55rem 0 0;
  color: rgba(11,15,20,0.55);
  font-size: 0.9rem;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.cta-copy {
  align-self: start;
}

.cta-copy h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.cta-copy > p:last-child {
  max-width: 500px;
  margin-top: 1.7rem;
  color: rgba(11,15,20,0.62);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.48rem;
}

label > span {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11,15,20,0.3);
  border-radius: 0;
  padding: 0.85rem 0.1rem;
  color: var(--ink);
  background: transparent;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}

.button-dark {
  width: fit-content;
  margin-top: 0.4rem;
  color: white;
  background: var(--ink);
}

.button-dark:hover {
  background: #202731;
}

.form-note {
  margin: 0;
  color: rgba(11,15,20,0.45);
  font-size: 0.72rem;
}

.form-note code {
  font-size: 0.95em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: start;
  gap: 2rem;
  padding: 2.2rem var(--pad);
  color: rgba(255,255,255,0.7);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  font-size: 0.78rem;
}

.footer-brand {
  color: white;
}

.site-footer p {
  margin: 0.55rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1.2rem;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,0.38);
}

@media (max-width: 980px) {
  .desktop-nav > a:not(.nav-cta) {
    display: none;
  }

  .intro,
  .section-heading,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .intro-copy > p {
    margin-left: 0;
  }

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

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 1.1rem;
  }

  .site-header {
    padding-top: 1rem;
  }

  .brand-wordmark {
    font-size: 0.92rem;
  }

  .nav-cta {
    padding: 0.65rem 0.8rem;
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .hero-content {
    padding-bottom: 1.8rem;
  }

  .city-tag {
    display: none;
  }

  .hero-meta {
    gap: 0.55rem 0.85rem;
  }

  .intro {
    gap: 2rem;
  }

  .service-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .service-arrow {
    display: none;
  }

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

  .approach-grid article {
    min-height: auto;
  }

  .approach-grid article > span {
    margin-bottom: 3rem;
  }

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

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

  .footer-links {
    margin-top: 1rem;
  }

}

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

  .hero-video {
    display: none;
  }
}

.client-logo-autofury {
  width: 88%;
  max-width: 88%;
  max-height: 96%;
}

.client-logo-cardamom {
  width: 86%;
  max-width: 86%;
  max-height: 76%;
}

.client-logo-nova {
  width: 84%;
  max-width: 84%;
  max-height: 80%;
}


/* Services + Pricing */
.pricing-heading {
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}

.pricing-card .service-number {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  padding: 0;
  color: rgba(11,15,20,0.36);
}

.pricing-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
}

.pricing-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card h3 {
  max-width: 85%;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pricing-card > p {
  max-width: 680px;
  margin: 0.9rem 0 1.8rem;
  color: rgba(11,15,20,0.62);
}

.price-lines {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.price-lines p {
  margin: 0.35rem 0;
  color: rgba(11,15,20,0.66);
  font-size: 0.86rem;
}

.price-lines strong {
  color: var(--ink);
}

.price-lines b {
  color: var(--accent);
  font-size: 1.05em;
}

/* Contact details */
.contact-direct {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.call-button {
  width: fit-content;
  min-width: 320px;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.05rem 1.35rem;
  color: white;
  background: var(--ink);
  border-radius: 1.15rem;
  transition: transform 180ms ease;
}

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

.call-icon {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  font-size: 1.3rem;
}

.call-button span:last-child {
  display: grid;
}

.call-button small {
  color: rgba(255,255,255,0.62);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.call-button strong {
  font-family: var(--display);
  font-size: 1.28rem;
}

.contact-email {
  margin: 0;
  color: rgba(11,15,20,0.55);
  font-size: 0.82rem;
}

/* Multi-choice services */
.service-choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.service-choice-group legend {
  margin-bottom: 0.75rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-choice-group legend span {
  color: rgba(11,15,20,0.45);
  font-weight: 600;
}

.service-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0.72rem 0.85rem 0.72rem 2.35rem;
  border: 1px solid rgba(11,15,20,0.2);
  border-radius: 0.75rem;
  color: rgba(11,15,20,0.7);
  background: rgba(244,240,232,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 160ms ease, background 160ms ease;
}

.choice-card span::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid rgba(11,15,20,0.45);
  border-radius: 0.25rem;
  background: var(--white);
}

.choice-card input:checked + span {
  color: var(--ink);
  border-color: var(--accent);
  background: rgba(255,90,54,0.08);
}

.choice-card input:checked + span::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--white);
}

.choice-card input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.choice-error {
  min-height: 1em;
  margin: 0.55rem 0 0;
  color: #9f2e1d;
  font-size: 0.76rem;
}

.captcha-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(244,240,232,0.55);
}

.captcha-note p {
  margin: 0;
  color: rgba(11,15,20,0.58);
  font-size: 0.75rem;
}

.captcha-check {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  color: white;
  background: var(--ink);
  border-radius: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.honey-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .service-choices {
    grid-template-columns: 1fr;
  }
}
