/* DM Sans and Oswald are self-hosted under the SIL Open Font License. */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/oswald-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #120c0d;
  --black-soft: #eee4de;
  --panel: #fffaf7;
  --paper: #f6efe9;
  --white: #f6efe9;
  --pink: #d52b3f;
  --pink-light: #f3afc2;
  --pink-dark: #d52b3f;
  --grey: #a59b9d;
  --line: rgba(246, 239, 233, 0.13);
  --line-dark: rgba(18, 12, 13, 0.22);
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --gutter: clamp(1.2rem, 4.4vw, 4.8rem);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e9dcd6;
  color: var(--black);
  font-family: var(--sans);
  line-height: 1.5;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
  pointer-events: all;
  animation: loader-exit 700ms 2600ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(18, 12, 13, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 12, 13, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 100%, clamp(120px, 12.5vw, 240px) 100%, auto;
}

.site-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink-light);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: loader-pink-sweep 560ms 1180ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.site-loader.is-complete {
  animation: loader-exit 700ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.loader-logo {
  width: min(420px, 74vw);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--display);
  line-height: 0.82;
  text-transform: uppercase;
}

.loader-logo i {
  width: 34px;
  height: 3px;
  margin-bottom: 0.7rem;
  background: var(--pink);
  transform: scaleX(0);
  animation: loader-line-in 420ms 120ms cubic-bezier(0.18, 0.78, 0.2, 1) forwards;
}

.loader-logo small {
  margin-bottom: 0.42rem;
  color: var(--pink);
  font-size: clamp(0.72rem, 1.4vw, 1rem);
  letter-spacing: 0.46em;
  opacity: 0;
  transform: translateY(12px);
  animation: loader-word-in 520ms 280ms cubic-bezier(0.18, 0.78, 0.2, 1) forwards;
}

.loader-logo strong {
  font-size: clamp(5.8rem, 16vw, 12rem);
  letter-spacing: -0.055em;
  opacity: 0;
  transform: translateY(34px);
  animation: loader-word-in 680ms 380ms cubic-bezier(0.18, 0.78, 0.2, 1) forwards;
}

.loader-logo span {
  width: 100%;
  height: 1px;
  margin-top: 1.1rem;
  background: var(--black);
  transform: scaleX(0);
  animation: loader-line-in 640ms 720ms cubic-bezier(0.18, 0.78, 0.2, 1) forwards;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--pink);
  color: var(--black);
}

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

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

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

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

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

.page-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  overflow: clip;
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.26);
}

.grid-surface {
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: min(12.5vw, 180px) min(12.5vw, 180px);
}

.grid-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(246, 239, 233, 0.7);
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--black);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  min-height: 58px;
  padding: 0 clamp(1.2rem, 3vw, 3.4rem);
  width: min(1480px, 100%);
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 0;
  background: transparent;
  color: var(--black);
  -webkit-backdrop-filter: blur(0) saturate(1);
  backdrop-filter: blur(0) saturate(1);
  transform: translateX(-50%);
  transition: min-height 260ms ease, box-shadow 260ms ease, background 320ms ease, backdrop-filter 320ms ease;
}

.site-header.is-scrolled {
  min-height: 52px;
  background: rgba(243, 175, 194, 0.5);
  box-shadow: none;
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  backdrop-filter: blur(22px) saturate(1.08);
}

.brand {
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  line-height: 0.9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 360ms ease, transform 360ms cubic-bezier(0.18, 0.78, 0.2, 1), visibility 360ms ease;
}

.site-header.is-scrolled .brand {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.brand::before {
  content: "";
  width: 20px;
  height: 2px;
  margin-bottom: 0.28rem;
  background: var(--pink);
}

.brand small,
.eyebrow,
.hero-meta,
.site-nav,
.header-cta,
.hero-card figcaption,
.price-card-top,
.contact-form > label,
.contact-form > .city-field > label,
.site-footer nav,
.site-footer small {
  font-family: var(--display);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand small {
  width: 100%;
  margin-bottom: 0.13rem;
  color: var(--pink);
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-align: center;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.35rem);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}

.site-nav a {
  position: relative;
  color: rgba(18, 12, 13, 0.72);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.55rem;
  height: 2px;
  background: var(--pink);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding-left: 0.95rem;
  gap: 0.9rem;
  border: 1px solid var(--pink);
  background: var(--pink-light);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 600;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(213, 43, 63, 0.2);
  transform: translateY(-2px);
}

.header-cta span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--pink);
  background: var(--pink);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease;
}

