:root {
  --navy: #071a2f;
  --navy-mid: #0d2a4a;
  --navy-soft: #143352;
  --gold: #c5a059;
  --gold-muted: #c2a26f;
  --gold-light: #d4b56a;
  --cta: #004aad;
  --cta-hover: #003d91;
  --ivory: #f8f7f3;
  --white: #ffffff;
  --ink: #111827;
  --ink-muted: #3a4658;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-hover: ease;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --measure: 68ch;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: clip;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: inherit;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.45rem, 6.4vw, 4.75rem);
  margin: 0 0 1.15rem;
}

h2 {
  font-size: clamp(1.9rem, 4.1vw, 3.35rem);
  margin: 0 0 1.05rem;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1rem;
  max-width: var(--measure);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--cta);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
}

.skip-link:focus {
  top: calc(var(--header-h) + 0.5rem);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(7, 26, 47, 0.94);
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ivory);
  line-height: 1.05;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.12rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--cta);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.55rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  min-height: 2.5rem;
}

.header-phone {
  gap: 0.7rem;
  padding: 0.55rem 1.35rem 0.55rem 1.25rem;
}

.header-cta {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .header-phone:hover,
  .header-cta:hover {
    background: var(--cta-hover);
    transition: background-color 160ms var(--ease-hover);
  }
}

.page-merci .header-cta,
.page-id-merci .header-cta,
body.page-template-default.page-merci .header-cta {
  display: none !important;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 160ms var(--ease-hover), color 160ms var(--ease-hover), border-color 160ms var(--ease-hover), transform 140ms var(--ease-out);
}

.btn-primary {
  background: var(--cta);
  color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--cta-hover);
    color: var(--white);
  }
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Hero */

.hero {
  display: grid;
  background: var(--navy);
  color: var(--ivory);
  min-height: 100svh;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 1.6rem) var(--gutter) 2.4rem;
  position: relative;
  z-index: 2;
}

.hero-offer {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1.15rem;
  padding: 0.42rem 1rem;
  background: var(--gold-muted);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  max-width: 36ch;
  border-radius: 999px;
  text-shadow: 0 1px 2px rgba(7, 26, 47, 0.25);
}

.hero h1 {
  color: var(--ivory);
  max-width: 16ch;
  text-shadow: 0 2px 18px rgba(7, 26, 47, 0.35);
}

.hero-lead {
  color: rgba(248, 247, 243, 0.86);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 1.6rem;
}

.hero-lead strong {
  color: var(--ivory);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
}

.hero-visual {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.55) 0%, rgba(7, 26, 47, 0.08) 28%, rgba(7, 26, 47, 0.12) 52%, rgba(7, 26, 47, 0.88) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 28%;
  position: absolute;
  inset: 0;
  animation: photo-drift 22s var(--ease-in-out) alternate infinite;
}

@keyframes photo-drift {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

/* Proofs */

.proofs {
  background: var(--navy-mid);
  color: var(--ivory);
  border-top: 1px solid rgba(200, 164, 93, 0.28);
}

.proofs-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1440px;
  margin: 0 auto;
}

.proof {
  padding: 1.6rem var(--gutter);
  border-bottom: 1px solid rgba(200, 164, 93, 0.22);
}

.proof:last-child {
  border-bottom: 0;
}

.proof-value {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gold);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  max-width: none;
}

.proof-label {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(248, 247, 243, 0.78);
  max-width: 28ch;
}

/* Promise */

.promise {
  background: var(--ivory);
  padding: clamp(3.5rem, 8vw, 7.5rem) var(--gutter);
}

.promise-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: end;
}

.promise h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.promise-lead {
  font-size: 1.2rem;
  color: var(--ink-muted);
  margin-bottom: 1.15rem;
}

.promise-copy p {
  color: var(--ink-muted);
}

.promise-copy strong {
  color: var(--ink);
}

.promise-photo {
  margin: 0;
  position: relative;
}

.promise-photo img {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  object-position: 50% 30%;
}

.promise-photo::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(200, 164, 93, 0.7);
  pointer-events: none;
}

/* Services */

.services {
  background: var(--white);
  padding: 0 0 clamp(3.5rem, 8vw, 7rem);
}

.services-grid {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
}

.services-photo {
  margin: 0;
  height: 100%;
}

.services-photo img {
  width: 100%;
  height: min(58vh, 620px);
  object-fit: cover;
  object-position: 50% 35%;
}

.services-copy {
  padding: 2.6rem var(--gutter) 0;
}

.services h2 {
  max-width: 16ch;
  margin-bottom: 2.2rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.35rem;
  border-left: 1px solid rgba(200, 164, 93, 0.45);
}

.service-item {
  position: relative;
  padding: 0 0 2.1rem 0.35rem;
}

