:root {
  --ivory: #f8f2ea;
  --paper: #fffaf4;
  --ink: #1f2421;
  --muted: #6c706a;
  --teal: #073f3d;
  --teal-soft: #dbe8e5;
  --line: rgba(31, 36, 33, 0.14);
  --shell: #d8c4a8;
  --blush: #f8eceb;
  --radius-button: 6px;
  --radius-image: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.site-splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 250, 244, 0.98), rgba(248, 242, 234, 0.94)),
    url("assets/paua-texture.png") center / 860px auto;
  pointer-events: none;
  animation: splashExit 1700ms cubic-bezier(0.22, 1, 0.36, 1) 320ms forwards;
}

.splash-wordmark {
  display: grid;
  justify-items: center;
  gap: 0.34rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: splashLogo 1400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash-wordmark strong {
  font-family: var(--serif);
  font-size: clamp(3.35rem, 10vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.13em;
  margin-right: -0.13em;
}

.splash-wordmark span {
  color: var(--ink);
  font-size: clamp(0.58rem, 1.55vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.44em;
  line-height: 1.2;
  text-transform: uppercase;
}

@keyframes splashLogo {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  34%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.01);
  }
}

@keyframes splashExit {
  0%,
  68% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1320px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-wordmark {
  display: grid;
  justify-items: start;
  gap: 0.18rem;
  color: var(--ink);
  white-space: nowrap;
}

.brand-wordmark strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.35vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 0.92;
  margin-right: -0.13em;
}

.brand-wordmark span {
  color: var(--ink);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.45vw, 1.45rem);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] { color: var(--teal); }

.mobile-menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 1rem 1.45rem;
  border: 1px solid var(--teal);
  border-radius: var(--radius-button);
  background: var(--teal);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-1px); }
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 36, 33, 0.55);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-pop,
.reveal-soft,
.image-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 780ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-48px);
}

.reveal-right {
  transform: translateX(48px);
}

.reveal-pop {
  transform: translateY(30px) scale(0.975);
}

.reveal-soft {
  transform: translateY(18px) scale(0.99);
}

.image-reveal {
  clip-path: inset(14% 0 14% 0);
  filter: blur(10px);
  transform: translateY(44px) scale(1.025);
}

.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
  filter: blur(0);
}

.button,
.mini-button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.mini-button:hover {
  box-shadow: 0 14px 32px rgba(7, 63, 61, 0.16);
}

.hero {
  position: relative;
  min-height: max(780px, calc(100vh - 78px));
  overflow: hidden;
  background: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #f6eee5;
  opacity: 1;
  clip-path: none;
  filter: none;
  animation: none;
  will-change: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: max(780px, calc(100vh - 78px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.hero-copy { width: min(42rem, 48vw); }

.hero .hero-copy > .reveal {
  transition-duration: 1150ms;
  transition-delay: calc(1400ms + var(--reveal-delay, 0ms));
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4.25rem, 7.8vw, 7.4rem);
  line-height: 0.96;
}

h1 em {
  display: block;
  color: var(--teal);
  font-style: italic;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.1;
}

.lead {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.hero .lead {
  max-width: 29ch;
  margin: 2rem 0 0;
  color: var(--ink);
}

.hero-note {
  max-width: 30rem;
  margin: 1.05rem 0 0;
  color: rgba(31, 36, 33, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

@keyframes heroBreathe {
  from { transform: scale(1); }
  to { transform: scale(1.014); }
}

.trust-strip {
  background: var(--teal);
  color: var(--paper);
}

.trust-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 130px;
  padding: 1.7rem;
  border-right: 1px solid rgba(255, 250, 244, 0.16);
}

.trust-item strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.9rem;
}

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-image);
  background: var(--paper);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-feature {
  position: relative;
  overflow: hidden;
  background: #123b39;
  color: var(--paper);
}

.about-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 63, 61, 0.96) 0%, rgba(18, 59, 57, 0.88) 46%, rgba(248, 242, 234, 0.12) 100%),
    url("assets/paua-texture.png") left center / 920px auto no-repeat;
  opacity: 1;
  pointer-events: none;
}

.about-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 24%, rgba(248, 236, 235, 0.18), transparent 34%);
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about-copy h2 {
  max-width: 12ch;
  color: var(--paper);
  font-size: clamp(3.1rem, 5.2vw, 5.7rem);
}