.header-cta:hover span,
.header-cta:focus-visible span {
  background: var(--black);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: min(960px, 100svh);
  padding: clamp(4.5rem, 8vw, 7rem) var(--gutter) clamp(3.5rem, 6vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  width: min(55vw, 760px);
  height: min(55vw, 760px);
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(242, 163, 203, 0.28);
  box-shadow:
    0 0 0 7vw rgba(242, 163, 203, 0.025),
    0 0 0 14vw rgba(242, 163, 203, 0.018);
  pointer-events: none;
  animation: halo-breathe 7s ease-in-out infinite;
}

.hero-meta {
  position: absolute;
  top: 5.6rem;
  display: flex;
  flex-direction: column;
  color: rgba(18, 12, 13, 0.54);
  animation: rise-in 620ms 2800ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.hero-meta-left {
  left: var(--gutter);
}

.hero-meta-right {
  right: var(--gutter);
  text-align: right;
}

.hero-copy {
  width: min(1160px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 1.3rem;
  color: var(--black);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(4.7rem, 12.1vw, 11.2rem);
}

.hero-statement {
  font-size: clamp(4.2rem, 8.8vw, 8.6rem);
  line-height: 0.88;
}

.hero-statement .hero-preface {
  margin-bottom: 0.08em;
  color: rgba(18, 12, 13, 0.7);
  font-size: 0.72em;
  letter-spacing: -0.035em;
  animation: hero-preface-in 620ms 1850ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.hero-statement .hero-artist {
  color: var(--pink);
  font-size: 1.03em;
  letter-spacing: -0.065em;
  animation: hero-artist-in 900ms 2020ms cubic-bezier(0.16, 0.86, 0.22, 1) both;
}

.hero-statement .hero-notice {
  width: max-content;
  max-width: 100%;
  margin: 0.06em auto 0;
  padding: 0.02em 0.1em 0.08em;
  position: relative;
  z-index: 0;
  isolation: isolate;
  color: var(--black);
  font-size: 1.1em;
  letter-spacing: -0.065em;
  animation: hero-notice-in 760ms 2330ms cubic-bezier(0.16, 0.86, 0.22, 1) both;
}

.hero-statement .hero-notice::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0.1em -0.02em 0.03em;
  background: var(--pink-light);
  clip-path: polygon(1% 8%, 100% 0, 98% 94%, 0 100%);
  transform: rotate(-0.8deg);
  transform-origin: left center;
  animation: hero-highlight-in 660ms 2560ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.hero-statement .hero-notice > span {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-statement > span {
  display: block;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8.2vw, 8.5rem);
}

h2 em {
  color: var(--pink);
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(18, 12, 13, 0.65);
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  animation: rise-in 700ms 2840ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.hero .eyebrow {
  animation: rise-in 620ms 1700ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.hero-cards {
  width: min(980px, 95%);
  min-height: 210px;
  margin: clamp(2.6rem, 5vw, 4.2rem) auto 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: clamp(135px, 15vw, 210px);
  margin: 0 -0.7rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  transition: transform 220ms ease, z-index 220ms ease;
  animation: card-develop 800ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.hero-card-one { animation-delay: 2960ms; }
.hero-card-two { animation-delay: 3060ms; }
.hero-card-three { animation-delay: 3160ms; }
.hero-card-four { animation-delay: 3260ms; }

.hero-card:hover {
  z-index: 4;
  transform: translateY(-12px) rotate(0deg);
}

.hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
  transition: transform 500ms cubic-bezier(0.18, 0.78, 0.2, 1), filter 500ms ease;
}

.hero-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}

.hero-card figcaption {
  min-height: 2.45rem;
  padding: 0.48rem 0.25rem 0.15rem;
  display: flex;
  align-items: center;
  color: #3b393b;
  line-height: 1.3;
  letter-spacing: 0.13em;
}

.hero-card-one {
  transform: translateY(18px) rotate(-10deg);
}

.hero-card-two {
  z-index: 2;
  transform: translateY(-7px) rotate(5deg);
}

.hero-card-three {
  z-index: 2;
  transform: translateY(10px) rotate(-5deg);
}

.hero-card-four {
  transform: translateY(-12px) rotate(9deg);
}

.hero-orbit {
  width: clamp(112px, 11vw, 146px);
  aspect-ratio: 1;
  z-index: 5;
  margin: 0 0.7rem;
  padding: 1rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--pink);
  background: var(--black);
  color: var(--pink-light);
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(4deg);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  animation: hero-orbit-in 760ms 2800ms cubic-bezier(0.18, 0.78, 0.2, 1) backwards;
}

.hero-orbit:hover,
.hero-orbit:focus-visible {
  background: var(--pink-light);
  color: var(--black);
  transform: rotate(0);
}

.hero-orbit b {
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  animation: rise-in 700ms 3440ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.button {
  min-height: 46px;
  width: fit-content;
  padding: 0.78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(18, 12, 13, 0.12);
}

.button-pink {
  background: var(--pink-light);
  color: var(--black);
}

.button-ghost {
  border-color: rgba(18, 12, 13, 0.45);
  background: transparent;
  color: var(--black);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

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

.ticker {
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--pink-light);
  color: var(--black);
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.friction,
.process,
.services,
.about,
.artist-fit,
.faq {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
}

.process {
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.services {
  padding-top: clamp(3.5rem, 5vw, 5rem);
}

.friction {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3.5rem, 5vw, 5.5rem);
}

.friction .section-heading-centered {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.friction > *,
.process > *,
.services > *,
.about > *,
.artist-fit > *,
.faq > * {
  position: relative;
  z-index: 2;
}

.section-heading-centered {
  max-width: 920px;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.section-heading-centered > p:last-child {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(18, 12, 13, 0.58);
  text-wrap: balance;
}

.friction-scroll-track {
  height: calc(430px + 175vh);
  min-height: 1100px;
  margin-top: 0;
}

.friction-explorer {
  width: min(1120px, 100%);
  margin: 0 auto var(--friction-end-gap, 4rem);
  position: sticky;
  top: var(--friction-sticky-top, 5rem);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line-dark);
  background: rgba(255, 250, 247, 0.72);
  box-shadow: 0 30px 90px rgba(81, 34, 47, 0.08);
}

.friction-visual {
  min-height: 430px;
  position: relative;
  grid-row: 1 / 3;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background: var(--pink-light);
  color: var(--black);
  transition: background 720ms cubic-bezier(0.18, 0.78, 0.2, 1), color 620ms ease;
}

.friction-explorer[data-state="pricing"] .friction-visual {
  background: var(--black);
  color: var(--pink-light);
}

.friction-explorer[data-state="booking"] .friction-visual {
  background: var(--pink);
  color: var(--paper);
}

.friction-visual > span,
.friction-kicker,
.friction-tabs button {
  font-family: var(--display);
  text-transform: uppercase;
}

.friction-visual > span {
  position: absolute;
  top: 1.6rem;
  left: 1.7rem;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
}

.friction-instruction {
  margin: 0;
  position: absolute;
  left: 1.7rem;
  bottom: 1.5rem;
  z-index: 3;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.friction-explorer[data-explored="true"] .friction-instruction {
  animation: friction-mode-in 480ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.friction-visual > strong {
  position: absolute;
  right: -0.03em;
  bottom: -0.13em;
  font-family: var(--display);
  font-size: clamp(11rem, 25vw, 22rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.78;
  opacity: 0.12;
  transition: opacity 260ms ease, transform 440ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.friction-mark {
  width: min(250px, 55%);
  aspect-ratio: 1;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 240ms ease, transform 520ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.friction-mark i {
  width: 72%;
  height: 44%;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 760ms cubic-bezier(0.18, 0.78, 0.2, 1),
    height 760ms cubic-bezier(0.18, 0.78, 0.2, 1),
    border-radius 680ms ease,
    background 540ms ease,
    opacity 480ms ease,
    transform 760ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.friction-explorer[data-state="profile"] .friction-mark i:nth-child(1) { transform: translate(-50%, -50%) rotate(30deg); }
.friction-explorer[data-state="profile"] .friction-mark i:nth-child(2) { transform: translate(-50%, -50%) rotate(-30deg); }
.friction-explorer[data-state="profile"] .friction-mark i:nth-child(3) { width: 34%; height: 34%; transform: translate(-50%, -50%) rotate(45deg); }
.friction-explorer[data-state="profile"] .friction-mark i:nth-child(4) { width: 12%; height: 12%; background: currentColor; opacity: 0.9; }

.friction-explorer[data-state="pricing"] .friction-mark i {
  width: 9%;
  border-radius: 0;
}

.friction-explorer[data-state="pricing"] .friction-mark i:nth-child(1) { height: 28%; transform: translate(-210%, 34%); }
.friction-explorer[data-state="pricing"] .friction-mark i:nth-child(2) { height: 58%; transform: translate(-85%, -10%); }
.friction-explorer[data-state="pricing"] .friction-mark i:nth-child(3) { height: 42%; transform: translate(40%, 9%); }
.friction-explorer[data-state="pricing"] .friction-mark i:nth-child(4) { height: 78%; transform: translate(165%, -32%); background: currentColor; }

.friction-explorer[data-state="booking"] .friction-mark i {
  width: 42%;
  height: 42%;
  border-radius: 0;
}

.friction-explorer[data-state="booking"] .friction-mark i:nth-child(1) { transform: translate(-94%, -94%); }
.friction-explorer[data-state="booking"] .friction-mark i:nth-child(2) { transform: translate(-6%, -94%); }
.friction-explorer[data-state="booking"] .friction-mark i:nth-child(3) { transform: translate(-94%, -6%); }
.friction-explorer[data-state="booking"] .friction-mark i:nth-child(4) { transform: translate(-6%, -6%); background: currentColor; }

.friction-detail {
  min-height: 300px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 220ms ease, transform 360ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.friction-explorer.is-switching .friction-detail {
  opacity: 0;
  transform: translateY(-12px);
}

.friction-explorer.is-switching .friction-mark {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}

.friction-explorer.is-switching .friction-visual > strong {
  opacity: 0;
  transform: translateY(16px);
}

.friction-kicker {
  margin: 0 0 1rem;
  color: var(--pink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.friction-detail h3 {
  max-width: 560px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 6.8vw, 6.8rem);
}

.friction-detail > p:last-child {
  max-width: 470px;
  margin: 0;
  color: rgba(18, 12, 13, 0.62);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.friction-detail.is-changing > * {
  animation: friction-copy-in 520ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.friction-detail.is-changing > *:nth-child(2) { animation-delay: 50ms; }
.friction-detail.is-changing > *:nth-child(3) { animation-delay: 100ms; }

.friction-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.friction-tabs button {
  min-height: 80px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.22rem;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: background 360ms ease, color 300ms ease, padding 360ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.friction-explorer[data-explored="false"] .friction-tabs button {
  cursor: s-resize;
}

.friction-tabs button:last-child {
  border-right: 0;
}

.friction-explorer[data-explored="true"] .friction-tabs button:hover,
.friction-tabs button:focus-visible {
  padding-left: 1.35rem;
  background: rgba(243, 175, 194, 0.28);
  outline: 0;
}

.friction-tabs button[aria-selected="true"] {
  background: var(--pink-light);
}

.friction-tabs span {
  color: var(--pink);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.friction-tabs strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.friction-cta {
  display: flex;
  width: min(360px, 100%);
  min-height: 64px;
  margin: 0 auto;
  padding: 0.65rem 0.65rem 0.65rem 1.35rem;
  justify-content: space-between;
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
  font-size: 0.78rem;
  box-shadow: 0 18px 45px rgba(18, 12, 13, 0.16);
}

.drawn-arrow-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--paper);
  transition: background 240ms ease, color 240ms ease, transform 300ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.drawn-arrow {
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.drawn-arrow::before {
  content: "";
  width: 17px;
  height: 1.5px;
  position: absolute;
  left: 0.5px;
  top: 8px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.drawn-arrow::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  right: 1px;
  top: 1px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.drawn-arrow-back {
  transform: rotate(180deg);
}

.friction-cta:hover,
.friction-cta:focus-visible {
  background: var(--pink);
  color: var(--paper);
  box-shadow: 0 24px 60px rgba(213, 43, 63, 0.24);
}

.friction-cta:hover .drawn-arrow-box,
.friction-cta:focus-visible .drawn-arrow-box {
  background: var(--paper);
  color: var(--pink);
  transform: rotate(45deg);
}

.system-statement {
  padding: clamp(5rem, 9vw, 8.5rem) var(--gutter) clamp(4rem, 7vw, 7rem);
  background: var(--pink-light);
  color: var(--black);
}

.system-intro,
.system-outcomes {
  width: min(1240px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.system-intro {
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.system-intro .eyebrow {
  margin-bottom: 1.1rem;
}

.system-intro h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 8rem);
}

.system-intro h2 em {
  color: var(--pink);
}

.system-intro-copy {
  margin: 0 0 0.35rem;
  padding-left: clamp(1.5rem, 3vw, 2.7rem);
  border-left: 1px solid rgba(18, 12, 13, 0.52);
  color: rgba(18, 12, 13, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.system-intro-copy strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--black);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement-row {
  border-top: 1px solid rgba(18, 12, 13, 0.34);
  perspective: 1600px;
}

.statement-row:last-child {
  border-bottom: 1px solid rgba(18, 12, 13, 0.34);
}

.statement-card {
  width: 100%;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.statement-card:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 4px;
}

.statement-card-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.statement-row.is-flipped .statement-card-inner {
  transform: rotateX(180deg);
}

.statement-face {
  min-height: clamp(150px, 13vw, 190px);
  padding: 0 clamp(0.75rem, 1.5vw, 1.3rem);
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: 64px minmax(0, 1fr) 150px 54px;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
}

.statement-front {
  background: transparent;
}

.statement-back {
  grid-template-columns: 180px minmax(0, 1fr) 90px 54px;
  background: var(--black);
  color: var(--paper);
  transform: rotateX(180deg);
}

.statement-row:not(.is-flipped):hover .statement-front {
  background: rgba(255, 255, 255, 0.2);
}

.statement-number,
.statement-content small,
.statement-reveal,
.statement-back-meta,
.statement-back-note {
  font-family: var(--display);
  text-transform: uppercase;
}

.statement-number {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.statement-content small {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(18, 12, 13, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  transition: color 300ms ease;
}

.statement-content strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.statement-reveal,
.statement-back-meta,
.statement-back-note {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.statement-reveal {
  color: rgba(18, 12, 13, 0.58);
}

.statement-back-meta,
.statement-back-note {
  color: var(--pink-light);
}

.statement-back-copy {
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.1vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.statement-arrow {
  width: 50px;
  height: 50px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  font-style: normal;
  transition: border-color 300ms ease, color 300ms ease, transform 400ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.statement-arrow::before {
  content: "";
  width: 17px;
  height: 1.5px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.statement-arrow::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: calc(50% + 1px);
  top: calc(50% - 8px);
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.statement-back .statement-arrow {
  border-color: var(--pink-light);
  color: var(--pink-light);
  transform: rotate(180deg);
}

.statement-row:not(.is-flipped):hover .statement-arrow {
  transform: rotate(45deg);
}

.process-list {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-list > li {
  --sequence-delay: 0ms;
  min-width: 0;
  min-height: 670px;
  padding: clamp(1.15rem, 2vw, 1.6rem);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  background: rgba(255, 250, 247, 0.72);
  transition: background 300ms ease, box-shadow 300ms ease, transform 300ms cubic-bezier(0.18, 0.78, 0.2, 1);
}

.process-list > li:nth-child(2) { --sequence-delay: 950ms; }
.process-list > li:nth-child(3) { --sequence-delay: 1900ms; }

.process-list > li:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(81, 34, 47, 0.12);
  transform: translateY(-6px);
}

.process-list > li + li {
  border-left: 0;
}

.process-step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  text-transform: uppercase;
}

.process-step-meta b {
  color: var(--pink);
  font-size: 3.6rem;
  line-height: 1;
}

.process-step-meta span,
.process-copy > small {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.process-step-meta span {
  color: rgba(18, 12, 13, 0.52);
}

.process-mockup {
  min-height: 250px;
  margin: 1.4rem 0 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--black);
}

.mockup-chrome {
  min-height: 38px;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mockup-chrome > div {
  display: flex;
  gap: 0.25rem;
}

.mockup-chrome i {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.mockup-message {
  background: var(--black);
  color: var(--paper);
}

.mockup-message-body {
  padding: 1.4rem 1.1rem 1rem;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 0.8rem;
}

.mockup-message-body > b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.mockup-message-body small {
  color: var(--pink-light);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mockup-message-body p {
  margin: 0.45rem 0 0;
  padding: 0.85rem;
  background: rgba(246, 239, 233, 0.1);
  color: var(--paper);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mockup-sent {
  margin: 0 1.1rem;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(246, 239, 233, 0.18);
  color: rgba(246, 239, 233, 0.62);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mockup-sent > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-light);
}

.mockup-sent b {
  margin-left: auto;
  color: var(--pink-light);
  font-size: 1rem;
}

.mockup-diagnostic {
  background: var(--pink-light);
  color: var(--black);
}

.mockup-scan {
  padding: 1.2rem 1rem 0.8rem;
}

.mockup-scan-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: 62px 1fr 56px;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(18, 12, 13, 0.2);
  font-family: var(--display);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mockup-scan-row > i {
  height: 5px;
  overflow: hidden;
  background: rgba(18, 12, 13, 0.14);
}

.mockup-scan-row > i b {
  width: 78%;
  height: 100%;
  display: block;
  background: var(--black);
}

.mockup-scan-row:nth-child(2) > i b { width: 34%; background: var(--pink); }
.mockup-scan-row:nth-child(3) > i b { width: 62%; }
.mockup-scan-row:nth-child(4) > i b { width: 48%; background: rgba(18, 12, 13, 0.52); }

.mockup-scan-row em {
  color: rgba(18, 12, 13, 0.5);
  font-style: normal;
  text-align: right;
}

.mockup-scan-row.is-leak em {
  color: var(--pink);
}

.mockup-diagnostic-note {
  margin: 0.5rem 1rem 0;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--black);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mockup-diagnostic-note span {
  color: var(--pink-light);
}

.mockup-plan {
  background: var(--panel);
  color: var(--black);
}

.mockup-plan-head {
  padding: 1.2rem 1rem 0.9rem;
}

.mockup-plan-head small {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--pink);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mockup-plan-head strong {
  display: block;
  max-width: 260px;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.mockup-plan-line {
  min-height: 38px;
  margin: 0 1rem;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 0.55rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mockup-plan-line > span {
  color: var(--pink);
}

.mockup-plan-line > em {
  color: rgba(18, 12, 13, 0.48);
  font-style: normal;
}

.mockup-plan-stamp {
  width: fit-content;
  margin: 0.65rem 1rem 0 auto;
  padding: 0.5rem 0.65rem;
  background: var(--pink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.process-copy {
  margin-top: auto;
  padding: 0 0.4rem 0.4rem;
}

.process-copy > small {
  color: var(--pink);
}

.process-copy h3 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.5rem, 3.6vw, 3.8rem);
}

.process-copy p {
  margin: 0;
  color: rgba(18, 12, 13, 0.58);
  font-size: 0.92rem;
}

.process-handoff {
  width: min(1240px, 100%);
  min-height: 82px;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  padding: 0.8rem 0.8rem 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--black);
  color: var(--paper);
}

.process-handoff p {
  margin: 0;
  color: rgba(246, 239, 233, 0.66);
  font-size: 0.92rem;
}

.process-handoff p span {
  color: var(--paper);
  font-weight: 600;
}

.process-handoff .button {
  flex: 0 0 auto;
  justify-content: space-between;
  gap: 1.2rem;
  background: var(--pink-light);
  color: var(--black);
}

.process-handoff .button b {
  color: var(--pink);
  font-size: 1rem;
}

.process-list > li.reveal .mockup-message-body > b,
.process-list > li.reveal .mockup-message-body small,
.process-list > li.reveal .mockup-message-body p,
.process-list > li.reveal .mockup-sent,
.process-list > li.reveal .mockup-scan-row,
.process-list > li.reveal .mockup-diagnostic-note,
.process-list > li.reveal .mockup-plan-head small,
.process-list > li.reveal .mockup-plan-head strong,
.process-list > li.reveal .mockup-plan-line,
.process-list > li.reveal .mockup-plan-stamp {
  opacity: 0;
}

.process-list > li.reveal .mockup-scan-row > i b {
  transform: scaleX(0);
  transform-origin: left center;
}

.process-list > li.reveal.is-visible .mockup-message-body > b {
  animation: process-pop-in 420ms calc(var(--sequence-delay) + 160ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-message-body small {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 340ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-message-body p {
  animation: process-message-in 620ms calc(var(--sequence-delay) + 520ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-sent {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 1020ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(1) {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 120ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(2) {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 350ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(3) {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 580ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(4) {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 810ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(1) > i b {
  animation: process-bar-grow 620ms calc(var(--sequence-delay) + 250ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(2) > i b {
  animation: process-bar-grow 620ms calc(var(--sequence-delay) + 480ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(3) > i b {
  animation: process-bar-grow 620ms calc(var(--sequence-delay) + 710ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-scan-row:nth-child(4) > i b {
  animation: process-bar-grow 620ms calc(var(--sequence-delay) + 940ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-diagnostic-note {
  animation: process-leak-found 580ms calc(var(--sequence-delay) + 1110ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-plan-head small {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 120ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-plan-head strong {
  animation: process-message-in 560ms calc(var(--sequence-delay) + 300ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-plan-line:nth-child(3) {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 620ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-plan-line:nth-child(4) {
  animation: process-slide-in 420ms calc(var(--sequence-delay) + 820ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.process-list > li.reveal.is-visible .mockup-plan-stamp {
  animation: process-stamp-in 520ms calc(var(--sequence-delay) + 1080ms) cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.action {
  min-height: 850px;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.action-copy > p:last-child {
  max-width: 460px;
  color: rgba(255, 250, 245, 0.57);
}

.action .eyebrow {
  color: var(--pink-light);
}

.action-collage {
  min-height: 620px;
  position: relative;
}

.action-image {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.action-image-one {
  width: 46%;
  height: 320px;
  left: 2%;
  top: 4%;
  transform: rotate(-8deg);
  animation: float-one 7s ease-in-out infinite;
}

.action-image-two {
  width: 50%;
  height: 380px;
  right: 3%;
  top: 13%;
  z-index: 2;
  transform: rotate(7deg);
  animation: float-two 8s 700ms ease-in-out infinite;
}

.action-image-three {
  width: 54%;
  height: 270px;
  left: 18%;
  bottom: 3%;
  z-index: 3;
  transform: rotate(-2deg);
  animation: float-three 6.5s 250ms ease-in-out infinite;
}

.collage-link {
  width: 140px;
  height: 140px;
  padding: 1rem;
  position: absolute;
  right: 4%;
  bottom: 1%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink);
  background: var(--pink-light);
  color: var(--black);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.collage-link span {
  margin-top: 0.5rem;
  font-size: 1.7rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.facts article {
  min-height: 270px;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.facts article + article {
  border-left: 1px solid var(--line);
}

.facts strong {
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
}

.facts span {
  margin: 0.8rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 250, 245, 0.48);
  font-size: 0.85rem;
}

.offer-journey {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.price-card {
  min-width: 0;
  min-height: 800px;
  padding: clamp(1.5rem, 2.6vw, 2.6rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  background: var(--panel);
  color: var(--black);
  transition: transform 360ms cubic-bezier(0.18, 0.78, 0.2, 1), box-shadow 360ms ease;
}

.price-card:hover {
  z-index: 2;
  box-shadow: 0 32px 90px rgba(81, 34, 47, 0.13);
  transform: translateY(-8px);
}

.price-card + .price-card {
  border-left: 0;
}

.price-card-featured {
  border-color: var(--pink);
  background: var(--pink-light);
  color: var(--black);
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--black);
}

.price-card-featured .price-card-top {
  color: var(--black);
}

.price-card-top b {
  font-size: 1.3rem;
}

.price-card h3 {
  margin: 4rem 0 1.5rem;
  font-size: clamp(3.2rem, 4.6vw, 5.1rem);
}

.price-card > p {
  max-width: 520px;
  color: rgba(18, 12, 13, 0.6);
}

.price-card-featured > p {
  color: rgba(18, 12, 13, 0.68);
}

.price-card ul {
  margin: 2rem 0 3rem;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.price-card-featured ul {
  border-color: rgba(18, 12, 13, 0.24);
}

.price-card li {
  padding: 0.9rem 0 0.9rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.91rem;
}

.price-card-featured li {
  border-color: rgba(18, 12, 13, 0.24);
}

.price-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.price-card-featured li::before {
  color: var(--pink);
}

.price-card-premium {
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
}

.price-card-premium .price-card-top,
.price-card-premium h3 {
  color: var(--paper);
}

.price-card-premium > p {
  color: rgba(246, 239, 233, 0.64);
}

.price-card-premium ul,
.price-card-premium li {
  border-color: rgba(246, 239, 233, 0.18);
}

.price-card-premium li::before {
  color: var(--pink-light);
}

.price-card-premium .price-card-bottom > div span {
  color: rgba(246, 239, 233, 0.55);
}

.price-card-bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}

.price-card-bottom .button {
  width: 100%;
}

.price-card-bottom > div {
  display: flex;
  flex-direction: column;
}

.price-card-bottom > div strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}

.price-card-bottom > div span {
  margin-top: 0.5rem;
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card-wide {
  min-height: auto;
  padding: clamp(1.6rem, 3vw, 3rem);
}

.price-card-wide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.98fr) minmax(230px, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.price-card-wide h3 {
  margin: clamp(3rem, 6vw, 5.5rem) 0 1.4rem;
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
}

.price-card-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(18, 12, 13, 0.66);
}

.price-card-premium .price-card-copy p {
  color: rgba(246, 239, 233, 0.66);
}

.price-card-wide ul {
  margin: 0;
}

.price-card-wide .price-card-bottom {
  margin: 0;
  align-self: stretch;
  justify-content: flex-end;
}

.price-card-wide .price-card-bottom > div strong {
  font-size: clamp(2.3rem, 3.7vw, 4rem);
}

.service-paths-block {
  margin: clamp(2rem, 3vw, 3rem) 0 clamp(3rem, 6vw, 6rem);
}

.service-paths-intro {
  margin-bottom: clamp(2.2rem, 4vw, 4rem);
  padding-top: clamp(1.4rem, 2.5vw, 2.2rem);
  display: grid;
  grid-template-columns: 110px minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line-dark);
}

.service-paths-intro > div {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.service-paths-intro > div span {
  color: var(--pink);
  font-size: 3.6rem;
  line-height: 1;
}

.service-paths-intro > div small {
  color: rgba(18, 12, 13, 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.service-paths-intro h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.6vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.service-paths-intro h3 em {
  color: var(--pink);
}

.service-paths-intro > p {
  max-width: 410px;
  margin: 0 0 0.3rem;
  color: rgba(18, 12, 13, 0.64);
}

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

.service-path {
  --service-pad: clamp(1.4rem, 2.5vw, 2.4rem);
  min-width: 0;
  min-height: 0;
  height: clamp(450px, 34vw, 470px);
  padding: 0;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--panel);
  color: var(--black);
  perspective: 1600px;
  transition: transform 360ms cubic-bezier(0.18, 0.78, 0.2, 1), box-shadow 360ms ease;
}

.service-path + .service-path {
  border-left: 1px solid var(--line-dark);
}

.service-path:nth-child(even) {
  border-left: 0;
}

.service-path:nth-child(n + 3) {
  border-top: 0;
}

.service-path:hover {
  z-index: 2;
  box-shadow: 0 32px 90px rgba(81, 34, 47, 0.13);
  transform: translateY(-8px);
}

.service-path-pink {
  border-color: var(--pink);
  background: var(--pink-light);
}

.service-path-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
}

.service-path-red {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--paper);
}

.service-path-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-path-top b {
  color: var(--pink);
  font-size: 1.25rem;
}

.service-path-dark .service-path-top b {
  color: var(--pink-light);
}

.service-path-red .service-path-top b {
  color: var(--black);
}

.service-path-inner {
  width: 100%;
  height: 100%;
  display: grid;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.service-path.is-open .service-path-inner {
  transform: rotateY(180deg);
}

.service-path-face {
  width: 100%;
  height: 100%;
  grid-area: 1 / 1;
  background: var(--panel);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-path-pink .service-path-face {
  background: var(--pink-light);
}

.service-path-dark .service-path-face {
  background: var(--black);
}

.service-path-red .service-path-face {
  background: var(--pink);
}

.service-path-toggle {
  width: 100%;
  min-height: 0;
  height: 100%;
  padding: var(--service-pad);
  display: flex;
  flex-direction: column;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.service-path-toggle:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: -7px;
}

.service-path-toggle .service-path-top {
  width: 100%;
}

.service-path-title {
  margin: clamp(2.8rem, 5vw, 4.8rem) 0 1.2rem;
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.service-path-summary {
  max-width: 440px;
  display: block;
  color: rgba(18, 12, 13, 0.62);
}

.service-path-dark .service-path-summary {
  color: rgba(246, 239, 233, 0.65);
}

.service-path-red .service-path-summary {
  color: rgba(246, 239, 233, 0.78);
}

.service-path-price {
  margin-top: auto;
  padding-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-path-price strong {
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.1vw, 3.15rem);
  line-height: 1;
}

.price-with-prefix {
  white-space: nowrap;
}

.service-path-price strong .price-prefix,
.price-card-bottom > div strong .price-prefix {
  margin: 0;
  display: inline;
  color: inherit;
  font: inherit;
  font-size: 0.48em;
  letter-spacing: 0.02em;
  text-transform: none;
  vertical-align: 0.16em;
}

.service-path-price small,
.service-path-open b {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-path-dark .service-path-price small {
  color: rgba(246, 239, 233, 0.56);
}

.service-path-red .service-path-price small {
  color: rgba(246, 239, 233, 0.72);
}

.service-path-open {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
}

.service-path-open i {
  font-family: var(--display);
  font-size: 1.7rem;
  font-style: normal;
  line-height: 1;
  transition: transform 300ms ease;
}

.service-path.is-open .service-path-open i {
  transform: rotate(45deg);
}

.service-path-details {
  max-height: none;
  padding: var(--service-pad);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  overflow: hidden;
  opacity: 1;
  transform: rotateY(180deg);
}

.service-path.is-open .service-path-details {
  max-height: none;
  padding-bottom: var(--service-pad);
  opacity: 1;
}

.service-path-back-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-path-close {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.service-path-close:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

.service-path-back-title {
  margin: 0.7rem 0 0;
  display: block;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.service-path .service-path-back ul {
  min-height: 0;
  margin: 0.55rem 0 0.5rem;
  overflow-y: auto;
  scrollbar-width: thin;
}

.service-path .service-path-back li {
  padding-top: 0.42rem;
  padding-bottom: 0.42rem;
  font-size: 0.84rem;
}

.service-path-back .service-path-bottom {
  margin-top: 0;
}

.service-path-back .service-path-bottom .button {
  min-height: 42px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.service-path h3 {
  margin: clamp(3.5rem, 6vw, 5.5rem) 0 1.2rem;
  font-size: clamp(3rem, 4.5vw, 5rem);
}

.service-path > p {
  max-width: 420px;
  margin: 0;
  color: rgba(18, 12, 13, 0.62);
}

.service-path-dark > p {
  color: rgba(246, 239, 233, 0.65);
}

.service-path-red > p {
  color: rgba(246, 239, 233, 0.78);
}

.service-path ul {
  margin: 2rem 0 2.5rem;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.service-path li {
  padding: 0.85rem 0 0.85rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.88rem;
}

.service-path li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.service-path-dark ul,
.service-path-dark li,
.service-path-red ul,
.service-path-red li {
  border-color: rgba(246, 239, 233, 0.18);
}

.service-path-dark li::before {
  color: var(--pink-light);
}

.service-path-red li::before {
  color: var(--black);
}

.service-path-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-path-bottom > div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-path-bottom > div strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1;
}

.service-path-bottom > div span {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-path-dark .service-path-bottom > div span {
  color: rgba(246, 239, 233, 0.56);
}

.service-path-red .service-path-bottom > div span {
  color: rgba(246, 239, 233, 0.72);
}

.service-path-bottom .button {
  width: 100%;
}

.pricing-note {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(18, 12, 13, 0.5);
  font-size: 0.75rem;
}

.about {
  border-top: 1px solid var(--line-dark);
}

.about-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7rem);
}

.about-head h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(4rem, 7.2vw, 7.6rem);
}

.about-head h2 em {
  color: var(--pink);
}

.about-lead {
  padding-left: clamp(1.5rem, 3vw, 2.7rem);
  border-left: 1px solid var(--line-dark);
}

.about-lead > p {
  max-width: 560px;
  margin: 0;
  color: rgba(18, 12, 13, 0.6);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.about-lead > p + p {
  margin-top: 1rem;
}

.about-signature {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-dark);
  color: var(--black);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-framework {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
}

.about-framework article {
  min-height: 410px;
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  display: flex;
  flex-direction: column;
  background: rgba(255, 250, 247, 0.78);
}

.about-framework article + article {
  border-left: 1px solid var(--line-dark);
}

.about-framework article:nth-child(2) {
  background: var(--pink-light);
}

.about-framework article:nth-child(3) {
  background: var(--black);
  color: var(--paper);
}

.about-framework article > span {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-framework h3 {
  margin: auto 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.about-framework p {
  margin: 0;
  color: rgba(18, 12, 13, 0.62);
}

.about-framework article:nth-child(3) p {
  color: rgba(246, 239, 233, 0.68);
}

.about-research-strip {
  padding: 1.35rem 1.5rem;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: var(--pink);
  color: var(--paper);
}

.about-research-strip > span,
.about-research-strip > strong {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-research-strip p {
  max-width: 800px;
  margin: 0;
  color: rgba(246, 239, 233, 0.82);
}

.about-research-strip > strong {
  color: var(--black);
}

.artist-fit {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.05fr) minmax(280px, 0.7fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid rgba(246, 239, 233, 0.16);
  border-bottom: 1px solid rgba(246, 239, 233, 0.16);
  background-color: var(--black);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  color: var(--paper);
}

.artist-fit::before {
  background: rgba(18, 12, 13, 0.78);
}

.artist-fit-mark {
  min-height: 500px;
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--pink);
  color: var(--black);
  transform: rotate(-1.2deg);
}

.artist-fit-mark span,
.artist-fit-belief > span {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.artist-fit-mark strong {
  font-family: var(--display);
  font-size: clamp(4.2rem, 7vw, 7.4rem);
  letter-spacing: -0.06em;
  line-height: 0.78;
}

.artist-fit-copy {
  align-self: center;
}

.artist-fit .eyebrow {
  color: var(--pink-light);
}

.artist-fit-copy h2 {
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
  color: var(--paper);
  font-size: clamp(3.7rem, 6.5vw, 7rem);
}

.artist-fit-copy h2 em {
  color: var(--pink);
}

.artist-fit-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(246, 239, 233, 0.68);
}

.artist-fit-copy > p:last-child {
  color: var(--paper);
}

.artist-fit-belief {
  padding-left: clamp(1.8rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(246, 239, 233, 0.2);
}

.artist-fit-belief > span {
  color: var(--pink-light);
}

.artist-fit-belief blockquote {
  margin: 2rem 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.artist-fit-belief p {
  margin: 0;
  color: rgba(246, 239, 233, 0.56);
  font-size: 0.9rem;
}

.self-audit {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  background: var(--pink-light);
  color: var(--black);
}

.self-audit .eyebrow {
  color: var(--black);
}

.audit-intro,
.audit-workspace {
  width: min(1320px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.audit-intro {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7rem);
}

.audit-intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4rem, 7.4vw, 7.8rem);
}

.audit-intro h2 em {
  color: var(--white);
}

.audit-intro-copy {
  padding-left: clamp(1.5rem, 3vw, 2.7rem);
  border-left: 1px solid rgba(18, 12, 13, 0.5);
}

.audit-intro-copy p {
  margin: 0;
  color: rgba(18, 12, 13, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.audit-intro-copy strong {
  margin-top: 1.4rem;
  padding-top: 1rem;
  display: block;
  border-top: 1px solid rgba(18, 12, 13, 0.38);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-progress {
  padding: 1.15rem 1.4rem;
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(220px, 1fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  background: var(--black);
  color: var(--paper);
}

.audit-progress > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.audit-progress span,
.audit-progress strong {
  font-family: var(--display);
  text-transform: uppercase;
}

.audit-progress span {
  color: var(--pink-light);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.audit-progress strong {
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.audit-progress > i {
  height: 8px;
  display: block;
  overflow: hidden;
  background: rgba(246, 239, 233, 0.18);
}

.audit-progress > i b {
  width: 0;
  height: 100%;
  display: block;
  background: var(--pink);
  transition: width 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.audit-progress > p {
  margin: 0;
  color: rgba(246, 239, 233, 0.62);
  font-size: 0.82rem;
}

.audit-form {
  min-height: 510px;
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--paper);
}

.audit-area,
.audit-email-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.audit-area[hidden],
.audit-email-step[hidden],
.audit-controls[hidden],
.audit-result[hidden],
.audit-progress[hidden] {
  display: none !important;
}

.audit-area legend {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
  padding: 0;
}

.audit-area legend small,
.audit-area legend strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
}

.audit-area legend small {
  margin-bottom: 0.65rem;
  color: var(--pink);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.audit-area legend strong {
  font-size: clamp(3.5rem, 6.2vw, 6.8rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.audit-area > p {
  max-width: 680px;
  margin: 0 0 2.1rem;
  color: rgba(18, 12, 13, 0.6);
}

.audit-area label {
  min-width: 0;
  min-height: 72px;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line-dark);
  cursor: pointer;
}

.audit-area label span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.audit-area label:last-of-type {
  border-bottom: 1px solid var(--line-dark);
}

.audit-area input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--black);
}

.audit-controls {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.audit-controls > span {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.audit-controls > span b {
  color: var(--pink);
  font-size: 1.2rem;
}

.audit-controls .audit-back {
  justify-self: start;
  border-color: var(--line-dark);
  background: transparent;
}

.audit-controls .button-dark {
  justify-self: end;
}

.audit-email-step {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.audit-review {
  margin: 0 auto 2rem;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
  color: rgba(18, 12, 13, 0.58);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.audit-email-step > span {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-email-step h3 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.audit-email-step > p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(18, 12, 13, 0.62);
  text-wrap: balance;
}

.audit-email-step label {
  margin: 2rem auto 0.8rem;
  display: block;
  border: 0;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.audit-email-step input[type="email"] {
  width: 100%;
  min-height: 58px;
  margin-top: 0.55rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.audit-email-step .button {
  width: 100%;
}

.audit-email-step > small {
  margin-top: 0.9rem;
  display: block;
  color: rgba(18, 12, 13, 0.5);
  text-wrap: balance;
}

.audit-delivery-status {
  min-height: 1.2em;
  margin-top: 0.8rem !important;
  font-size: 0.82rem;
}

.audit-result {
  border: 1px solid var(--black);
  border-top: 0;
  background: var(--paper);
}

.audit-result > header {
  padding: clamp(1.6rem, 4vw, 4rem);
  background: var(--black);
  color: var(--paper);
}

.audit-result > header > span {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-result > header > strong {
  margin: 1rem 0 0.6rem;
  display: block;
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.82;
}

.audit-result > header h3 {
  max-width: 900px;
  margin: 1.3rem 0 1rem;
  color: var(--paper);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.audit-result > header > p {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 239, 233, 0.68);
}

.audit-result > header .audit-result-delivery {
  margin-top: 1rem;
  color: var(--pink-light);
  font-size: 0.82rem;
}

.audit-priorities {
  padding: clamp(1.6rem, 4vw, 4rem);
}

.audit-priorities-heading {
  padding-bottom: 1.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.audit-priorities-heading span,
.audit-priority-list article > span {
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.audit-priorities-heading strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  text-transform: uppercase;
}

.audit-priority-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.audit-priority-list article {
  min-height: 280px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.audit-priority-list article:last-child {
  border-right: 1px solid var(--line-dark);
}

.audit-priority-list h4 {
  margin: auto 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.audit-priority-list p {
  margin: 0;
  color: rgba(18, 12, 13, 0.62);
  font-size: 0.84rem;
}

.audit-offer {
  padding: clamp(1.5rem, 3vw, 2.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.45fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  background: var(--pink);
  color: var(--paper);
}

.audit-offer > div:first-child > span,
.audit-offer-price > span,
.audit-offer > small {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audit-offer h3 {
  margin: 0.7rem 0 0.8rem;
  color: var(--paper);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.audit-offer p {
  max-width: 640px;
  margin: 0;
  color: rgba(246, 239, 233, 0.76);
}

.audit-offer-price {
  display: flex;
  flex-direction: column;
}

.audit-offer-price s {
  color: rgba(246, 239, 233, 0.62);
  font-family: var(--display);
  font-size: 1.3rem;
}

.audit-offer-price strong {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  white-space: nowrap;
}

.audit-offer .button {
  width: 100%;
}

.audit-offer > small {
  grid-column: 3;
  color: rgba(246, 239, 233, 0.62);
  line-height: 1.5;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-lead h2 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.accordion {
  border-top: 1px solid var(--line-dark);
}

.accordion article {
  border-bottom: 1px solid var(--line-dark);
}

.accordion button {
  width: 100%;
  padding: 1.7rem 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  text-align: left;
  cursor: pointer;
}

.accordion button i {
  color: var(--pink);
  font-family: var(--sans);
  font-style: normal;
  transition: transform 180ms ease;
}

.accordion article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.accordion article > div p {
  max-width: 640px;
  margin: 0;
  overflow: hidden;
  color: rgba(18, 12, 13, 0.58);
}

.accordion article.is-open > div {
  grid-template-rows: 1fr;
}

.accordion article.is-open > div p {
  margin-bottom: 1.5rem;
}

.accordion article.is-open button i {
  transform: rotate(45deg);
}

.contact {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--pink-light);
  color: var(--black);
}

.contact .eyebrow {
  color: var(--black);
}

.contact h2 em {
  color: var(--pink);
}

.contact h2 {
  font-size: clamp(4rem, 6.8vw, 7rem);
}

.contact-lead > p:not(.eyebrow) {
  max-width: 480px;
}

.contact-lead > a {
  display: inline-block;
  margin-top: 1rem;
  border-bottom: 1px solid var(--black);
  font-weight: 600;
}

.contact-proof {
  max-width: 480px;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(18, 12, 13, 0.38);
  list-style: none;
}

.contact-proof li {
  padding: 0.75rem 0 0.75rem 1.35rem;
  position: relative;
  border-bottom: 1px solid rgba(18, 12, 13, 0.38);
  font-size: 0.86rem;
}

.contact-proof li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  border: 1px solid var(--black);
  border-radius: 0;
  background: transparent;
}

.contact-form > label,
.contact-form > .city-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.city-combobox {
  position: relative;
}

.city-field > small {
  color: rgba(18, 12, 13, 0.52);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.city-field > small a {
  border-bottom: 1px solid currentColor;
}

.city-options {
  width: 100%;
  max-height: 300px;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 30;
  overflow-y: auto;
  border: 1px solid var(--black);
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(18, 12, 13, 0.2);
}

.city-options[hidden] {
  display: none;
}

.city-options button {
  width: 100%;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.city-options button:last-child {
  border-bottom: 0;
}

.city-options button:hover,
.city-options button:focus-visible,
.city-options button[aria-selected="true"] {
  outline: 0;
  background: var(--pink-light);
}

.city-options button strong {
  font-size: 0.88rem;
}

.city-options button span {
  color: rgba(18, 12, 13, 0.56);
  font-size: 0.72rem;
  text-align: right;
}

.city-options-empty {
  margin: 0;
  padding: 1rem;
  color: rgba(18, 12, 13, 0.62);
  font-size: 0.78rem;
}

.contact-form-head {
  padding-bottom: 1.4rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--black);
  font-family: var(--display);
  text-transform: uppercase;
}

.contact-form-head > span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.contact-form-head > strong {
  color: var(--pink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.9;
  white-space: nowrap;
}

.contact-form-head small {
  color: rgba(18, 12, 13, 0.52);
  font-size: 0.32em;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 12, 13, 0.42);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--black);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(18, 12, 13, 0.48);
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form > .contact-consent {
  padding: 0.95rem 0;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid rgba(18, 12, 13, 0.38);
  border-bottom: 1px solid rgba(18, 12, 13, 0.38);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  cursor: pointer;
}

.contact-form .contact-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  border: 1px solid var(--black);
  accent-color: var(--black);
}

.contact-form .contact-consent a {
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.contact-form option {
  background: var(--black);
  color: var(--white);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.contact-form-note {
  margin-top: -0.4rem;
  color: rgba(18, 12, 13, 0.5);
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter) 2rem;
  background-color: var(--black);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  color: var(--white);
}

.site-footer.grid-surface::before {
  background: rgba(18, 12, 13, 0.72);
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.footer-mark {
  text-align: center;
}

.footer-mark span {
  display: block;
  color: var(--pink-light);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.footer-mark strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(8rem, 25vw, 24rem);
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.footer-closing {
  width: min(1240px, 100%);
  margin: clamp(3rem, 6vw, 5.5rem) auto 0;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}

.footer-closing p {
  max-width: 960px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.footer-closing p em {
  color: var(--pink);
  font-style: normal;
}

.footer-directory {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-directory nav,
.footer-contact {
  min-height: 180px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-directory nav {
  border-right: 1px solid var(--line);
}

.footer-directory nav > span,
.footer-contact > span {
  margin-bottom: 0.35rem;
  color: var(--pink-light);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-directory a {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-directory a:hover,
.footer-directory a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--pink);
}

.footer-contact small {
  margin-top: auto;
  color: rgba(255, 250, 245, 0.45);
}

.footer-bottom {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-bottom small,
.footer-bottom a {
  color: rgba(255, 250, 245, 0.45);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom small {
  display: block;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-legal-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 245, 0.45);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-legal-links button:hover,
.footer-legal-links button:focus-visible {
  color: var(--pink);
}

.cookie-banner {
  width: min(980px, calc(100% - 2rem));
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 9000;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--black);
  background: var(--pink-light);
  color: var(--black);
  box-shadow: 0 28px 80px rgba(18, 12, 13, 0.28);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy > span,
.cookie-banner-copy > strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
}

.cookie-banner-copy > span {
  margin-bottom: 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.cookie-banner-copy > strong {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
}

.cookie-banner-copy p {
  max-width: 620px;
  margin: 0.85rem 0;
  font-size: 0.83rem;
}

.cookie-banner-copy a {
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 600;
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cookie-banner-actions .button {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem;
  border: 1px solid var(--black);
}

.cookie-banner-actions .button:first-child {
  background: var(--paper);
  color: var(--black);
}

.cookie-banner-actions .button:last-child {
  background: var(--black);
  color: var(--white);
}

.inner-page .site-header {
  background: rgba(243, 175, 194, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  backdrop-filter: blur(22px) saturate(1.08);
}

.inner-page .site-header .brand {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.legal-hero {
  min-height: 72vh;
  padding: clamp(9rem, 14vw, 13rem) var(--gutter) clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.legal-hero > * {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 11rem);
  letter-spacing: -0.06em;
  line-height: 0.78;
}

.legal-hero h1 em,
.thank-you-hero h1 em,
.thank-you-next h2 em {
  color: var(--pink);
  font-style: normal;
}

.legal-hero-copy {
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--black);
}

.legal-hero-copy p {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.legal-hero-copy span {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-layout {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--panel);
}

.legal-toc {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--black);
}

.legal-toc > span,
.legal-toc a,
.legal-toc button {
  position: relative;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: inherit;
  font-family: var(--display);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-toc > span {
  color: var(--pink);
}

.legal-toc button {
  cursor: pointer;
}

.legal-toc a::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--pink);
  transform: translateY(-50%);
  transition: width 180ms ease;
}

.legal-toc a.is-active {
  padding-left: 1.1rem;
  color: var(--pink);
}

.legal-toc a.is-active::before {
  width: 0.65rem;
}

.legal-toc a:hover,
.legal-toc a:focus-visible,
.legal-toc button:hover,
.legal-toc button:focus-visible {
  color: var(--pink);
}

.legal-document {
  max-width: 850px;
}

.legal-document > section {
  padding-bottom: clamp(4rem, 8vw, 7rem);
  scroll-margin-top: 86px;
}

.legal-document > section + section {
  padding-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--black);
}

.legal-number {
  margin-bottom: 0.45rem;
  color: var(--pink);
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
}

.legal-document h2 {
  margin: 0 0 clamp(2rem, 5vw, 4rem);
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.legal-document h3 {
  margin: 2.4rem 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li {
  color: rgba(18, 12, 13, 0.72);
}

.legal-document > section > p:first-of-type {
  color: var(--black);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.legal-document a {
  border-bottom: 1px solid currentColor;
  color: var(--black);
  font-weight: 600;
}

.legal-document ul {
  padding-left: 1.25rem;
}

.legal-document li + li {
  margin-top: 0.45rem;
}

.legal-table {
  margin: 2rem 0 3rem;
  border-top: 1px solid var(--black);
}

.legal-table [role="row"] {
  display: grid;
  grid-template-columns: 0.65fr 1.65fr 0.6fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.82rem;
}

.legal-table-head {
  font-family: var(--display);
  font-size: 0.58rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-cookie-button {
  margin-top: 1rem;
}

.thank-you-hero {
  min-height: 760px;
  padding: clamp(9rem, 14vw, 13rem) var(--gutter) clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.thank-you-hero > * {
  position: relative;
  z-index: 1;
}

.thank-you-hero h1 {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(4.8rem, 10vw, 9rem);
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.thank-you-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}

.thank-you-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.thank-you-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--pink-light);
  font-family: var(--display);
  text-transform: uppercase;
}

.thank-you-mark strong {
  color: var(--pink);
  font-size: clamp(8rem, 18vw, 15rem);
  line-height: 1;
}

.thank-you-mark span,
.thank-you-mark small {
  position: absolute;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.thank-you-mark span { top: 12%; }
.thank-you-mark small { bottom: 12%; }

.thank-you-next {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--pink-light);
}

.thank-you-next h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.thank-you-next ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--black);
  list-style: none;
}

.thank-you-next li {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1.2rem;
  border-bottom: 1px solid var(--black);
}

.thank-you-next li > span,
.thank-you-next li strong {
  font-family: var(--display);
  text-transform: uppercase;
}

.thank-you-next li > span {
  color: var(--pink);
  font-size: 2rem;
}

.thank-you-next li strong {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.thank-you-next li p {
  max-width: 620px;
  margin: 0.4rem 0 0;
}

#services,
#process,
#about,
#audit,
#faq,
#contact {
  scroll-margin-top: 64px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-list > li:nth-child(2).reveal,
.facts article:nth-child(2).reveal {
  transition-delay: 80ms;
}

.process-list > li:nth-child(3).reveal,
.facts article:nth-child(3).reveal {
  transition-delay: 160ms;
}

.price-card:nth-child(2).reveal {
  transition-delay: 110ms;
}

.price-card:nth-child(3).reveal {
  transition-delay: 220ms;
}

.service-path:nth-child(2).reveal {
  transition-delay: 110ms;
}

.service-path:nth-child(3).reveal {
  transition-delay: 220ms;
}

.service-path:nth-child(4).reveal {
  transition-delay: 330ms;
}

.process-list > li.reveal.is-visible:hover,
.price-card.reveal.is-visible:hover,
.service-path.reveal.is-visible:hover {
  transform: translateY(-8px);
}

@keyframes hero-line-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes hero-preface-in {
  from {
    opacity: 0;
    filter: blur(7px);
    clip-path: inset(0 0 100% 0);
    transform: translateY(0.42em);
  }
  to {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes hero-artist-in {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(0.32em) scale(0.72);
  }
  68% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1.055);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-notice-in {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(0.35em) rotate(1.4deg);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes hero-highlight-in {
  from {
    opacity: 0;
    transform: rotate(-0.8deg) scaleX(0);
  }
  to {
    opacity: 1;
    transform: rotate(-0.8deg) scaleX(1);
  }
}

@keyframes hero-orbit-in {
  from {
    opacity: 0;
    transform: rotate(-18deg) scale(0.58);
  }
  to {
    opacity: 1;
    transform: rotate(4deg) scale(1);
  }
}

@keyframes hero-orbit-mobile-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-8deg) scale(0.82);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(4deg) scale(1);
  }
}

@keyframes loader-line-in {
  to { transform: scaleX(1); }
}

@keyframes loader-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-pink-sweep {
  0% { transform: scaleY(0); }
  52% { transform: scaleY(1); }
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
}

@keyframes loader-exit {
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    pointer-events: none;
  }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes friction-copy-in {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes friction-mode-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes process-pop-in {
  from { opacity: 0; transform: scale(0.72) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes process-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes process-message-in {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes process-bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes process-leak-found {
  0% { opacity: 0; transform: translateY(12px); }
  70% { opacity: 1; transform: translateY(0) scale(1.025); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes process-stamp-in {
  from { opacity: 0; transform: rotate(-10deg) scale(1.35); }
  to { opacity: 1; transform: rotate(-2deg) scale(1); }
}

@keyframes card-develop {
  from { opacity: 0; filter: blur(9px); }
  to { opacity: 1; filter: blur(0); }
}

@keyframes halo-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.55; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

@keyframes float-one {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-10px); }
}

@keyframes float-two {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-13px); }
}

@keyframes float-three {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-8px); }
}

@media (max-width: 1060px) {
  .service-paths,
  .price-card-wide-grid {
    grid-template-columns: 1fr;
  }

  .service-paths-intro {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .service-paths-intro > p {
    max-width: 620px;
    grid-column: 2;
  }

  .price-card {
    min-height: auto;
  }

  .service-path {
    min-height: auto;
  }

  .service-path + .service-path {
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }

  .service-path-dark {
    border-left-color: var(--black);
  }

  .service-path-pink,
  .service-path-red {
    border-left-color: var(--pink);
  }

  .price-card + .price-card {
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }

  .price-card-premium + .price-card,
  .price-card-premium {
    border-left-color: var(--black);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 54px;
  }

  .site-header.is-scrolled {
    min-height: 54px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    min-width: 92px;
    min-height: 38px;
    padding: 0.7rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--line-dark);
    border-radius: 0;
    background: transparent;
    color: var(--black);
    font-family: var(--display);
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    width: 18px;
    height: 1px;
    display: block;
    position: relative;
    background: var(--pink);
    transition: transform 180ms ease;
  }

  .menu-toggle i::before {
    content: "";
    position: absolute;
    top: 5px;
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(90deg);
  }

  .site-nav {
    position: fixed;
    top: 54px;
    right: 0;
    left: 0;
    height: calc(100svh - 54px);
    z-index: 90;
    padding: 3rem var(--gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    overflow-y: auto;
    background: var(--paper);
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    pointer-events: none;
    transition: clip-path 230ms ease, visibility 230ms ease;
  }

  .site-nav a {
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(2.3rem, 8vw, 5rem);
    letter-spacing: -0.03em;
  }

  .site-nav.is-open {
    clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
  }

  .action,
  .about,
  .artist-fit,
  .self-audit,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .artist-fit-mark {
    min-height: 320px;
  }

  .artist-fit-belief {
    padding: 2.5rem 0 0;
    border-top: 1px solid rgba(246, 239, 233, 0.2);
    border-left: 0;
  }

  .about-head {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-lead {
    max-width: 760px;
    padding: 1.8rem 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .about-framework {
    grid-template-columns: 1fr;
  }

  .about-framework article {
    min-height: auto;
  }

  .about-framework article + article {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .about-framework h3 {
    margin: 3rem 0 1.2rem;
  }

  .about-research-strip {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .audit-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .audit-intro-copy {
    max-width: 760px;
    padding: 1.8rem 0 0;
    border-top: 1px solid rgba(18, 12, 13, 0.5);
    border-left: 0;
  }

  .audit-offer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .audit-offer .button,
  .audit-offer > small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .process-list > li {
    --sequence-delay: 0ms;
  }

  .hero {
    min-height: 900px;
    padding-top: 7.5rem;
  }

  .hero-meta {
    top: 4.6rem;
  }

  .hero-meta-right {
    display: none;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .hero-statement {
    font-size: clamp(3rem, 13.5vw, 4.6rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(3.4rem, 15vw, 6rem);
  }

  .hero-cards {
    min-height: 315px;
    position: relative;
  }

  .hero-card {
    width: min(42vw, 170px);
    position: absolute;
  }

  .hero-card-one { left: 0; top: 10px; }
  .hero-card-two { right: 2%; top: 0; }
  .hero-card-three { left: 6%; bottom: 0; }
  .hero-card-four { right: 0; bottom: 5px; }

  .hero-orbit {
    width: 104px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(4deg);
    animation-name: hero-orbit-mobile-in;
  }

  .hero-orbit:hover,
  .hero-orbit:focus-visible {
    transform: translate(-50%, -50%) rotate(0);
  }

  .process-list,
  .facts {
    grid-template-columns: 1fr;
  }

  .system-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .system-intro-copy {
    max-width: 620px;
    margin: 0;
    padding: 1.4rem 0 0;
    border-top: 1px solid rgba(18, 12, 13, 0.52);
    border-left: 0;
  }

  .statement-face {
    min-height: 190px;
    padding: 1.4rem 0.5rem;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 1rem;
  }

  .statement-number {
    grid-column: 1;
  }

  .statement-content {
    grid-column: 2;
  }

  .statement-reveal,
  .statement-back-note {
    display: none;
  }

  .statement-arrow {
    width: 40px;
    height: 40px;
    grid-column: 3;
    align-self: center;
  }

  .statement-back {
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
  }

  .statement-back-meta,
  .statement-back-copy {
    grid-column: 1;
  }

  .statement-back-meta {
    align-self: end;
  }

  .statement-back-copy {
    align-self: start;
    font-size: clamp(1.55rem, 5vw, 2.25rem);
  }

  .statement-back .statement-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .process-list > li + li,
  .price-card + .price-card {
    border-left: 1px solid var(--line-dark);
    border-top: 0;
  }

  .price-card-premium {
    border-left-color: var(--black);
  }

  .process-list > li {
    min-height: 620px;
  }

  .process-handoff {
    padding: 1rem;
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .process-handoff .button {
    width: 100%;
  }

  .friction-explorer {
    position: sticky;
    top: var(--friction-sticky-top, 4rem);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .friction-scroll-track {
    height: auto;
    min-height: 0;
  }

  .friction-visual {
    min-height: 320px;
    grid-row: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .friction-mark {
    width: min(210px, 48%);
  }

  .friction-detail {
    min-height: 280px;
  }

  .friction-tabs {
    grid-column: 1;
  }

  .facts article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .action {
    min-height: auto;
  }

  .action-collage {
    min-height: 540px;
  }

  .action-image-one { width: 60%; height: 250px; }
  .action-image-two { width: 62%; height: 300px; }
  .action-image-three { width: 72%; height: 210px; left: 8%; }

  .price-card {
    min-height: auto;
  }

  .price-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-form > label,
  .wide {
    grid-column: 1;
  }

  .audit-progress {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .audit-form {
    min-height: auto;
  }

  .audit-priorities-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

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

  .audit-priority-list article {
    min-height: 220px;
    border-right: 1px solid var(--line-dark);
  }

  .audit-priority-list article + article {
    border-top: 0;
  }

  .audit-offer {
    grid-template-columns: 1fr;
  }

  .audit-offer .button,
  .audit-offer > small {
    grid-column: 1;
  }

  .footer-closing {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-closing .button {
    width: 100%;
  }

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

  .footer-directory nav {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-directory nav,
  .footer-contact {
    min-height: auto;
  }

  .footer-contact small {
    margin-top: 1.5rem;
  }

  .footer-bottom {
    width: 100%;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom > small,
  .footer-legal-links {
    width: 100%;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 1.15rem;
  }

  .site-header {
    min-height: 54px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-meta {
    font-size: 0.55rem;
  }

  .hero-copy .eyebrow {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: clamp(3.6rem, 19vw, 5.4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card {
    width: 44vw;
  }

  .hero-card figcaption {
    font-size: 0.5rem;
  }

  .friction-visual {
    min-height: 270px;
  }

  .friction-detail {
    min-height: 250px;
    padding: 1.6rem;
  }

  .friction-detail h3 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .friction-tabs button {
    min-height: 76px;
    padding: 0.85rem 0.6rem;
  }

  .friction-tabs button:hover,
  .friction-tabs button:focus-visible {
    padding-left: 0.75rem;
  }

  .friction-tabs strong {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .system-statement {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .system-intro h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .about-head h2 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .about-framework article {
    padding: 1.35rem;
  }

  .about-framework h3 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .about-research-strip {
    padding: 1.2rem;
  }

  .statement-face {
    grid-template-columns: 30px minmax(0, 1fr) 34px;
    gap: 0.75rem;
  }

  .statement-content strong {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .statement-arrow {
    width: 32px;
    height: 32px;
  }

  .statement-back {
    padding-right: 0.25rem;
    padding-left: 1rem;
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .statement-back-copy {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .process-list > li {
    min-height: auto;
  }

  .process-mockup {
    min-height: 240px;
  }

  .process-copy h3 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .action-collage {
    min-height: 440px;
  }

  .artist-fit-mark {
    min-height: 270px;
  }

  .action-image {
    border-width: 5px;
  }

  .action-image-one { height: 200px; }
  .action-image-two { height: 235px; }
  .action-image-three { height: 170px; }

  .collage-link {
    width: 110px;
    height: 110px;
  }

  .price-card h3 {
    font-size: 3.6rem;
  }

  .service-paths-intro {
    grid-template-columns: 1fr;
  }

  .service-paths-intro > p {
    grid-column: auto;
  }

  .service-path h3 {
    font-size: 3.6rem;
  }

  .audit-form,
  .contact-form {
    padding: 1.2rem;
  }

  .contact h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .contact-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .audit-intro h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .audit-progress {
    padding: 1rem;
  }

  .audit-area legend strong {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .audit-controls {
    grid-template-columns: 1fr 1fr;
  }

  .audit-controls > span {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .audit-controls .audit-back {
    grid-column: 1;
    grid-row: 2;
  }

  .audit-controls .button-dark {
    grid-column: 2;
    grid-row: 2;
  }

  .audit-email-step h3 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .audit-result > header > strong {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .audit-offer-price strong {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .audit-form label {
    font-size: 0.9rem;
  }

  .audit-email-step .button {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .footer-mark strong {
    font-size: 7rem;
  }
}

@media (max-width: 900px) {
  .cookie-banner,
  .legal-hero,
  .legal-layout,
  .thank-you-hero,
  .thank-you-next {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    gap: 1.25rem;
  }

  .legal-hero,
  .thank-you-hero {
    min-height: auto;
  }

  .legal-hero-copy {
    max-width: 680px;
  }

  .legal-toc {
    position: static;
  }

  .thank-you-mark {
    width: min(460px, 82vw);
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    width: calc(100% - 1rem);
    bottom: 0.5rem;
    max-height: calc(100vh - 1rem);
    overflow-y: auto;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .footer-legal-links {
    flex-wrap: wrap;
  }

  .legal-hero h1 {
    font-size: clamp(4.2rem, 22vw, 6.4rem);
  }

  .legal-hero-copy {
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid var(--black);
    border-left: 0;
  }

  .legal-layout {
    gap: 3rem;
  }

  .legal-table [role="row"] {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .legal-table-head {
    display: none !important;
  }

  .thank-you-hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-next li {
    grid-template-columns: 50px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