.service-item:last-child {
  padding-bottom: 0;
}

.service-item::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.service-item p {
  color: var(--ink-muted);
  margin: 0;
}

/* Music */

.music {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}

.music-media {
  position: absolute;
  inset: 0;
}

.music-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.music-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.25) 0%, rgba(7, 26, 47, 0.55) 45%, rgba(7, 26, 47, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 26, 47, 0.55) 0%, rgba(7, 26, 47, 0.1) 60%);
}

.music-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4.5rem var(--gutter) 3.2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.music h2 {
  max-width: 16ch;
}

.music-copy p {
  color: rgba(248, 247, 243, 0.86);
  max-width: 46ch;
}

.music-genres {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--gold);
  max-width: 28ch;
  margin: 1.1rem 0 1.2rem;
}

/* Reviews */

.reviews {
  background: var(--ivory);
  padding: clamp(3.5rem, 8vw, 7.5rem) var(--gutter);
}

.reviews-intro {
  max-width: 1240px;
  margin: 0 auto 2.8rem;
}

.reviews-intro p {
  color: var(--ink-muted);
}

.reviews-intro a {
  color: var(--navy);
  text-decoration-color: var(--gold);
  text-underline-offset: 0.18em;
}

.reviews-list {
  display: grid;
  gap: 2.6rem;
  max-width: 1240px;
  margin: 0 auto;
}

.review {
  display: grid;
  gap: 1.25rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(200, 164, 93, 0.4);
}

.review-photo {
  margin: 0;
}

.review-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 30%;
}

.review blockquote {
  margin: 0;
}

.review blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.review cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy);
}

.review cite::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1px;
  background: var(--gold);
  margin-right: 0.7rem;
  vertical-align: middle;
}

/* Pricing */

.pricing {
  display: grid;
  background: var(--navy);
  color: var(--ivory);
}

.pricing-visual {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.pricing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  position: absolute;
  inset: 0;
}

.pricing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 47, 0.15), rgba(7, 26, 47, 0.55));
}

.pricing-panel {
  padding: 3rem var(--gutter) 3.4rem;
}

.pricing-panel p {
  color: rgba(248, 247, 243, 0.82);
}

.pricing-panel strong {
  color: var(--ivory);
}

.pricing-panel .btn {
  margin-top: 1.4rem;
}

/* Devis / form */

.devis {
  background: var(--navy);
  padding: 0 var(--gutter) clamp(3.5rem, 8vw, 5.5rem);
}

.devis-frame {
  max-width: 760px;
  margin: 0 auto;
}

.paperform-slot {
  min-height: 28rem;
  background: var(--white);
  overflow: hidden;
}

/* Footer */

.site-footer {
  background: var(--navy);
  color: rgba(248, 247, 243, 0.72);
  padding: 2.4rem var(--gutter);
  font-size: 0.92rem;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1.1rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 2.65rem;
  padding: 0.55rem 1.45rem 0.55rem 1.3rem;
  background: var(--cta);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
}

.phone-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  display: block;
  margin-block: 0;
}

@media (hover: hover) and (pointer: fine) {
  .footer-phone:hover {
    background: var(--cta-hover);
  }
}

.footer-legal {
  color: var(--gold-light);
  font-size: 0.88rem;
}

.footer-sep {
  margin: 0 0.55rem;
  color: rgba(200, 164, 93, 0.7);
}

/* Legal */

.legal {
  background: var(--ivory);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 4.5rem;
}

.legal-inner {
  max-width: 46rem;
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal h1 {
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 2.4rem 0 0.85rem;
}

.legal h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.4rem 0 0.55rem;
}

.legal p,
.legal li {
  color: var(--ink-muted);
}

.legal a {
  color: var(--navy);
  text-decoration-color: var(--gold);
  text-underline-offset: 0.18em;
}

.legal ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.4rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.legal th,
.legal td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(7, 26, 47, 0.12);
  vertical-align: top;
}

.legal th {
  background: var(--navy);
  color: var(--ivory);
  font-weight: 700;
}

.legal td {
  background: var(--white);
  color: var(--ink);
}

/* Thank-you */

.thanks {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 74, 173, 0.35), transparent 58%),
    radial-gradient(ellipse 55% 45% at 85% 80%, rgba(197, 160, 89, 0.16), transparent 50%),
    linear-gradient(168deg, #061525 0%, var(--navy) 42%, var(--navy-mid) 100%);
  color: var(--ivory);
  padding: calc(var(--header-h) + 3.5rem) var(--gutter) 4.5rem;
}

.thanks-inner {
  width: min(100%, 34rem);
  margin: 0 auto;
  text-align: center;
}

.thanks-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 1.75rem;
  line-height: 1.05;
}

.thanks-brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.thanks-brand-sub {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.thanks-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 999px;
}