.about-copy .lead {
  max-width: 42rem;
  color: rgba(255, 250, 244, 0.84);
}

.about-copy p:not(.eyebrow):not(.lead) {
  max-width: 42rem;
  color: rgba(255, 250, 244, 0.7);
}

.about-copy .button {
  margin-top: 1.9rem;
  border-color: rgba(255, 250, 244, 0.74);
  color: var(--paper);
}

.about-portrait {
  margin: 0;
  padding: clamp(0.9rem, 1.7vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.26);
  border-radius: var(--radius-image);
  background: rgba(255, 250, 244, 0.95);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: rotate(1deg);
}

.portrait-crop {
  overflow: hidden;
  border-radius: calc(var(--radius-image) - 2px);
  aspect-ratio: 4 / 4.85;
  background: #ddd7cf;
}

.portrait-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.04);
}

.founder-quote {
  max-width: 40rem;
  margin: 1.7rem 0 0;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 250, 244, 0.45);
  color: rgba(255, 250, 244, 0.92);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-style: italic;
  line-height: 1.12;
}

.founder-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 42rem;
  margin-top: 1.55rem;
}

.founder-signals span {
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(255, 250, 244, 0.26);
  background: rgba(255, 250, 244, 0.08);
  color: rgba(255, 250, 244, 0.86);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-band {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.76), rgba(255, 250, 244, 0.82)),
    url("assets/paua-texture.png") center / 900px auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.product-band-inner p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.product-mark {
  min-width: 180px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.18em;
}

.product-mark span {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
}

.confidence-band {
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.confidence-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}

.confidence-grid .eyebrow,
.confidence-grid p {
  margin: 0;
}

.confidence-grid p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

.text-link {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.35rem;
  background: currentColor;
  transform: scaleX(0.7);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.section-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-left: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease;
}

.testimonial-card:hover {
  background: rgba(248, 242, 234, 0.52);
  transform: translateY(-3px);
}

.testimonial-card span {
  display: block;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.7;
}

.testimonial-card p {
  color: var(--muted);
}

.testimonial-card strong {
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-image);
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.card-body { padding: 1.2rem; }
.card p { color: var(--muted); }

.service-stack {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.service-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-image);
  background: rgba(255, 250, 244, 0.74);
  overflow: hidden;
}

.service-section.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.service-section.reverse .service-image {
  order: 2;
}

.service-image {
  min-height: 360px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.service-copy p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
}

.service-copy .button {
  margin-top: 1.3rem;
}

.safety-section {
  background: var(--paper);
}

.safety-list {
  display: grid;
  gap: 1rem;
}

.safety-list article,
.resource-card,
.service-detail-card {
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-image);
  background: rgba(255, 250, 244, 0.74);
}

.safety-list strong,
.resource-card strong,
.service-detail-card strong {
  display: block;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.safety-list span,
.resource-card p,
.service-detail-card p {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
}

.treatments-home {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.62), rgba(248, 242, 234, 0.78) 36%, rgba(248, 242, 234, 0.9)),
    linear-gradient(90deg, rgba(248, 242, 234, 0.54), rgba(255, 250, 244, 0.28), rgba(248, 242, 234, 0.54)),
    url("assets/paua-texture.png") center / 100% 100% no-repeat,
    var(--ivory);
}

.treatments-home .wrap {
  width: min(1400px, calc(100% - 48px));
}

.treatments-home .section-heading {
  max-width: 1120px;
  margin-bottom: clamp(3rem, 5.6vw, 5.5rem);
}

.treatment-menu {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
}

.treatment-menu-row {
  display: grid;
  grid-template-columns: minmax(340px, 500px) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(1.8rem, 3.4vw, 2.8rem) 0;
  border-bottom: 1px solid var(--line);
}

.treatment-menu-row:first-child {
  padding-top: 0;
}

.treatment-menu-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.treatment-menu-row img {
  width: 100%;
  height: clamp(270px, 22vw, 360px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-image);
  box-shadow: 0 14px 34px rgba(44, 38, 31, 0.08);
}

.treatment-menu-copy h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.7vw, 2.65rem);
}

.treatment-menu-copy h3 span {
  color: var(--teal);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.treatment-menu-copy p {
  max-width: 44rem;
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.24vw, 1.2rem);
}

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

