:root {
  --ink: #080808;
  --ink2: #101010;
  --paper: #f2efe8;
  --gold: #c7a466;
  --muted: #aaa69d;
  --line: rgba(242, 239, 232, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font: 16px/1.55 var(--sans);
  overflow-x: hidden;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-header.solid {
  position: relative;
  background: #0b0b0b;
}
.brand {
  color: var(--paper);
  text-decoration: none;
  font: 1.65rem/1 var(--serif);
  letter-spacing: -0.05em;
}
.brand span:first-child {
  font-style: italic;
}
.brand .dot {
  color: var(--gold);
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a,
.footer-links a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
nav a:hover,
nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--gold);
}
.nav-cta {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 11px 15px;
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}
.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  background: #fff;
  margin: 6px;
}
.section-pad {
  padding: 130px 4vw;
}
.section-number,
.proof-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
em {
  font-weight: 400;
  color: var(--gold);
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 145px 4vw 64px;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image {
  object-position: center;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(4, 4, 4, 0.96) 0%,
      rgba(4, 4, 4, 0.78) 42%,
      rgba(4, 4, 4, 0.1) 76%
    ),
    linear-gradient(0deg, rgba(4, 4, 4, 0.82), transparent 58%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(840px, 71vw);
}
.hero h1 {
  font-size: clamp(4rem, 7.7vw, 8.2rem);
  margin-bottom: 28px;
}
.hero-detail {
  max-width: 680px;
  color: #d3d0c9;
  font-size: 1.08rem;
}
.hero-detail strong {
  color: var(--paper);
}
.guarantee-line {
  max-width: 720px;
  color: var(--gold);
  font: italic 1.05rem/1.4 var(--serif);
  margin: 22px 0 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 19px;
  border: 0;
  text-decoration: none;
  font: 700 0.77rem var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
}
.button-outline {
  color: var(--paper);
  border: 1px solid var(--line);
}
.text-link {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-index {
  position: absolute;
  right: 4vw;
  bottom: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #c1bdb4;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.problem {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 42px;
}
.split-copy h2,
.section-heading h2,
.fit h2,
.faq h2 {
  font-size: clamp(3.1rem, 5.7vw, 6.4rem);
}
.split-copy > p,
.section-heading > p,
.fit-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}
.task-cloud {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.task-cloud span,
.fit-tags span {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.closing-line {
  grid-column: 2;
  font: italic 2rem var(--serif);
  color: var(--gold);
  margin: 25px 0 0;
}
.services {
  padding-bottom: 0;
  background: #0d0d0d;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 42px;
  margin-bottom: 70px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  grid-column: 2;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.service-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card:nth-child(3n) {
  border-right: 0;
}
.service-card:nth-child(n + 4) {
  border-bottom: 0;
}
.service-card > span,
.timeline-step > span,
.type-list article > span {
  color: var(--gold);
  font-size: 0.75rem;
}
.service-card h3 {
  font: 400 2.25rem/1 var(--serif);
  margin: auto 0 20px;
}
.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.band-statement {
  margin: 70px -4vw 0;
  padding: 34px 4vw;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
  font: italic clamp(1.7rem, 3vw, 3rem) var(--serif);
}
.work-preview {
  background: #111;
}
.reel-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reel-placeholder,
.portfolio-card.tall {
  aspect-ratio: 9/16;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(150deg, #282725, #111 58%, #332b20);
}
.reel-placeholder:before,
.portfolio-card.tall:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(199, 164, 102, 0.22),
    transparent 32%
  );
}
.reel-placeholder span,
.portfolio-card span {
  position: relative;
  font: 1.35rem var(--serif);
}
.reel-placeholder small,
.portfolio-card small {
  position: relative;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid #fff8;
  border-radius: 50%;
  font-size: 0.8rem;
}
.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.section-cta p {
  font: 1.45rem var(--serif);
  margin: 0;
}
.guarantee {
  padding: 130px 4vw;
  background: var(--paper);
  color: var(--ink);
}
.guarantee-top {
  display: flex;
  justify-content: space-between;
}
.guarantee-top > p:last-child {
  font: italic 1rem var(--serif);
}
.big-number {
  font: 400 clamp(5rem, 15vw, 14rem) / 0.86 var(--serif);
  letter-spacing: -0.085em;
  border-bottom: 1px solid #bcb6ab;
  padding: 44px 0 28px;
}
.guarantee-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  padding-top: 38px;
}
.guarantee-bottom h2 {
  font-size: clamp(3.5rem, 6.2vw, 6.8rem);
}
.guarantee-bottom h3 {
  font: 400 1.7rem/1.15 var(--serif);
}
.guarantee-bottom p {
  color: #554f47;
}
.guarantee-bottom small {
  display: block;
  color: #756e64;
  line-height: 1.45;
}
.timeline-section {
  padding-bottom: 0;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline-step {
  min-height: 360px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.timeline-step:last-child {
  border: 0;
}
.timeline-step h3 {
  font: 400 1.7rem/1.05 var(--serif);
  margin: auto 0 18px;
}
.timeline-step p {
  color: var(--muted);
  margin: 0;
}
.results {
  background: #111;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
}
.proof-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.proof-main {
  grid-row: span 2;
}
.proof-card h3 {
  font: 400 2.1rem/1.05 var(--serif);
  margin: auto 0 20px;
}
.proof-card p {
  color: var(--muted);
}
.proof-placeholder {
  margin-top: 30px;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}
.content-types {
  background: var(--paper);
  color: var(--ink);
}
.content-types .section-number {
  color: #777;
}
.content-types .section-heading > p {
  color: #666;
}
.type-list {
  border-top: 1px solid #bdb7ad;
}
.type-list article {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #bdb7ad;
}
.type-list h3 {
  font: 400 2rem var(--serif);
  margin: 0;
}
.type-list p {
  color: #686159;
  margin: 0;
}
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: #0c0c0c;
}
.check-list {
  padding: 34px;
  border: 1px solid var(--line);
}
.check-list > p {
  font: italic 1.5rem var(--serif);
}
.check-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #d4d0c8;
}
.check-list li:before {
  content: "✓";
  color: var(--gold);
  margin-right: 12px;
}
.fit .band-statement {
  grid-column: 1/-1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}
.why-grid article {
  min-height: 270px;
  padding: 25px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-grid article:last-child {
  border: 0;
}
.why-grid h3 {
  font: 400 1.55rem/1.05 var(--serif);
}
.why-grid p {
  color: var(--muted);
  margin: 0;
}
.bts {
  padding-top: 80px;
  background: #111;
}
.bts-copy {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 42px;
  margin-bottom: 60px;
}
.bts-copy h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
  margin: 0;
}
.bts-copy p {
  grid-column: 2;
  color: var(--muted);
  max-width: 620px;
}
.bts-image {
  margin: 0;
}
.bts-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  object-position: center;
}
.bts-image figcaption {
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.testimonials .section-heading {
  display: block;
  margin: 0;
}
.testimonial-placeholder {
  min-height: 300px;
  padding: 40px;
  border: 1px dashed #ffffff47;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.testimonial-placeholder span {
  font: italic 2.2rem var(--serif);
}
.testimonial-placeholder p {
  color: var(--muted);
  margin: 14px 0 0;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 45px;
  background: var(--paper);
  color: var(--ink);
}
.faq-list {
  border-top: 1px solid #bbb4a9;
}
.faq details {
  border-bottom: 1px solid #bbb4a9;
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font: 1.25rem var(--serif);
  padding-right: 36px;
  position: relative;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 4px;
}
.faq details[open] summary:after {
  content: "–";
}
.faq details p {
  color: #625d55;
  max-width: 700px;
  margin: 16px 0 4px;
}
.final-cta {
  padding: 130px 4vw;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
}
.final-cta > div {
  max-width: 1060px;
  margin: auto;
}
.final-cta h2 {
  font-size: clamp(3.1rem, 6.1vw, 6.5rem);
}
.final-cta em {
  color: var(--paper);
}
.final-cta .eyebrow {
  color: #3b3020;
}
.stacked-services {
  font: 1.4rem var(--serif);
}
.final-cta strong {
  display: block;
  font-size: 1.1rem;
}
.guarantee-reminder {
  margin: 28px 0;
}
.final-cta small {
  display: block;
  margin-top: 15px;
}
.final-cta.compact {
  padding: 110px 4vw;
}
.final-cta.compact h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}
footer {
  padding: 60px 4vw 34px;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr 0.8fr;
  gap: 34px;
  border-top: 1px solid var(--line);
}
.footer-brand {
  font-size: 2.2rem;
}
footer > p {
  color: var(--muted);
  margin: 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer small {
  grid-column: 1/-1;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #777;
}
.mobile-cta {
  display: none;
}
.page-hero {
  padding: 150px 4vw 90px;
  background: #0d0d0d;
}
.page-hero h1 {
  max-width: 1100px;
  font-size: clamp(4rem, 8vw, 8rem);
}
.page-hero > p:last-child {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-card {
  border: 1px solid var(--line);
  padding: 28px;
}
.portfolio-card.result-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.result-card h2 {
  font-size: 2.2rem;
}
.result-card p {
  color: var(--muted);
}
.about-story {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 40px;
}
.large-copy {
  font: clamp(2rem, 3.8vw, 4rem) / 1.12 var(--serif);
}
.about-story > div > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
}
.word-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 50px 0;
}
.word-stack span {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font: 1.5rem var(--serif);
}
.team-placeholder {
  background: #111;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-grid article {
  aspect-ratio: 4/5;
  border: 1px dashed #ffffff40;
  display: grid;
  place-items: center;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}
.booking-page {
  background: var(--gold);
  color: var(--ink);
}
.booking-layout {
  min-height: calc(100vh - 80px);
  padding: 100px 4vw;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
}
.booking-intro h1 {
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
}
.booking-intro .eyebrow {
  color: #463820;
}
.booking-intro > p {
  max-width: 640px;
}
.booking-intro ul {
  list-style: none;
  padding: 0;
  margin: 34px 0;
}
.booking-intro li {
  padding: 10px 0;
  border-bottom: 1px solid #5b4a2a55;
}
.booking-intro li:before {
  content: "";
  display: inline-block;
  width: 0.78rem;
  height: 0.78rem;
  margin-right: 14px;
  background: var(--gold);
  clip-path: polygon(0 42%, 55% 42%, 55% 0, 100% 50%, 55% 100%, 55% 58%, 0 58%);
  transform: rotate(-45deg);
}
.booking-form {
  align-self: start;
  background: var(--paper);
  padding: 36px;
  box-shadow: 0 28px 80px #5d482b38;
}
.booking-form h2 {
  font-size: 2.7rem;
}
.booking-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  display: block;
  border: 0;
  border-bottom: 1px solid #b8b0a4;
  background: transparent;
  border-radius: 0;
  padding: 11px 0;
  font: 1rem var(--sans);
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-bottom-color: #111;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-note {
  margin: 12px 0 0;
  text-align: center;
  color: #746d64;
  font-size: 0.78rem;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 18px;
  box-shadow: 0 10px 40px #0006;
  transform: translateY(150%);
  transition: 0.3s;
}
.toast.show {
  transform: none;
}
.legal {
  max-width: 850px;
  min-height: 76vh;
  padding: 120px 4vw;
}
.legal h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}
.legal p {
  color: var(--muted);
  font-size: 1.08rem;
}
.legal .text-link {
  display: inline-block;
  margin-top: 30px;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  nav {
    gap: 14px;
  }
  nav a {
    font-size: 0.7rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .service-card:nth-child(2n) {
    border-right: 0;
  }
  .service-card:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .service-card:nth-child(n + 5) {
    border-bottom: 0;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-step {
    min-height: 260px;
    border-bottom: 1px solid var(--line);
  }
  .timeline-step:nth-child(2n) {
    border-right: 0;
  }
  .timeline-step:last-child {
    grid-column: 1/-1;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid article {
    border-bottom: 1px solid var(--line);
  }
  .why-grid article:nth-child(2n) {
    border-right: 0;
  }
  .why-grid article:last-child {
    grid-column: 1/-1;
  }
  .booking-layout {
    gap: 5vw;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 58px;
  }
  .site-header {
    padding: 20px;
  }
  .menu-button {
    display: block;
  }
  nav {
    position: absolute;
    top: 73px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #111;
    padding: 20px;
    border: 1px solid var(--line);
  }
  nav.open {
    display: flex;
  }
  nav a {
    font-size: 0.8rem;
    padding: 8px 0;
  }
  .nav-cta {
    text-align: center;
    margin-top: 7px;
  }
  .section-pad {
    padding: 88px 20px;
  }
  .hero {
    min-height: 920px;
    padding: 120px 20px 50px;
    align-items: flex-end;
  }
  .hero-image {
    object-position: 60% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 4, 4, 0.96), rgba(4, 4, 4, 0.48)),
      linear-gradient(0deg, rgba(4, 4, 4, 0.94), rgba(4, 4, 4, 0.12) 68%);
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(3.45rem, 15vw, 5.5rem);
  }
  .hero-detail {
    font-size: 1rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-index {
    display: none;
  }
  .problem,
  .section-heading,
  .fit,
  .bts-copy,
  .testimonials,
  .faq,
  .about-story,
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .task-cloud,
  .closing-line,
  .section-heading > p,
  .fit .band-statement,
  .bts-copy p {
    grid-column: auto;
  }
  .section-heading {
    margin-bottom: 45px;
  }
  .split-copy h2,
  .section-heading h2,
  .fit h2,
  .faq h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }
  .service-grid,
  .reel-row,
  .proof-grid,
  .type-list,
  .why-grid,
  .portfolio-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(3n),
  .service-card:nth-child(2n),
  .service-card:nth-child(n + 4),
  .service-card:nth-child(n + 5) {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-card:last-child {
    border-bottom: 0;
  }
  .reel-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .big-number {
    font-size: clamp(4rem, 20vw, 7rem);
    overflow-wrap: anywhere;
  }
  .guarantee {
    padding: 88px 20px;
  }
  .guarantee-top,
  .guarantee-bottom {
    display: block;
  }
  .guarantee-bottom {
    padding-top: 30px;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-step,
  .timeline-step:last-child {
    grid-column: auto;
    border-right: 0;
  }
  .proof-main {
    grid-row: auto;
  }
  .type-list article {
    grid-template-columns: 45px 1fr;
  }
  .type-list article p {
    grid-column: 2;
  }
  .why-grid article,
  .why-grid article:last-child {
    grid-column: auto;
    border-right: 0;
  }
  .bts-image img {
    aspect-ratio: 4/5;
    object-position: center;
  }
  .word-stack {
    grid-template-columns: 1fr 1fr;
  }
  .booking-layout {
    padding: 80px 20px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 28px 20px;
  }
  .page-hero {
    padding: 120px 20px 70px;
  }
  .page-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.5rem);
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 50px 20px 28px;
  }
  footer small {
    grid-column: 1/-1;
  }
  .mobile-cta {
    position: fixed;
    z-index: 35;
    display: block;
    left: 12px;
    right: 12px;
    bottom: 10px;
    padding: 13px 16px;
    text-align: center;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px #0009;
  }
  .booking-page .mobile-cta {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.footer-links span {
  color: #777;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.calendar-card {
  align-self: start;
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 28px 80px #5d482b38;
}
.calendar-heading {
  padding: 8px 8px 18px;
}
.calendar-heading span {
  font: 400 2.2rem/1 var(--serif);
}
.calendar-heading p {
  margin: 10px 0 0;
  color: #71695e;
}
.calendar-card iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #fff;
}
.calendar-fallback {
  display: none;
  margin-top: 16px;
}
@media (max-width: 760px) {
  .calendar-card {
    padding: 12px;
  }
  .calendar-card iframe {
    height: 700px;
  }
  .calendar-fallback {
    display: flex;
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    display: block;
    padding: 0 20px 58px;
  }
  .hero-image {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% + 40px);
    height: auto;
    aspect-ratio: 16/9;
    margin: 73px -20px 0;
    object-fit: cover;
    object-position: center;
  }
  .hero-shade {
    inset: 73px 0 auto;
    height: 56.25vw;
    background: linear-gradient(0deg, rgba(4, 4, 4, 0.35), transparent 60%);
  }
  .hero-copy {
    margin-top: 36px;
  }
  .hero h1 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }
}
.services .section-heading > p {
  font-size: 1.12rem;
  line-height: 1.65;
}
.service-card {
  min-height: 365px;
}
.only-job {
  font-weight: 700;
}
.client-feedback {
  background: #111;
}
.feedback-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.feedback-label p {
  margin: 0;
  color: var(--muted);
  font: italic 1.05rem var(--serif);
}
.feedback-block {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(38px, 6vw, 88px);
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(135deg, #171717, #0b0b0b);
}
.feedback-block:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -10% -55% 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 164, 102, 0.18),
    transparent 68%
  );
}
.quote-mark {
  position: absolute;
  top: -95px;
  right: 4%;
  color: rgba(199, 164, 102, 0.14);
  font: 400 24rem/1 var(--serif);
}
.feedback-block h2 {
  max-width: 1000px;
  margin-bottom: 34px;
  font-size: clamp(3.3rem, 7vw, 7.8rem);
}
.feedback-block > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}
.feedback-placeholder {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .feedback-label {
    display: block;
  }
  .feedback-label p {
    margin-top: 12px;
  }
  .feedback-block {
    min-height: 500px;
    padding: 34px 24px;
  }
  .feedback-block h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }
  .quote-mark {
    top: -50px;
    font-size: 15rem;
  }
}
.portfolio-videos {
  grid-template-columns: repeat(3, 1fr);
}
.video-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #0c0c0c;
}
.video-frame {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #050505;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-meta {
  padding: 22px;
}
.video-meta small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.video-meta h3 {
  margin: 0;
  font: 400 1.55rem/1.15 var(--serif);
}
@media (max-width: 760px) {
  .portfolio-videos {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    padding: 0 20px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .portfolio-videos::-webkit-scrollbar {
    display: none;
  }
  .video-card {
    flex: 0 0 min(70vw, 300px);
    width: auto;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
.system-simple-section {
  padding-bottom: 0;
}
.system-simple {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 42px;
  align-items: start;
}
.system-simple > p {
  max-width: 1050px;
  margin: 0;
  font: 400 clamp(2.35rem, 4.5vw, 5rem) / 1.08 var(--serif);
  letter-spacing: -0.04em;
}
.industry-label {
  display: block;
  padding: 18px 20px 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.industry-note {
  max-width: 800px;
  margin: 34px 0 0;
  color: var(--muted);
  font: italic 1.35rem/1.4 var(--serif);
}
@media (max-width: 760px) {
  .system-simple {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .system-simple > p {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .industry-note {
    text-align: center;
  }
}
.specialist-system {
  padding-bottom: 0;
}
.system-intro {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 42px;
  margin-bottom: 58px;
}
.system-intro h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
}
.system-intro > div > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.specialist-role {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent);
}
.specialist-role:nth-child(3n) {
  border-right: 0;
}
.specialist-role:nth-child(n + 4) {
  border-bottom: 0;
}
.specialist-role h3 {
  margin: 0;
  color: var(--muted);
  font: 0.76rem/1.3 var(--sans);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.specialist-role p {
  margin: 48px 0 0;
  color: var(--paper);
  font: 400 clamp(1.7rem, 2.4vw, 2.5rem) / 1.08 var(--serif);
}
@media (max-width: 900px) {
  .specialist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specialist-role:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .specialist-role:nth-child(2n) {
    border-right: 0;
  }
  .specialist-role:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .specialist-role:nth-child(n + 5) {
    border-bottom: 0;
  }
}
@media (max-width: 760px) {
  .system-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .system-intro h2 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }
  .specialist-grid {
    grid-template-columns: 1fr;
  }
  .specialist-role,
  .specialist-role:nth-child(3n),
  .specialist-role:nth-child(2n),
  .specialist-role:nth-child(n + 4),
  .specialist-role:nth-child(n + 5) {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .specialist-role:last-child {
    border-bottom: 0;
  }
}
.problem-bridge {
  padding: 38px 4vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}
.problem-bridge p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font: italic clamp(1.45rem, 2.5vw, 2.5rem) / 1.3 var(--serif);
  color: #d7d2c9;
}
.specialist-role small {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.specialist-role p {
  margin-top: 42px;
  margin-bottom: 0;
}
.work-preview {
  background: #111;
}
.specialist-system {
  background: #0d0d0d;
}
@media (max-width: 760px) {
  .problem-bridge {
    padding: 30px 20px;
  }
  .problem-bridge p {
    text-align: left;
  }
  .specialist-role small {
    font-size: 0.75rem;
  }
}

.fit-flow-card {
  align-self: start;
}
.fit-form {
  min-height: 500px;
  background: var(--paper);
  padding: 38px;
  box-shadow: 0 28px 80px #5d482b38;
  display: flex;
  flex-direction: column;
}
.fit-progress-meta {
  display: flex;
  justify-content: space-between;
  color: #756e64;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fit-progress-track {
  height: 2px;
  margin-top: 13px;
  background: #d6d0c6;
}
.fit-progress-track i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink);
  transition: width 0.3s ease;
}
.fit-step {
  display: none;
  margin: auto 0;
  padding: 54px 0 40px;
}
.fit-step.is-active {
  display: block;
  animation: fit-in 0.3s ease;
}
.fit-step > label,
.fit-step legend {
  display: block;
  font: 400 clamp(2rem, 3.2vw, 3.2rem) / 1.03 var(--serif);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.fit-step > p {
  margin: -10px 0 25px;
  color: #756e64;
}
.fit-step input[type="text"],
.fit-step input[type="url"],
.fit-step textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa297;
  background: transparent;
  border-radius: 0;
  padding: 13px 0;
  font: 1.05rem var(--sans);
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.fit-step input:focus,
.fit-step textarea:focus {
  border-bottom-color: var(--ink);
}
.fit-step fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.fit-choice {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid #c7c0b6;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.fit-choice:hover,
.fit-choice:has(input:checked) {
  border-color: var(--ink);
  background: #e8e3da;
}
.fit-choice input {
  accent-color: var(--ink);
}
.fit-error {
  min-height: 24px;
  margin: 0;
  color: #8a261e;
  font-size: 0.82rem;
}
.fit-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}
.fit-controls .button {
  margin-left: auto;
}
.fit-back {
  border: 0;
  background: transparent;
  padding: 12px 0;
  color: #5f584f;
  text-decoration: underline;
  cursor: pointer;
}
.fit-calendar {
  padding: 22px;
}
.fit-calendar[hidden],
.fit-form[hidden] {
  display: none;
}
.calendar-heading:focus {
  outline: none;
}
@keyframes fit-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 760px) {
  .fit-form {
    min-height: 470px;
    padding: 28px 22px;
  }
  .fit-step {
    padding: 42px 0 30px;
  }
  .fit-step > label,
  .fit-step legend {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
}
.button > span {
  position: relative;
  display: inline-block;
  width: 1.05rem;
  height: 1.05rem;
  overflow: hidden;
  color: inherit;
  font-size: 0;
  line-height: 1;
}
.button > span:before,
.button > span:after {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
}
.button > span:before {
  width: 0.82rem;
  height: 2px;
  right: 0.04rem;
  bottom: 0.17rem;
  transform: rotate(-45deg);
  transform-origin: right center;
}
.button > span:after {
  width: 0.48rem;
  height: 0.48rem;
  right: 0.04rem;
  top: 0.05rem;
  background: transparent;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.booking-intro h1 em {
  color: #2f2619;
}
.booking-page .button > span {
  color: var(--gold);
}

.booking-layout.calendar-active {
  display: block;
  padding: 70px 4vw 100px;
}
.booking-layout.calendar-active .booking-intro {
  display: none;
}
.booking-layout.calendar-active .fit-flow-card {
  max-width: 1080px;
  margin: 0 auto;
}
.booking-layout.calendar-active .fit-calendar {
  padding: 30px;
  border-radius: 2px;
  box-shadow: 0 32px 90px #5d482b4d;
}
.booking-layout.calendar-active .calendar-heading {
  padding: 10px 12px 25px;
  text-align: center;
}
.booking-layout.calendar-active .calendar-heading span {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.booking-layout.calendar-active .calendar-heading p {
  font-size: 1rem;
}
.booking-layout.calendar-active .calendar-card iframe {
  height: 720px;
  border: 1px solid #d6d0c6;
}
@media (max-width: 760px) {
  .booking-layout.calendar-active {
    padding: 38px 12px 70px;
  }
  .booking-layout.calendar-active .fit-calendar {
    padding: 12px;
  }
  .booking-layout.calendar-active .calendar-heading {
    padding: 14px 8px 22px;
    text-align: left;
  }
  .booking-layout.calendar-active .calendar-card iframe {
    height: 760px;
  }
}

.legal-policy {
  max-width: 980px;
  padding-bottom: 140px;
}
.legal-policy > p:first-of-type {
  margin-bottom: 20px;
}
.legal-policy > p:not(.eyebrow):not(.legal-meta):not(.legal-note) {
  max-width: 800px;
  color: #c7c2b9;
}
.legal-policy .legal-meta {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-policy section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.legal-policy section h2 {
  margin-bottom: 20px;
  font: 400 clamp(1.9rem, 3vw, 2.8rem) / 1 var(--serif);
  letter-spacing: -0.035em;
}
.legal-policy section h3 {
  margin: 25px 0 8px;
  color: var(--paper);
  font-size: 1rem;
}
.legal-policy section p {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--muted);
}
.legal-policy section .button {
  margin-top: 12px;
}
.legal-policy .legal-note {
  margin: 40px 0 25px;
  padding: 20px;
  border-left: 2px solid var(--gold);
  color: #c7c2b9;
  font-size: 0.9rem;
}
@media (max-width: 760px) {
  .legal-policy {
    padding: 90px 20px;
  }
  .legal-policy section {
    padding: 30px 0;
  }
  .legal-policy .nav-cta {
    font-size: 0.68rem;
  }
}