.thanks h1 {
  color: var(--ivory);
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
}

.thanks-lead {
  margin: 0 auto 2.25rem;
  color: rgba(248, 247, 243, 0.84);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 36ch;
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
}

.thanks-actions .btn {
  width: min(100%, 18.5rem);
  margin: 0 auto;
  gap: 0.7rem;
  padding-inline: 1.6rem;
}

.thanks-actions .btn-ghost {
  color: var(--ivory);
  border-color: rgba(248, 247, 243, 0.55);
  background: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .thanks-actions .btn-ghost:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
  }
}

.page-merci .site-footer {
  text-align: center;
}

.page-merci .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-merci .footer-inner > p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-merci .footer-actions {
  justify-content: center;
}

.page-merci .sticky-cta,
.page-id-merci .sticky-cta {
  display: none !important;
}

/* Sticky CTA */

.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  background: var(--cta);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.32);
}

.sticky-cta.is-visible {
  display: flex;
}

/* Reveals */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

@media (max-width: 979px) {
  .hero {
    display: grid;
    grid-template-areas: "stack";
    min-height: 100svh;
  }

  .hero-copy,
  .hero-visual {
    grid-area: stack;
  }

  .hero-visual {
    min-height: 100svh;
  }

  .hero-copy {
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 18%, rgba(7, 26, 47, 0.42) 48%, rgba(7, 26, 47, 0.92) 78%, var(--navy) 100%);
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 2.1rem;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(7, 26, 47, 0.5) 0%, transparent 32%);
  }

  .services-photo {
    display: none;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 7.6vw, 2.2rem);
    line-height: 1.15;
  }

  .hero-offer {
    font-size: 0.72rem;
    padding: 0.38rem 0.9rem;
    max-width: 100%;
  }

  .hero-lead {
    max-width: 34ch;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 22rem;
  }
}

/* Tablet */

@media (min-width: 700px) {
  .header-cta {
    display: inline-flex;
  }

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

  .proof:nth-child(1),
  .proof:nth-child(2) {
    border-bottom: 1px solid rgba(200, 164, 93, 0.22);
  }

  .proof:nth-child(odd) {
    border-right: 1px solid rgba(200, 164, 93, 0.22);
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

  .review {
    grid-template-columns: 220px 1fr;
    gap: 1.8rem;
    align-items: center;
  }

  .review-photo img {
    height: 200px;
  }
}

/* Desktop */

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(22rem, 0.92fr) 1.18fr;
    min-height: 100svh;
  }

  .hero-copy {
    justify-content: center;
    padding: calc(var(--header-h) + 1rem) 4.5rem 3rem 4.5rem;
    background: none;
  }

  .hero-visual {
    min-height: 100%;
  }

  .hero-visual::after {
    background: linear-gradient(90deg, rgba(7, 26, 47, 0.55) 0%, rgba(7, 26, 47, 0.08) 28%, rgba(7, 26, 47, 0) 55%);
  }

  .hero-visual img {
    object-position: 52% 22%;
  }

  .proofs-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof {
    padding: 2.1rem 1.6rem 2.15rem;
    border-bottom: 0;
    border-right: 1px solid rgba(200, 164, 93, 0.22);
  }

  .proof:nth-child(odd) {
    border-right: 1px solid rgba(200, 164, 93, 0.22);
  }

  .proof:first-child {
    padding-left: var(--gutter);
  }

  .proof:last-child {
    border-right: 0;
    padding-right: var(--gutter);
  }

  .promise-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
  }

  .promise-photo img {
    height: min(82vh, 820px);
  }

  .services-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    min-height: 100svh;
  }

  .services-photo img {
    height: 100%;
    min-height: 100%;
  }

  .services-copy {
    padding: 5.5rem 4.5rem 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .music {
    min-height: 88svh;
  }

  .music-inner {
    padding: 6rem var(--gutter) 4.5rem;
  }

  .music-genres {
    max-width: 36ch;
  }

  .review {
    grid-template-columns: 280px 1fr;
    gap: 2.6rem;
  }

  .review-photo img {
    height: 240px;
  }

  .pricing {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 78svh;
  }

  .pricing-visual {
    min-height: 100%;
  }

  .pricing-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-copy {
    padding-left: 6rem;
  }

  .review:nth-child(even) {
    direction: rtl;
  }

  .review:nth-child(even) blockquote {
    direction: ltr;
  }
}

/* Sticky only on compact screens */

@media (max-width: 979px) {
  body:has(.sticky-cta.is-visible) {
    padding-bottom: 4.6rem;
  }
}

@media (min-width: 980px) {
  .sticky-cta,
  .sticky-cta.is-visible {
    display: none;
  }
}

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

  .hero-visual img,
  .js .reveal,
  .js .reveal.is-in,
  .btn,
  .btn-primary {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}