.treatment-actions .treatment-more {
  flex: 0 0 auto;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.treatment-actions .treatment-more[open] {
  flex: 1 1 100%;
  max-width: 36rem;
}

.treatment-actions .treatment-more summary {
  display: inline-flex;
  cursor: pointer;
  list-style: none;
}

.treatment-actions .treatment-more summary::-webkit-details-marker {
  display: none;
}

.treatment-more-panel {
  margin-top: 0.8rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(31, 36, 33, 0.12);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 12px 28px rgba(44, 38, 31, 0.06);
  animation: detailReveal 320ms ease both;
}

.treatment-more-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(31, 36, 33, 0.48);
  border-radius: var(--radius-button);
  color: var(--ink);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.mini-button.direct {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper);
}

@keyframes detailReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.journey-section {
  background: #fbf6f1;
  border-top: 1px solid rgba(31, 36, 33, 0.08);
}

.journey-heading {
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.journey-heading h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.4rem);
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 1.5vw, 1.35rem);
}

.journey-card {
  min-height: 340px;
  padding: clamp(1.55rem, 2.4vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 36, 33, 0.06);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(31, 36, 33, 0.10);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.resource-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.resource-card h3,
.service-detail-card h3 {
  margin-top: 0.65rem;
}

.resource-card .mini-button,
.service-detail-card .mini-button {
  margin-top: 1rem;
}

.content-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-columns {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 5rem);
}

.content-columns p {
  break-inside: avoid;
  color: var(--muted);
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(31, 36, 33, 0.12);
}

.journey-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: #f8eceb;
  color: #b66e62;
  font-family: var(--serif);
  font-size: 1rem;
}

.journey-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.14;
}

.journey-card p {
  margin: 0;
  color: #3f4540;
  font-size: 0.95rem;
  line-height: 1.5;
}

.journey-note {
  margin-top: clamp(2rem, 3vw, 2.6rem);
  padding: clamp(1.35rem, 2.4vw, 1.8rem) clamp(1.5rem, 3vw, 2rem);
  background: #fff1ee;
  border: 1px solid rgba(182, 110, 98, 0.12);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(31, 36, 33, 0.08);
}

.journey-note p {
  margin: 0;
  color: #3f4540;
  font-size: 0.95rem;
}

.cta {
  position: relative;
  overflow: hidden;
  background: #f4eee6;
  color: var(--ink);
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 1;
  filter: saturate(0.92) contrast(1.02);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 242, 234, 0.96) 0%, rgba(248, 242, 234, 0.86) 32%, rgba(248, 242, 234, 0.34) 58%, rgba(248, 242, 234, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.04), rgba(31, 36, 33, 0.1));
}

.cta .wrap {
  position: relative;
  z-index: 2;
  min-height: clamp(480px, 44vw, 660px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(5rem, 8vw, 7rem) 0;
  text-align: left;
}

.cta h2 {
  max-width: 12ch;
  text-wrap: balance;
}

.cta .lead {
  max-width: 40rem;
  margin-left: 0;
  margin-right: 0;
  color: rgba(31, 36, 33, 0.72);
}

.cta .hero-actions {
  margin-top: 2rem;
}

.cta .button.secondary {
  border-color: rgba(31, 36, 33, 0.45);
  background: rgba(255, 250, 244, 0.34);
  color: var(--ink);
}

.cta .hero-note {
  max-width: 34rem;
  color: rgba(31, 36, 33, 0.58);
}

.page-hero {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap { max-width: 900px; }
.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.35rem, 6.1vw, 5.65rem);
  line-height: 1.02;
}

.treatment-list {
  display: grid;
  gap: 1.2rem;
}

.treatment-row {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-image);
}

.treatment-row img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-image) - 2px);
}

.treatment-row .mini-button {
  margin-top: 0.75rem;
}

.pricing-section {
  background: #fbf6f1;
  border-top: 1px solid rgba(31, 36, 33, 0.08);
}

.pricing-note {
  max-width: 940px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid rgba(7, 63, 61, 0.12);
  background: rgba(255, 250, 244, 0.82);
  color: var(--muted);
}

.pricing-note p {
  margin: 0;
}

.pricing-note p + p {
  margin-top: 0.8rem;
}

.pricing-note .payment-option {
  display: inline-block;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(7, 63, 61, 0.16);
  background: rgba(7, 63, 61, 0.055);
  color: var(--ink);
}

.pricing-groups {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pricing-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.pricing-group {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 18px 38px rgba(31, 36, 33, 0.08);
}

.pricing-group-heading {
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.pricing-group-heading .eyebrow {
  margin-bottom: 0.7rem;
}

.pricing-table {
  display: grid;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(130px, 0.55fr) minmax(100px, 0.35fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem clamp(1rem, 2.2vw, 1.6rem);
  border-bottom: 1px solid rgba(31, 36, 33, 0.08);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row > span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.pricing-row small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-row > span:nth-child(2),
.pricing-row > span:nth-child(3) {
  color: var(--muted);
}

.pricing-row > span:nth-child(3) {
  color: var(--teal);
  font-weight: 800;
}

.pricing-head {
  background: rgba(7, 63, 61, 0.06);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-table.compact .pricing-row {
  grid-template-columns: minmax(160px, 1fr) minmax(110px, 0.6fr) minmax(80px, 0.35fr) auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.result-card {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fffaf4, #efe3d4);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 180ms ease, background 180ms ease;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details:hover {
  border-color: rgba(7, 63, 61, 0.35);
}

details[open] {
  background: #fffdf8;
}

.result-disclaimer {
  margin-top: 2rem;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.contact-card,
.form {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-card h2 {
  margin-bottom: 1rem;
}

.contact-card p:not(.eyebrow) {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-methods p {
  display: grid;
  gap: 0.15rem;
  margin: 0;
}

.contact-methods strong,
.form-note,
.form-disclaimer {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-note {
  margin: 0 0 0.4rem;
}

.form-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.form {
  display: grid;
  gap: 1rem;
}

label { display: grid; gap: 0.35rem; color: var(--muted); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.9rem;
  color: var(--ink);
  border-radius: 0;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
}

footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
}

.footer-wordmark strong {
  font-size: 1.45rem;
}

.footer-wordmark span {
  font-size: 0.4rem;
}

@media (max-width: 920px) {
  body {
    padding-top: 68px;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 80;
  }

  .nav {
    position: relative;
    width: min(100% - 24px, 1320px);
    min-height: 68px;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    justify-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0;
  }

  .brand {
    grid-column: 2;
    justify-content: center;
    text-align: center;
  }

  .mobile-menu-toggle {
    grid-column: 1;
    justify-self: start;
    display: inline-grid;
    place-items: center;
    align-self: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(31, 36, 33, 0.18);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.94);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(45, 39, 34, 0.08);
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .mobile-menu-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(var(--menu-line-offset, 0));
    transition: transform 220ms ease, opacity 160ms ease;
  }

  .mobile-menu-toggle span:first-child { --menu-line-offset: -6px; }
  .mobile-menu-toggle span:nth-child(3) { --menu-line-offset: 6px; }

  .mobile-nav-open .mobile-menu-toggle {
    border-color: rgba(7, 63, 61, 0.36);
    background: var(--teal);
    color: var(--paper);
  }

  .mobile-nav-open .mobile-menu-toggle span:first-child {
    transform: rotate(42deg);
  }

  .mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-42deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 82;
    width: min(318px, calc(100vw - 24px));
    display: grid;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid rgba(31, 36, 33, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: 0 24px 60px rgba(45, 39, 34, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.78rem 0.85rem;
    border-radius: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(7, 63, 61, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .nav .button { display: none; }
  .hero, .hero-content { min-height: 760px; }
  .hero-copy { width: min(35rem, 82vw); }
  .hero-image {
    object-fit: cover;
    object-position: 58% top;
  }
  .trust-grid, .cards, .steps, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .about-grid, .product-band-inner, .treatment-row, .contact-grid { grid-template-columns: 1fr; }
  .about-copy h2 { max-width: 13ch; }
  .about-portrait {
    max-width: 520px;
    transform: none;
  }
  .product-mark { margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .journey-cards,
  .resource-grid,
  .service-detail-grid,
  .service-detail-grid.two,
  .pricing-small-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-row,
  .pricing-table.compact .pricing-row {
    grid-template-columns: minmax(190px, 1fr) minmax(110px, 0.5fr) minmax(90px, 0.35fr);
  }
  .pricing-row .mini-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .confidence-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .confidence-grid p:not(.eyebrow) {
    margin: 0 auto;
  }

  .text-link {
    justify-self: center;
  }

  .service-section,
  .service-section.reverse {
    grid-template-columns: 1fr;
  }
  .service-section.reverse .service-image {
    order: 0;
  }
  .treatments-home {
    background-size: auto, auto, 100% 100%, auto;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  }
  .treatments-home .wrap {
    width: min(100% - 32px, 1180px);
  }
  .treatment-menu {
    width: 100%;
  }
  .treatment-menu-row {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3rem);
  }
  .treatment-menu-row img {
    height: clamp(220px, 30vw, 300px);
  }
  .cta img {
    object-position: 58% center;
  }
}

@media (max-width: 620px) {
  body {
    padding-top: 66px;
    font-size: 15px;
    line-height: 1.6;
  }

  .splash-wordmark span {
    max-width: 17rem;
    text-align: center;
    letter-spacing: 0.3em;
  }

  .nav {
    min-height: auto;
    grid-template-columns: 46px 1fr 46px;
    padding: 0.62rem 0;
    gap: 0.45rem;
  }

  .brand-wordmark strong { font-size: 1.35rem; }
  .brand-wordmark span {
    font-size: 0.36rem;
    letter-spacing: 0.28em;
  }
  .brand span { font-size: 0.52rem; letter-spacing: 0.22em; }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    top: calc(100% + 6px);
  }

  .hero {
    min-height: auto;
    overflow: visible;
    padding: 0.9rem 0 2.8rem;
    background: var(--paper);
  }

  .hero::before { display: none; }

  .hero-image {
    position: relative;
    inset: auto;
    display: block;
    width: min(calc(100% - 28px), 440px);
    height: min(58svh, 430px);
    margin: 0 auto;
    border-radius: 18px;
    object-fit: cover;
    object-position: 54% top;
    box-shadow: 0 22px 52px rgba(45, 39, 34, 0.13);
    animation: none;
  }

  .hero-content {
    min-height: auto;
    display: block;
    padding-top: clamp(1.45rem, 6vw, 2.2rem);
    padding-bottom: 0;
  }

  .hero-copy {
    width: min(100%, 29rem);
    margin: 0 auto;
    padding-bottom: 0.25rem;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy .lead,
  .hero-note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-copy > .reveal {
    transition-delay: calc(1300ms + var(--reveal-delay, 0ms));
  }

  h1 {
    max-width: 8.5ch;
    font-size: clamp(2.85rem, 14vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.05rem);
    line-height: 1.03;
  }

  h3 {
    font-size: clamp(1.42rem, 7vw, 1.8rem);
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.64rem;
    letter-spacing: 0.2em;
  }

  .lead {
    font-size: 1rem;
  }

  .about-copy h2 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
  .founder-quote { font-size: clamp(1.45rem, 8vw, 2rem); }
  .hero .lead {
    max-width: 27ch;
    margin-top: 1.35rem;
    font-size: 1.02rem;
  }

  .hero-note {
    max-width: 27rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-top: 1.75rem;
  }

  .hero-actions, .trust-grid, .cards, .steps, .gallery { grid-template-columns: 1fr; display: grid; }
  .button {
    width: 100%;
    min-height: 50px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.66rem;
  }

  .wrap,
  .treatments-home .wrap,
  .footer-grid {
    width: min(100% - 28px, 1180px);
  }

  .section { padding: clamp(3.2rem, 12vw, 4.6rem) 0; }

  .section-heading {
    margin-bottom: 1.8rem;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading.centered .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .section-actions {
    justify-content: stretch;
  }

  .trust-item {
    min-height: auto;
    padding: 1.2rem 0.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 244, 0.16);
    text-align: center;
  }
  .trust-item:last-child { border-bottom: 0; }

  .product-band {
    padding: 2.6rem 0;
  }

  .product-mark {
    min-width: 0;
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .confidence-grid p:not(.eyebrow) {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .about-feature::before {
    background:
      linear-gradient(180deg, rgba(7, 63, 61, 0.96) 0%, rgba(18, 59, 57, 0.9) 58%, rgba(18, 59, 57, 0.7) 100%),
      url("assets/paua-texture.png") center top / 760px auto no-repeat;
  }

  .about-grid {
    gap: 2rem;
  }

  .about-portrait {
    padding: 0.72rem;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
  }

  .portrait-crop {
    aspect-ratio: 4 / 4.55;
  }

  .founder-signals span {
    flex: 1 1 100%;
    text-align: center;
  }

  .testimonial-card {
    min-height: auto;
    padding: 1.35rem 0.2rem 1.35rem 1.1rem;
  }

  .service-section {
    min-height: auto;
  }
  .service-image {
    min-height: 0;
  }
  .service-image img {
    aspect-ratio: 1.18 / 1;
    height: auto;
  }
  .service-copy {
    padding: 1.35rem;
  }
  .journey-cards,
  .resource-grid,
  .service-detail-grid,
  .service-detail-grid.two,
  .pricing-small-grid {
    grid-template-columns: 1fr;
  }
  .pricing-row,
  .pricing-table.compact .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    padding: 1rem;
  }
  .pricing-head {
    display: none;
  }

  .pricing-note {
    padding: 1rem;
  }

  .pricing-group-heading {
    padding: 1.1rem;
  }

  .pricing-row > span:nth-child(2)::before {
    content: "Time: ";
    color: var(--teal);
    font-weight: 800;
  }

  .pricing-row > span:nth-child(3)::before {
    content: "Price: ";
    color: var(--muted);
    font-weight: 700;
  }

  .pricing-row .mini-button {
    justify-self: stretch;
    margin-top: 0.3rem;
  }

  .content-columns {
    columns: 1;
  }
  .journey-card {
    min-height: auto;
    padding: 1.1rem;
  }
  .treatments-home {
    padding-top: clamp(4rem, 14vw, 5.5rem);
    padding-bottom: clamp(4rem, 14vw, 5.5rem);
    background-size: auto, auto, 100% 100%, auto;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  }
  .treatment-menu-row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.35rem 0;
  }
  .treatment-menu-row img {
    height: auto;
    aspect-ratio: 1.22 / 1;
  }
  .treatment-menu-copy h3 {
    display: block;
    margin-bottom: 0.75rem;
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }
  .treatment-menu-copy h3 span {
    display: block;
    margin-top: 0.35rem;
  }

  .treatment-menu-copy p {
    font-size: 1rem;
  }

  .treatment-actions {
    gap: 0.65rem;
  }

  .treatment-actions,
  .treatment-more,
  .mini-button {
    width: 100%;
    max-width: none;
  }
  .mini-button {
    min-height: 44px;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .page-hero {
    padding: clamp(4.2rem, 16vw, 6rem) 0 clamp(3rem, 12vw, 4.2rem);
  }

  .page-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 11vw, 3.7rem);
    line-height: 1.04;
  }

  .contact-card,
  .form,
  details {
    padding: 1rem;
  }

  input,
  textarea,
  select {
    min-height: 48px;
    font-size: 16px;
  }

  .cta img {
    object-position: 63% center;
  }
  .cta::after {
    background:
      linear-gradient(180deg, rgba(248, 242, 234, 0.22) 0%, rgba(248, 242, 234, 0.86) 48%, rgba(248, 242, 234, 0.98) 100%),
      linear-gradient(90deg, rgba(248, 242, 234, 0.82), rgba(248, 242, 234, 0.2));
  }

  .cta .wrap {
    min-height: clamp(520px, 92svh, 680px);
    justify-content: flex-end;
    padding: clamp(4rem, 18vw, 6rem) 0 2.6rem;
  }

  .cta h2 {
    max-width: 9ch;
  }

  .cta .lead,
  .cta .hero-note {
    max-width: 28rem;
  }

  .footer-grid {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  footer {
    padding: 2.2rem 0;
  }
}

@media (max-width: 380px) {
  .brand-wordmark strong { font-size: 1.22rem; }
  .brand-wordmark span {
    font-size: 0.32rem;
    letter-spacing: 0.24em;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-image {
    height: min(52svh, 360px);
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.65rem);
  }

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

  .hero-note {
    display: none;
  }

  .button,
  .mini-button {
    letter-spacing: 0.1em;
  }
}

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

  html:not(.motion-on) *,
  html:not(.motion-on) *::before,
  html:not(.motion-on) *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  html:not(.motion-on) .reveal,
  html:not(.motion-on) .reveal-left,
  html:not(.motion-on) .reveal-right,
  html:not(.motion-on) .reveal-pop,
  html:not(.motion-on) .reveal-soft,
  html:not(.motion-on) .image-reveal,
  html:not(.motion-on) .hero-image {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }

  html:not(.motion-on) .hero::before {
    opacity: 0;
  }

  html:not(.motion-on) .site-splash,
  html:not(.motion-on) .splash-wordmark {
    animation-duration: 0.001ms !important;
  }
}
