﻿:root {
  --ink: #1a1a1a;
  --brown: #2e1811;
  --muted: #5b514c;
  --soft: #fff8f3;
  --cream: #fff5ed;
  --line: #efd9ce;
  --coral: #d93658;
  --orange: #ff946b;
  --salmon: #fc6d52;
  --page-bg: #fff;
  --focus-ring: rgba(217, 54, 88, 0.34);
  --display: var(--serif);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --pill-height: 40px;
  --max: 1280px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page-bg);
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.45;
}

body:not(:has(.hero)) {
  background: #fff8f3;
}

body:not(:has(.hero)) .service-detail-grid article,
body:not(:has(.hero)) .service-cta,
body:not(:has(.hero)) .legal-grid article,
body:not(:has(.hero)) .footer {
  background: #fff8f3;
}

@keyframes hero-glow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nav-rise-in {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fade-scale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes seo-bubble-float {
  from {
    transform: translate3d(var(--bubble-start-x), var(--bubble-start-y), 0) scale(var(--bubble-scale));
  }

  to {
    transform: translate3d(var(--bubble-end-x), var(--bubble-end-y), 0) scale(calc(var(--bubble-scale) * 1.08));
  }
}

@keyframes seo-bubble-breathe {
  0%,
  100% {
    border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    opacity: var(--bubble-opacity);
  }

  50% {
    border-radius: 62% 38% 44% 56% / 38% 58% 42% 62%;
    opacity: calc(var(--bubble-opacity) + 0.14);
  }
}

@keyframes hero-bubble-roam-a {
  0% {
    transform: translate3d(0, 0, 0) scale(var(--bubble-scale));
  }

  35% {
    transform: translate3d(52vw, -24vh, 0) scale(calc(var(--bubble-scale) * 1.06));
  }

  68% {
    transform: translate3d(72vw, -56vh, 0) scale(calc(var(--bubble-scale) * 0.94));
  }

  100% {
    transform: translate3d(30vw, -70vh, 0) scale(calc(var(--bubble-scale) * 1.02));
  }
}

@keyframes hero-bubble-roam-b {
  0% {
    transform: translate3d(0, 0, 0) scale(var(--bubble-scale));
  }

  38% {
    transform: translate3d(-48vw, 30vh, 0) scale(calc(var(--bubble-scale) * 1.08));
  }

  72% {
    transform: translate3d(-72vw, 62vh, 0) scale(calc(var(--bubble-scale) * 0.96));
  }

  100% {
    transform: translate3d(-28vw, 72vh, 0) scale(calc(var(--bubble-scale) * 1.04));
  }
}

@keyframes statement-flow {
  0% {
    background-position: var(--statement-x) var(--statement-y), 0% 50%, 100% 50%, 50% 0%;
  }

  50% {
    background-position: var(--statement-x) var(--statement-y), 100% 50%, 0% 50%, 50% 100%;
  }

  100% {
    background-position: var(--statement-x) var(--statement-y), 0% 50%, 100% 50%, 50% 0%;
  }
}

@keyframes statement-lines {
  from {
    transform: translateX(calc(-8% + var(--statement-shift-x))) translateY(var(--statement-shift-y)) skewX(-12deg);
  }

  to {
    transform: translateX(calc(8% + var(--statement-shift-x))) translateY(var(--statement-shift-y)) skewX(-12deg);
  }
}

@keyframes orbit-dot {
  from {
    transform: rotate(0deg) translateX(var(--dot-radius, 88px)) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(var(--dot-radius, 88px)) rotate(-360deg);
  }
}

@keyframes float-shape {
  from {
    opacity: 0.78;
  }

  to {
    opacity: 1;
  }
}

@property --shape-glow {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@keyframes lava-morph {
  0% {
    border-radius:
      34% 66% 48% 52% /
      58% 32% 68% 42%;
    transform: translate(var(--shape-move-x), var(--shape-move-y)) rotate(var(--shape-rotate)) scale(var(--shape-scale-x), calc(var(--shape-scale-y) + 0.03));
  }

  18% {
    border-radius:
      72% 28% 58% 42% /
      36% 68% 32% 64%;
    transform: translate(calc(var(--shape-move-x) + var(--shape-drift-x)), calc(var(--shape-move-y) + var(--shape-drift-y))) rotate(calc(var(--shape-rotate) + 18deg)) scale(calc(var(--shape-scale-x-mid) + 0.08), calc(var(--shape-scale-y) - 0.02));
  }

  38% {
    border-radius:
      40% 60% 30% 70% /
      72% 38% 62% 28%;
    transform: translate(calc(var(--shape-move-x) + var(--shape-drift-x)), var(--shape-move-y)) rotate(calc(var(--shape-rotate) - 16deg)) scale(calc(var(--shape-scale-x) + 0.15), calc(var(--shape-scale-y-mid) + 0.02));
  }

  58% {
    border-radius:
      62% 38% 76% 24% /
      30% 58% 42% 70%;
    transform: translate(calc(var(--shape-move-x) - var(--shape-drift-x)), calc(var(--shape-move-y) + var(--shape-drift-y))) rotate(calc(var(--shape-rotate) + 10deg)) scale(calc(var(--shape-scale-x-mid) - 0.02), calc(var(--shape-scale-y-mid) + 0.16));
  }

  78% {
    border-radius:
      28% 72% 44% 56% /
      64% 34% 74% 26%;
    transform: translate(var(--shape-move-x), calc(var(--shape-move-y) - var(--shape-drift-y))) rotate(calc(var(--shape-rotate) + 22deg)) scale(calc(var(--shape-scale-x-mid) + 0.03), calc(var(--shape-scale-y-mid) + 0.11));
  }

  100% {
    border-radius:
      56% 44% 68% 32% /
      40% 66% 34% 60%;
    transform: translate(calc(var(--shape-move-x) - var(--shape-drift-x)), calc(var(--shape-move-y) - var(--shape-drift-y))) rotate(calc(var(--shape-rotate) - 20deg)) scale(calc(var(--shape-scale-x) + 0.06), calc(var(--shape-scale-y) + 0.01));
  }
}

@keyframes lava-presence {
  0%,
  7% {
    opacity: 0;
  }

  14%,
  84% {
    opacity: calc(var(--shape-opacity) + var(--shape-glow));
  }

  94%,
  100% {
    opacity: 0;
  }
}

@keyframes lava-travel-a {
  0% {
    left: -26%;
    top: 30%;
  }

  18% {
    left: 8%;
    top: 18%;
  }

  46% {
    left: 46%;
    top: 8%;
  }

  74% {
    left: 68%;
    top: 42%;
  }

  100% {
    left: 112%;
    top: 64%;
  }
}

@keyframes lava-travel-b {
  0% {
    left: 116%;
    top: 12%;
  }

  16% {
    left: 78%;
    top: 16%;
  }

  46% {
    left: 58%;
    top: 60%;
  }

  74% {
    left: 14%;
    top: 36%;
  }

  100% {
    left: -24%;
    top: 72%;
  }
}

@keyframes lava-travel-c {
  0% {
    left: 36%;
    top: 112%;
  }

  18% {
    left: 38%;
    top: 68%;
  }

  42% {
    left: 8%;
    top: 52%;
  }

  72% {
    left: 72%;
    top: 34%;
  }

  100% {
    left: 52%;
    top: -26%;
  }
}

@keyframes lava-travel-d {
  0% {
    left: -18%;
    top: 8%;
  }

  20% {
    left: 22%;
    top: 28%;
  }

  54% {
    left: 52%;
    top: 18%;
  }

  82% {
    left: 68%;
    top: 60%;
  }

  100% {
    left: 118%;
    top: 72%;
  }
}

@keyframes lava-travel-e {
  0% {
    left: 108%;
    top: 58%;
  }

  18% {
    left: 82%;
    top: 54%;
  }

  48% {
    left: 66%;
    top: 26%;
  }

  76% {
    left: 20%;
    top: 50%;
  }

  100% {
    left: -22%;
    top: 38%;
  }
}

@keyframes lava-travel-f {
  0% {
    left: 14%;
    top: 112%;
  }

  22% {
    left: 16%;
    top: 74%;
  }

  50% {
    left: 34%;
    top: 44%;
  }

  78% {
    left: 72%;
    top: 70%;
  }

  100% {
    left: 92%;
    top: -18%;
  }
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --eyebrow-shift-x: 0px;
  --eyebrow-shift-y: 0px;
  --orb-x: 0px;
  --orb-y: 0px;
  --shape-x: 0px;
  --shape-y: 0px;
  --shape-a-x: 0px;
  --shape-a-y: 0px;
  --shape-b-x: 0px;
  --shape-b-y: 0px;
  --shape-c-x: 0px;
  --shape-c-y: 0px;
  position: relative;
  z-index: 1000;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  padding: 105px 80px 0;
  color: white;
  background:
    linear-gradient(120deg, rgba(253, 91, 132, 0.96) 0%, rgba(251, 171, 107, 0.98) 52%, rgba(253, 188, 201, 0.98) 100%),
    linear-gradient(150deg, #f472b6 0%, #fda4af 50%, #fdba74 100%);
  background-size: 180% 180%, 180% 180%;
  animation: hero-glow 14s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 84% 72%, rgba(255, 244, 235, 0.12), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.07), transparent 34%, rgba(255, 255, 255, 0.08) 72%, transparent);
  opacity: 0.68;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 62%);
  filter: blur(22px);
  transform: translate(var(--orb-x), var(--orb-y));
  pointer-events: none;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bubbles span {
  --bubble-scale: 1;
  --bubble-opacity: 0.48;
  --bubble-breathe-speed: 12s;
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.72), transparent 25%),
    radial-gradient(circle at 68% 72%, rgba(250, 77, 125, 0.34), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 148, 107, 0.3));
  box-shadow:
    inset 12px 16px 38px rgba(255, 255, 255, 0.24),
    inset -18px -16px 42px rgba(250, 77, 125, 0.16),
    0 24px 60px rgba(116, 34, 30, 0.14);
  opacity: var(--bubble-opacity);
  animation: seo-bubble-breathe var(--bubble-breathe-speed) ease-in-out infinite;
}

.hero-bubbles span:nth-child(1) {
  --bubble-speed: 24s;
  --bubble-breathe-speed: 12s;
  --bubble-scale: 0.94;
  left: -4%;
  bottom: 8%;
  width: clamp(150px, 18vw, 300px);
  height: clamp(150px, 18vw, 300px);
  animation:
    hero-bubble-roam-a var(--bubble-speed) linear infinite alternate,
    seo-bubble-breathe var(--bubble-breathe-speed) ease-in-out infinite;
}

.hero-bubbles span:nth-child(2) {
  --bubble-speed: 28s;
  --bubble-breathe-speed: 14s;
  --bubble-scale: 0.82;
  --bubble-opacity: 0.4;
  top: 15%;
  right: -2%;
  width: clamp(110px, 13vw, 220px);
  height: clamp(110px, 13vw, 220px);
  animation:
    hero-bubble-roam-b var(--bubble-speed) linear infinite alternate,
    seo-bubble-breathe var(--bubble-breathe-speed) ease-in-out infinite;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-shapes span {
  --shape-move-x: 0px;
  --shape-move-y: 0px;
  --shape-drift-x: 18px;
  --shape-drift-y: -14px;
  --shape-rotate: 0deg;
  --shape-scale-x: 0.82;
  --shape-scale-y: 0.82;
  --shape-scale-x-mid: 0.86;
  --shape-scale-y-mid: 0.86;
  --shape-glow: 0;
  --shape-opacity: 0.52;
  position: absolute;
  display: block;
  width: clamp(230px, 24vw, 430px);
  height: clamp(230px, 24vw, 430px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48% 52% 58% 42% / 46% 40% 60% 54%;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.56), transparent 27%),
    radial-gradient(circle at 68% 72%, rgba(255, 79, 124, 0.48), transparent 42%),
    radial-gradient(circle at 22% 82%, rgba(255, 159, 75, 0.34), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 178, 136, 0.44) 48%, rgba(255, 112, 146, 0.28));
  box-shadow:
    inset 18px 22px 72px rgba(255, 255, 255, 0.2),
    inset -34px -28px 74px rgba(255, 94, 126, 0.22),
    0 38px 110px rgba(148, 41, 42, 0.16);
  opacity: 0;
  filter: blur(0.15px) saturate(1.2);
  backdrop-filter: blur(7px) saturate(1.24);
  animation:
    lava-morph 8.5s ease-in-out infinite alternate,
    lava-travel-a 42s ease-in-out infinite,
    lava-presence 24s ease-in-out infinite;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    box-shadow 260ms ease;
}

.hero-shapes span::before,
.hero-shapes span::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: inherit;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-shapes span::before {
  background:
    radial-gradient(ellipse at 24% 34%, rgba(255, 255, 255, 0.38), transparent 28%),
    radial-gradient(ellipse at 78% 64%, rgba(255, 118, 83, 0.34), transparent 36%);
  filter: blur(8px);
  opacity: 0.54;
  transform: rotate(-12deg) scale(0.92, 1.08);
}

.hero-shapes span::after {
  inset: 17%;
  background:
    radial-gradient(ellipse at 44% 42%, rgba(255, 88, 131, 0.36), transparent 42%),
    linear-gradient(135deg, transparent 14%, rgba(255, 249, 217, 0.42) 46%, transparent 72%);
  filter: blur(13px);
  opacity: 0.58;
  transform: rotate(28deg) scale(1.2, 0.7);
}

.hero-shapes span:nth-child(1) {
  --shape-move-x: var(--shape-a-x);
  --shape-move-y: var(--shape-a-y);
  --shape-drift-x: 56px;
  --shape-drift-y: -42px;
  --shape-rotate: -14deg;
  --shape-opacity: 0.58;
  left: -26%;
  top: 30%;
  width: clamp(280px, 29vw, 520px);
  height: clamp(280px, 29vw, 520px);
}

.hero-shapes span:nth-child(2) {
  --shape-move-x: var(--shape-b-x);
  --shape-move-y: var(--shape-b-y);
  --shape-drift-x: -52px;
  --shape-drift-y: 54px;
  --shape-rotate: 18deg;
  --shape-opacity: 0.5;
  left: 116%;
  top: 12%;
  width: clamp(210px, 21vw, 390px);
  height: clamp(300px, 30vw, 560px);
  animation:
    lava-morph 10.5s ease-in-out infinite alternate-reverse,
    lava-travel-b 50s ease-in-out infinite,
    lava-presence 28s ease-in-out 5s infinite;
}

.hero-shapes span:nth-child(3) {
  --shape-move-x: var(--shape-c-x);
  --shape-move-y: var(--shape-c-y);
  --shape-drift-x: 70px;
  --shape-drift-y: 34px;
  --shape-rotate: -8deg;
  --shape-opacity: 0.46;
  width: clamp(420px, 42vw, 760px);
  height: clamp(190px, 19vw, 340px);
  left: 36%;
  top: 112%;
  animation:
    lava-morph 12s ease-in-out infinite alternate,
    lava-travel-c 58s ease-in-out infinite,
    lava-presence 31s ease-in-out 11s infinite;
}

.hero-shapes span:nth-child(4) {
  --shape-move-x: var(--shape-a-x);
  --shape-move-y: var(--shape-a-y);
  --shape-drift-x: 44px;
  --shape-drift-y: 62px;
  --shape-rotate: 23deg;
  --shape-opacity: 0.42;
  left: -18%;
  top: 8%;
  width: clamp(160px, 15vw, 280px);
  height: clamp(160px, 15vw, 280px);
  animation:
    lava-morph 9.5s ease-in-out infinite alternate,
    lava-travel-d 44s ease-in-out infinite,
    lava-presence 22s ease-in-out 8s infinite;
}

.hero-shapes span:nth-child(5) {
  --shape-move-x: var(--shape-b-x);
  --shape-move-y: var(--shape-b-y);
  --shape-drift-x: -64px;
  --shape-drift-y: 38px;
  --shape-rotate: -20deg;
  --shape-opacity: 0.5;
  left: 108%;
  top: 58%;
  width: clamp(240px, 25vw, 460px);
  height: clamp(260px, 27vw, 520px);
  animation:
    lava-morph 11.5s ease-in-out infinite alternate-reverse,
    lava-travel-e 52s ease-in-out infinite,
    lava-presence 26s ease-in-out 15s infinite;
}

.hero-shapes span:nth-child(6) {
  --shape-move-x: var(--shape-c-x);
  --shape-move-y: var(--shape-c-y);
  --shape-drift-x: 54px;
  --shape-drift-y: -46px;
  --shape-rotate: 10deg;
  --shape-opacity: 0.38;
  left: 14%;
  top: 112%;
  width: clamp(120px, 12vw, 220px);
  height: clamp(120px, 12vw, 220px);
  animation:
    lava-morph 8s ease-in-out infinite alternate,
    lava-travel-f 48s ease-in-out infinite,
    lava-presence 20s ease-in-out 18s infinite;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  height: 76px;
  margin: 0;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(46, 24, 17, 0.08);
  backdrop-filter: blur(16px);
  transform: translate(-50%, 0);
  animation: nav-rise-in 900ms var(--ease-out) both;
  transition:
    width 260ms var(--ease-out),
    height 260ms var(--ease-out),
    top 260ms var(--ease-out),
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    padding 260ms var(--ease-out);
}

.nav.is-scrolled {
  top: 10px;
  width: min(calc(100% - 72px), 1120px);
  height: 62px;
  padding: 0 18px;
  border-color: rgba(253, 97, 130, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(46, 24, 17, 0.16);
}

.nav::after {
  content: none;
}

.brand picture,
.brand img {
  display: block;
}

.brand img {
  width: 112px;
  height: auto;
  transition: width 260ms var(--ease-out);
}

.nav.is-scrolled .brand img {
  width: 96px;
}

.nav.is-scrolled .nav-links {
  gap: 36px;
  font-size: clamp(12px, 0.9vw, 13px);
}

.nav.is-scrolled .pill-button {
  min-height: 36px;
  padding: 8px 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  font-size: clamp(13px, 1vw, 14px);
  transition: gap 260ms var(--ease-out), font-size 260ms ease;
}

.nav-links a,
.footer a {
  transition: opacity 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.footer a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
.footer a:focus-visible,
.pill-button:focus-visible,
.nav-toggle:focus-visible,
.contact-form button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(46, 24, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span.menu-dots {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor;
  transform: translateX(-8px);
  transition: transform 200ms var(--ease-out);
}

.menu-label {
  display: none;
}

.mobile-menu {
  display: none;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--pill-height);
  border-radius: 999px;
  padding: 10px 24px;
  background: #fff;
  color: #1a1a1a;
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 700;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    min-height 260ms var(--ease-out),
    padding 260ms var(--ease-out);
}

.pill-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(98, 28, 16, 0.16);
}

.pill-button img {
  width: 16px;
  height: 16px;
}

.nav-cta {
  margin-left: 46px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100svh - 105px);
  width: min(86vw, 1120px);
  margin: 0 auto;
  padding: 0 0 clamp(88px, 11vw, 158px);
  align-items: flex-start;
  text-align: left;
  perspective: 1200px;
}

.mobile-hero-cta {
  display: none;
}

.mobile-impact-stats,
.mobile-contact-cta,
.faq-title-mobile,
.mobile-figma-brand,
.mobile-nav-cta,
.mobile-footer-content,
.statement-eyebrow-mobile,
.faq-eyebrow-mobile,
.statement-attribution,
.hero-rule {
  display: none;
}

.mobile-brand,
.hero-title-mobile,
.hero-mobile-desc {
  display: none;
}

.hero-content .eyebrow {
  animation: fade-in 800ms 160ms var(--ease-out) both;
  transform: translate3d(var(--eyebrow-shift-x), var(--eyebrow-shift-y), 0);
  transition: transform 120ms linear;
}

.hero-content h1 {
  animation: fade-in 900ms 300ms var(--ease-out) both;
  font-size: clamp(50px, 5.9vw, 96px);
  line-height: 0.98;
  transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 120ms linear;
}

.hero-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 247, 239, 0.88);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.45;
  text-shadow: 0 8px 24px rgba(73, 37, 22, 0.18);
  animation: fade-in 900ms 430ms var(--ease-out) both;
  transform: translate3d(calc(var(--hero-shift-x, 0px) * 0.45), calc(var(--hero-shift-y, 0px) * 0.45), 0);
  transition: transform 120ms linear;
}

.launch-note {
  margin: 16px 0 0;
  color: rgba(255, 247, 239, 0.94);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-content > * {
  max-width: 100%;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #fff;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 400;
  letter-spacing: 0.15em;
}

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

h1 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(56px, 7.8vw, 112px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

h3 {
  font-family: var(--display);
  font-weight: 400;
}

.benefits {
  position: relative;
  z-index: 1001;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(calc(100% - 96px), var(--max));
  margin: -34px auto 0;
  border: 1px solid rgba(239, 217, 206, 0.82);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 22px 60px rgba(97, 38, 23, 0.1);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.benefits article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  min-height: 108px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  align-items: center;
  transition: background-color 220ms ease, transform 220ms ease;
}

.benefits article:hover {
  background: rgba(255, 255, 255, 0.46);
  transform: translateY(-3px);
}

.benefits article:first-child {
  padding-left: 26px;
}

.benefits article:last-child {
  border-right: 0;
}

.benefit-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(253, 97, 130, 0.1);
  color: var(--coral);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1;
}

.benefits p {
  margin: 0;
  color: #4e514d;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.32;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 80px;
  background: transparent;
}

.services,
.about,
.seo-section,
.process,
.faq-section,
.statement,
.contact-wrap {
  min-height: 100svh;
}

.services,
.about,
.seo-section,
.process,
.faq-section,
.contact-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services::before,
.about::before,
.seo-section::before,
.process::before,
.faq-section::before,
.contact-wrap::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 4vw, 58px);
  z-index: -1;
  border: 1px solid rgba(239, 217, 206, 0.78);
  border-radius: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 243, 0.2)),
    repeating-linear-gradient(90deg, rgba(217, 54, 88, 0.035) 0 1px, transparent 1px 48px);
  pointer-events: none;
}

.faq-section .section-heading {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto;
  text-align: left;
}

.section-intro {
  max-width: 660px;
  margin: 28px 0 0;
  color: #5b514c;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
}

.services {
  padding-bottom: 92px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(100%, 1360px);
  margin: 92px auto 0;
}

.service-card {
  display: grid;
  grid-template-rows: 86px 76px 92px 1fr auto;
  min-height: 430px;
  align-items: start;
  justify-items: center;
  padding: 34px clamp(26px, 2.4vw, 38px) 32px;
  border: 1px solid rgba(232, 209, 199, 0.82);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(97, 38, 23, 0.055);
  text-align: center;
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms ease,
    border-color 260ms ease,
    opacity 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 97, 130, 0.28);
  box-shadow: 0 24px 56px rgba(97, 38, 23, 0.09);
}

.service-card:last-child {
  box-shadow: 0 18px 42px rgba(97, 38, 23, 0.055);
}

.service-icon {
  --dot-radius: 43px;
  --icon-bg: #fa4d7d;
  --icon-shadow: rgba(250, 77, 125, 0.2);
  --dot-a: rgba(250, 77, 125, 0.5);
  --dot-b: rgba(255, 148, 107, 0.38);
  --dot-c: rgba(253, 188, 201, 0.56);
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--icon-bg);
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 31px);
  box-shadow: 0 12px 28px var(--icon-shadow);
  transition: box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.service-icon--image img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: block;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .wirora-mark {
  width: 36px;
  height: 36px;
  stroke-width: 2.8;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px;
  border-radius: 999px;
  background: var(--dot-a);
  box-shadow:
    0 0 0 4px rgba(253, 97, 130, 0.08),
    18px 11px 0 -2px var(--dot-b),
    -15px 17px 0 -3px var(--dot-c);
  animation: orbit-dot 10s linear infinite;
}

.service-icon::after {
  width: 4px;
  height: 4px;
  margin: -2px;
  background: var(--dot-b);
  box-shadow:
    0 0 0 3px rgba(255, 148, 107, 0.08),
    -19px -8px 0 -2px var(--dot-a),
    13px -18px 0 -3px var(--dot-c);
  animation-duration: 14s;
  animation-direction: reverse;
}

.service-card:nth-child(2) .service-icon {
  --dot-radius: 39px;
  --icon-bg: #ff7f5f;
  --icon-shadow: rgba(255, 127, 95, 0.2);
  --dot-a: rgba(255, 127, 95, 0.48);
  --dot-b: rgba(250, 77, 125, 0.34);
  --dot-c: rgba(255, 178, 147, 0.52);
}

.service-card:nth-child(2) .service-icon::before {
  animation-duration: 10s;
  animation-direction: reverse;
}

.service-card:nth-child(2) .service-icon::after {
  animation-duration: 7s;
  animation-direction: normal;
}

.service-card:nth-child(3) .service-icon {
  --dot-radius: 45px;
  --icon-bg: #ffad91;
  --icon-shadow: rgba(255, 173, 145, 0.22);
  --dot-a: rgba(255, 173, 145, 0.54);
  --dot-b: rgba(250, 77, 125, 0.32);
  --dot-c: rgba(255, 127, 95, 0.38);
}

.service-card:nth-child(3) .service-icon::before {
  animation-duration: 12s;
}

.service-card:nth-child(3) .service-icon::after {
  animation-duration: 9s;
}

.service-card:nth-child(4) .service-icon {
  --dot-radius: 40px;
  --icon-bg: #f7a9c1;
  --icon-shadow: rgba(247, 169, 193, 0.24);
  --dot-a: rgba(247, 169, 193, 0.58);
  --dot-b: rgba(250, 77, 125, 0.38);
  --dot-c: rgba(255, 173, 145, 0.4);
}

.service-card:nth-child(4) .service-icon::before {
  animation-duration: 6.5s;
  animation-direction: reverse;
}

.service-card:nth-child(4) .service-icon::after {
  animation-duration: 13s;
  animation-direction: normal;
}

.service-card:hover .service-icon {
  transform: scale(1.04);
  box-shadow: 0 16px 34px var(--icon-shadow);
}

.service-card h3 {
  align-self: start;
  margin: 0;
  font-size: clamp(25px, 2.15vw, 31px);
  line-height: 1.08;
  text-wrap: balance;
}

.service-kicker {
  align-self: start;
  max-width: 280px;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
  text-wrap: balance;
}

.service-card > p:not(.service-kicker) {
  align-self: start;
  max-width: 300px;
  margin: 0 auto;
  color: rgba(26, 26, 26, 0.7);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: end;
  margin-top: 22px;
  min-height: 40px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    box-shadow 220ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(98, 28, 16, 0.16);
}

.section-action {
  display: flex;
  width: min(100%, 1360px);
  margin: 34px auto 0;
  justify-content: flex-end;
}

.pill-button img[src*="arrow.svg"] {
  display: none;
}

.seo-section .section-heading,
.seo-grid {
  position: relative;
  z-index: 1;
}

.seo-bubbles {
  position: absolute;
  inset: clamp(24px, 4vw, 64px);
  z-index: 0;
  overflow: hidden;
  border-radius: clamp(26px, 5vw, 52px);
  pointer-events: none;
}

.seo-bubbles span {
  --bubble-main: 250, 77, 125;
  --bubble-glow: 255, 148, 107;
  --bubble-start-x: 0vw;
  --bubble-start-y: 0vh;
  --bubble-end-x: 22vw;
  --bubble-end-y: -18vh;
  --bubble-scale: 1;
  --bubble-opacity: 0.36;
  --bubble-breathe-speed: 12s;
  position: absolute;
  left: var(--bubble-left);
  top: var(--bubble-top);
  width: var(--bubble-size);
  height: var(--bubble-size);
  border: 1px solid rgba(var(--bubble-main), 0.26);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 68% 72%, rgba(var(--bubble-main), 0.34), transparent 46%),
    linear-gradient(135deg, rgba(var(--bubble-main), 0.18), rgba(var(--bubble-glow), 0.24));
  box-shadow:
    inset 12px 16px 38px rgba(255, 255, 255, 0.26),
    inset -18px -16px 42px rgba(var(--bubble-main), 0.14),
    0 24px 60px rgba(var(--bubble-main), 0.12);
  filter: blur(0.1px);
  opacity: var(--bubble-opacity);
  animation:
    seo-bubble-float var(--bubble-speed) ease-in-out infinite alternate,
    seo-bubble-breathe var(--bubble-breathe-speed) ease-in-out infinite;
}

.seo-bubbles span:nth-child(1) {
  --bubble-main: 250, 77, 125;
  --bubble-glow: 255, 148, 107;
  --bubble-left: 4%;
  --bubble-top: 62%;
  --bubble-size: clamp(90px, 10vw, 172px);
  --bubble-start-x: -8vw;
  --bubble-start-y: 8vh;
  --bubble-end-x: 17vw;
  --bubble-end-y: -22vh;
  --bubble-speed: 16s;
  --bubble-breathe-speed: 11s;
  --bubble-scale: 0.9;
}

.seo-bubbles span:nth-child(2) {
  --bubble-main: 255, 127, 95;
  --bubble-glow: 250, 77, 125;
  --bubble-left: 72%;
  --bubble-top: 16%;
  --bubble-size: clamp(74px, 8vw, 138px);
  --bubble-start-x: 12vw;
  --bubble-start-y: -5vh;
  --bubble-end-x: -18vw;
  --bubble-end-y: 20vh;
  --bubble-speed: 18s;
  --bubble-breathe-speed: 13s;
  --bubble-scale: 0.82;
  --bubble-opacity: 0.32;
}

.seo-bubbles span:nth-child(3) {
  --bubble-main: 255, 173, 145;
  --bubble-glow: 250, 77, 125;
  --bubble-left: 40%;
  --bubble-top: 70%;
  --bubble-size: clamp(54px, 6vw, 104px);
  --bubble-start-x: 4vw;
  --bubble-start-y: 12vh;
  --bubble-end-x: 20vw;
  --bubble-end-y: -16vh;
  --bubble-speed: 13s;
  --bubble-breathe-speed: 9s;
  --bubble-scale: 0.74;
  --bubble-opacity: 0.3;
}

.seo-bubbles span:nth-child(4) {
  --bubble-main: 247, 169, 193;
  --bubble-glow: 255, 127, 95;
  --bubble-left: 12%;
  --bubble-top: 20%;
  --bubble-size: clamp(48px, 5vw, 92px);
  --bubble-start-x: -4vw;
  --bubble-start-y: -8vh;
  --bubble-end-x: 14vw;
  --bubble-end-y: 18vh;
  --bubble-speed: 15s;
  --bubble-breathe-speed: 10s;
  --bubble-scale: 0.7;
  --bubble-opacity: 0.28;
}

.seo-bubbles span:nth-child(5) {
  --bubble-main: 255, 127, 95;
  --bubble-glow: 255, 173, 145;
  --bubble-left: 86%;
  --bubble-top: 68%;
  --bubble-size: clamp(92px, 11vw, 184px);
  --bubble-start-x: 10vw;
  --bubble-start-y: 7vh;
  --bubble-end-x: -24vw;
  --bubble-end-y: -18vh;
  --bubble-speed: 20s;
  --bubble-breathe-speed: 14s;
  --bubble-scale: 0.96;
  --bubble-opacity: 0.31;
}

.seo-bubbles span:nth-child(6) {
  --bubble-main: 250, 77, 125;
  --bubble-glow: 247, 169, 193;
  --bubble-left: 54%;
  --bubble-top: 8%;
  --bubble-size: clamp(38px, 4vw, 76px);
  --bubble-start-x: 3vw;
  --bubble-start-y: -5vh;
  --bubble-end-x: -14vw;
  --bubble-end-y: 12vh;
  --bubble-speed: 11s;
  --bubble-breathe-speed: 8s;
  --bubble-scale: 0.64;
  --bubble-opacity: 0.27;
}

.seo-grid,
.faq-list {
  width: min(100%, var(--max));
  margin: 72px auto 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  justify-items: center;
  padding: 34px clamp(26px, 3vw, 46px);
  border: 1px solid rgba(232, 209, 199, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  text-align: center;
  transition:
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.seo-grid article:hover {
  border-color: rgba(253, 97, 130, 0.18);
  box-shadow: 0 12px 28px rgba(97, 38, 23, 0.045);
}

.seo-grid h3 {
  position: relative;
  z-index: 1;
  align-self: start;
  min-height: 2.1em;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.05;
  text-wrap: balance;
}

.seo-grid p {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 31ch;
  margin: 0;
  color: #5b514c;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 209, 199, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(97, 38, 23, 0.045);
}

.faq-list summary {
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 24px 28px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.15;
}

.faq-list p {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0;
  padding: 0 28px 28px;
  color: #5b514c;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
}

.about {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

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

.about .section-intro {
  max-width: 660px;
  margin: 28px 0 0;
}

.reasons {
  --timeline-offset: clamp(84px, 7vw, 128px);
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, calc(820px + var(--timeline-offset)));
  margin: clamp(48px, 6vw, 72px) auto 0 max(32px, calc((100% - var(--max)) / 2 + 32px));
  padding-left: var(--timeline-offset);
}

.reasons::before {
  content: "";
  position: absolute;
  left: 0;
  top: 63px;
  bottom: 63px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217, 54, 88, 0.28), rgba(255, 148, 107, 0.24), rgba(247, 169, 193, 0.22));
  box-shadow: 0 0 0 5px rgba(250, 77, 125, 0.035);
  pointer-events: none;
}

.reasons article {
  --reason-accent: var(--coral);
  --reason-shadow: rgba(217, 54, 88, 0.15);
  --reason-dot-a: rgba(217, 54, 88, 0.48);
  --reason-dot-b: rgba(255, 148, 107, 0.36);
  --reason-dot-c: rgba(247, 169, 193, 0.5);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(18px, 2.6vw, 30px);
  width: min(100%, 820px);
  min-height: 126px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  position: relative;
  border: 1px solid rgba(239, 217, 206, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(97, 38, 23, 0.055);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.reasons article::before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-offset) * -1);
  top: 50%;
  width: var(--timeline-offset);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 54, 88, 0.32), rgba(255, 148, 107, 0.12));
  transform: translateY(-50%);
  pointer-events: none;
}

.reasons article::after {
  content: "";
  position: absolute;
  left: calc((var(--timeline-offset) * -1) - 8px);
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--reason-accent);
  box-shadow: 0 0 0 9px rgba(250, 77, 125, 0.09), 0 10px 24px var(--reason-shadow);
  transform: translateY(-50%);
  pointer-events: none;
}

.reasons article:hover {
  border-color: var(--reason-accent);
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(97, 38, 23, 0.08);
}

.reasons article:nth-child(2) {
  --reason-accent: var(--orange);
  --reason-shadow: rgba(255, 148, 107, 0.16);
  --reason-dot-a: rgba(255, 148, 107, 0.48);
  --reason-dot-b: rgba(217, 54, 88, 0.34);
  --reason-dot-c: rgba(255, 178, 147, 0.52);
}

.reasons article:nth-child(3) {
  --reason-accent: #f7a9c1;
  --reason-shadow: rgba(247, 169, 193, 0.18);
  --reason-dot-a: rgba(247, 169, 193, 0.58);
  --reason-dot-b: rgba(217, 54, 88, 0.36);
  --reason-dot-c: rgba(255, 148, 107, 0.34);
}

.reasons article:nth-child(1) > span::before {
  animation-duration: 9s;
}

.reasons article:nth-child(1) > span::after {
  animation-duration: 13s;
  animation-direction: reverse;
}

.reasons article:nth-child(2) > span::before {
  animation-duration: 12s;
  animation-direction: reverse;
}

.reasons article:nth-child(2) > span::after {
  animation-duration: 8s;
  animation-direction: normal;
}

.reasons article:nth-child(3) > span::before {
  animation-duration: 7.5s;
  animation-direction: normal;
}

.reasons article:nth-child(3) > span::after {
  animation-duration: 15s;
  animation-direction: reverse;
}

.reasons article > span {
  --dot-radius: clamp(44px, 5vw, 56px);
  position: relative;
  display: flex;
  width: clamp(70px, 7vw, 92px);
  height: clamp(70px, 7vw, 92px);
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: center;
  grid-column: 1;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  background: var(--reason-accent);
  box-shadow: 0 16px 34px var(--reason-shadow);
}

.reasons article > span::before,
.reasons article > span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px;
  border-radius: 999px;
  background: var(--reason-dot-a);
  box-shadow:
    0 0 0 4px rgba(253, 97, 130, 0.08),
    18px 11px 0 -2px var(--reason-dot-b),
    -15px 17px 0 -3px var(--reason-dot-c);
  animation: orbit-dot 10s linear infinite;
}

.reasons article > span::after {
  width: 4px;
  height: 4px;
  margin: -2px;
  background: var(--reason-dot-b);
  box-shadow:
    0 0 0 3px rgba(255, 148, 107, 0.08),
    -19px -8px 0 -2px var(--reason-dot-a),
    13px -18px 0 -3px var(--reason-dot-c);
  animation-duration: 14s;
  animation-direction: reverse;
}

.reasons div {
  grid-column: 2;
  justify-self: start;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 0;
  text-align: left;
}

.reasons h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.08;
}

.reasons p {
  display: block;
  max-width: 620px;
  margin: 0;
  color: #5b514c;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.52;
}

.statement {
  --statement-x: 50%;
  --statement-y: 50%;
  --statement-shift-x: 0px;
  --statement-shift-y: 0px;
  --statement-quote-x: 0px;
  --statement-quote-y: 0px;
  --statement-tilt-x: 0deg;
  --statement-tilt-y: 0deg;
  --statement-hue: 0deg;
  --statement-bg-x: 0px;
  --statement-bg-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 80px;
  background: #fd6f86;
}

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

.statement::before {
  background:
    radial-gradient(circle at var(--statement-x) var(--statement-y), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 16%, transparent 36%),
    linear-gradient(120deg, rgba(253, 97, 130, 0.95), rgba(255, 148, 107, 0.94), rgba(255, 205, 213, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0%, transparent 38%, rgba(255, 255, 255, 0.2) 72%, transparent 100%),
    linear-gradient(155deg, rgba(255, 246, 238, 0.34), transparent 48%, rgba(253, 97, 130, 0.24));
  background-size: 120% 120%, 220% 220%, 180% 180%, 160% 160%;
  filter: hue-rotate(var(--statement-hue));
  transform: translate(var(--statement-bg-x), var(--statement-bg-y)) scale(1.04);
  animation: statement-flow 16s ease-in-out infinite;
}

.statement::after {
  left: -20%;
  right: -20%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 74px,
      rgba(255, 255, 255, 0.12) 75px,
      rgba(255, 255, 255, 0.12) 76px
  );
  opacity: 0.45;
  animation: statement-lines 9s ease-in-out infinite alternate;
}

.statement-content {
  width: min(100%, 1180px);
}

.statement .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.statement blockquote {
  position: relative;
  max-width: 1128px;
  margin: 24px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(40px, 5.8vw, 82px);
  font-weight: 400;
  line-height: 1.12;
  text-align: left;
  text-shadow: 0 2px 26px rgba(46, 24, 17, 0.2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.proof-card {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 44px rgba(73, 25, 20, 0.11);
}

.proof-card span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.proof-card h3 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
}

.proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.48;
}

.process {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 14% 22%, rgba(250, 77, 125, 0.09), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(255, 148, 107, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 243, 0) 0%, rgba(255, 248, 243, 0.82) 48%, rgba(255, 255, 255, 0) 100%);
}

.process .section-heading,
.process-track {
  position: relative;
  z-index: 1;
}

.process h2 {
  font-family: var(--serif);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.1vw, 28px);
  width: min(100%, 1291px);
  margin: clamp(64px, 7vw, 96px) auto 0;
}

.track-line {
  position: absolute;
  top: 34px;
  left: 11%;
  right: 11%;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(250, 77, 125, 0.14), rgba(250, 77, 125, 0.72), rgba(255, 148, 107, 0.78), rgba(247, 169, 193, 0.62)),
    rgba(242, 205, 190, 0.8);
  box-shadow: 0 12px 34px rgba(250, 77, 125, 0.14);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 0;
  padding: 0 clamp(16px, 2vw, 24px) clamp(26px, 3vw, 34px);
  border: 1px solid rgba(239, 217, 206, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 243, 0.64)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(97, 38, 23, 0.075);
  text-align: center;
  backdrop-filter: blur(16px);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.process-step:nth-child(3) .step-number {
  --dot-radius: 78px;
}

.process-step:nth-child(4) .step-number {
  --dot-radius: 94px;
}

.process-step:nth-child(5) .step-number {
  --dot-radius: 82px;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 77, 125, 0.24);
  box-shadow: 0 30px 80px rgba(97, 38, 23, 0.12);
}

.step-number {
  --dot-radius: 88px;
  --step-bg: #fa4d7d;
  --step-shadow: rgba(250, 77, 125, 0.2);
  --dot-a: rgba(250, 77, 125, 0.5);
  --dot-b: rgba(255, 148, 107, 0.38);
  --dot-c: rgba(253, 188, 201, 0.56);
  position: relative;
  display: grid;
  width: 124px;
  height: 124px;
  margin: -28px auto 26px;
  place-items: center;
  border: 8px solid rgba(255, 244, 235, 0.9);
  border-radius: 999px;
  color: #fff;
  background: var(--step-bg);
  box-shadow:
    0 0 0 1px var(--step-shadow),
    inset 0 -16px 30px rgba(121, 23, 49, 0.16),
    0 18px 44px var(--step-shadow);
  font-family: var(--serif);
  font-size: 42px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0;
  transition: box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.process-step:nth-child(3) .step-number {
  --step-bg: #ff7f5f;
  --step-shadow: rgba(255, 127, 95, 0.2);
  --dot-a: rgba(255, 127, 95, 0.48);
  --dot-b: rgba(250, 77, 125, 0.34);
  --dot-c: rgba(255, 178, 147, 0.52);
}

.process-step:nth-child(4) .step-number {
  --step-bg: #ffad91;
  --step-shadow: rgba(255, 173, 145, 0.22);
  --dot-a: rgba(255, 173, 145, 0.54);
  --dot-b: rgba(250, 77, 125, 0.32);
  --dot-c: rgba(255, 127, 95, 0.38);
}

.process-step:nth-child(5) .step-number {
  --step-bg: #f7a9c1;
  --step-shadow: rgba(247, 169, 193, 0.24);
  --dot-a: rgba(247, 169, 193, 0.58);
  --dot-b: rgba(250, 77, 125, 0.38);
  --dot-c: rgba(255, 173, 145, 0.4);
}

.step-number::before,
.step-number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px;
  border-radius: 999px;
  background: var(--dot-a);
  box-shadow:
    0 0 0 6px rgba(253, 97, 130, 0.1),
    40px 18px 0 -2px var(--dot-b),
    -30px 34px 0 -3px var(--dot-c);
  animation: orbit-dot 9s linear infinite;
}

.step-number::after {
  width: 7px;
  height: 7px;
  margin: -3.5px;
  background: var(--dot-b);
  box-shadow:
    0 0 0 5px rgba(255, 148, 107, 0.1),
    -42px -12px 0 -2px var(--dot-a),
    26px -34px 0 -3px var(--dot-c);
  animation-duration: 12s;
  animation-direction: reverse;
}

.process-step:nth-child(3) .step-number::before {
  animation-duration: 11s;
  animation-direction: reverse;
}

.process-step:nth-child(3) .step-number::after {
  animation-duration: 8s;
  animation-direction: normal;
}

.process-step:nth-child(4) .step-number::before {
  animation-duration: 13s;
}

.process-step:nth-child(4) .step-number::after {
  animation-duration: 10s;
}

.process-step:nth-child(5) .step-number::before {
  animation-duration: 7s;
  animation-direction: reverse;
}

.process-step:nth-child(5) .step-number::after {
  animation-duration: 14s;
  animation-direction: normal;
}

.process-step:hover .step-number {
  transform: scale(1.04);
  box-shadow: 0 0 0 1px var(--step-shadow), 0 18px 42px var(--step-shadow);
}

.process-step h3 {
  align-self: start;
  min-height: 2.3em;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.12;
  text-wrap: balance;
}

.process-step p {
  align-self: start;
  width: min(100%, 270px);
  margin: 0 auto;
  color: #5b514c;
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.48;
}

.contact-wrap {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 80px;
  background: transparent;
}

.contact-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 255px);
  padding: 96px 80px 120px;
  background:
    radial-gradient(circle at 86% 0%, rgba(253, 188, 201, 0.38), transparent 34%),
    radial-gradient(circle at 5% 18%, rgba(255, 148, 107, 0.22), transparent 30%),
    linear-gradient(180deg, #fff8f3 0%, #fffaf7 42%, #fff8f3 100%);
}

.contact-page-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  width: min(100%, 1284px);
  margin: 0 auto;
  align-items: start;
}

.contact-page-copy {
  padding-top: 26px;
}

.contact-page-copy h1 {
  max-width: 560px;
  margin-top: 24px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.027em;
}

.contact-page-copy > p:not(.eyebrow, .mail-label) {
  max-width: 460px;
  margin: 30px 0 28px;
  color: #5b4038;
  font-size: clamp(18px, 1.42vw, 21px);
  line-height: 1.35;
}

.contact-page-copy .mail-label {
  margin: 46px 0 8px;
  color: #c94b5d;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.25;
}

.contact-page-copy > a {
  color: #2a1712;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.35;
}

.standalone-contact-form {
  max-width: none;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 640px;
  gap: 56px;
  width: min(100%, 1284px);
  min-height: 520px;
  padding: 50px 54px 50px 58px;
  border: 1px solid #f2ded5;
  border-radius: 30px;
  background:
    linear-gradient(112deg, rgba(253, 93, 132, 0.28) 2%, rgba(252, 148, 115, 0.22) 48%, rgba(253, 188, 198, 0.26) 98%),
    #fff8f3;
  box-shadow: 0 24px 64px rgba(97, 38, 23, 0.09);
}

.contact-copy h2 {
  max-width: 520px;
  margin-top: 24px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.027em;
}

.contact-copy > p:not(.eyebrow, .mail-label) {
  max-width: 460px;
  margin: 30px 0 28px;
  color: #5b4038;
  font-size: clamp(18px, 1.42vw, 21px);
  line-height: 1.35;
}

.mail-label {
  margin: 0 0 8px;
  color: #c94b5d;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.25;
}

.contact-copy a {
  color: #2a1712;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.35;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 24px 32px;
  padding: 34px;
  border: 1px solid #f0d7cb;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(97, 38, 23, 0.07);
}

.contact-form label {
  position: relative;
  display: block;
}

.contact-form label.full,
.contact-form fieldset.full {
  grid-column: 1 / -1;
}

.field-label {
  display: block;
  margin: 0 0 8px;
  color: #7a5148;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 62px;
  border: 1px solid #e8d1c7;
  border-radius: 16px;
  outline: none;
  background: #fffdfb;
  color: var(--ink);
  padding: 18px 20px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6a4b42;
  opacity: 1;
  transition: opacity 160ms ease;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  opacity: 0;
}

.contact-form textarea {
  min-height: 110px;
  padding-top: 22px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(253, 97, 130, 0.16);
}

.project-type-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  margin: 0;
  border: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.choice-pill input:focus {
  box-shadow: none;
}

.choice-pill span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8d1c7;
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.92);
  color: #6a4b42;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: inset 0 -10px 20px rgba(253, 97, 130, 0.025);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.choice-pill:hover span {
  border-color: rgba(217, 54, 88, 0.34);
  color: var(--brown);
  transform: translateY(-1px);
}

.choice-pill input:checked + span {
  border-color: transparent;
  background: linear-gradient(90deg, #fa5763 0%, #ff946b 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(250, 87, 99, 0.22);
}

.choice-pill input:focus-visible + span {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.hp-field {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contact-form input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--coral);
  cursor: pointer;
}

.consent-field span {
  color: #6a4b42;
  font-size: 13px;
  line-height: 1.5;
}

.consent-field a {
  color: inherit;
  text-decoration: underline;
}

.form-status {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: #6a4b42;
  font-size: 14px;
  line-height: 1.35;
}

.contact-form button {
  display: inline-flex;
  width: 100%;
  max-width: 236px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #fa5763 0%, #ff946b 100%);
  color: #fff;
  padding: 0 28px;
  cursor: pointer;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(250, 87, 99, 0.24);
}

.footer {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(230px, 1fr);
  align-items: start;
  gap: 32px;
  border-top: 1px solid #e8ddd6;
  padding: 34px 80px 26px;
  background: rgba(255, 253, 251, 0.88);
  color: #5f6662;
  font-size: clamp(11px, 0.9vw, 12px);
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer img {
  width: 124px;
  height: auto;
}

.footer nav {
  display: flex;
  gap: 30px;
  padding-top: 18px;
}

.footer-legal {
  display: grid;
  justify-items: end;
  justify-self: end;
  gap: 10px;
  text-align: right;
}

.footer-legal span {
  max-width: 210px;
  color: #8a7168;
  line-height: 1.45;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
}

.footer-social img.social-icon {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

.footer-copy {
  display: none;
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: #8a7168;
  font-size: 11px;
  letter-spacing: 0;
}

.subpage-header {
  position: relative;
  z-index: 1000;
  min-height: 108px;
  padding: 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(120deg, rgba(253, 91, 132, 0.96) 0%, rgba(251, 171, 107, 0.98) 54%, rgba(253, 188, 201, 0.96) 100%);
  color: var(--ink);
}

.subpage-header .pill-button {
  background: linear-gradient(90deg, #fa5763 0%, #ff946b 100%);
  color: #fff;
}

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

.legal-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 255px);
  padding: 96px 80px 120px;
  background:
    radial-gradient(circle at 86% 0%, rgba(253, 188, 201, 0.38), transparent 34%),
    radial-gradient(circle at 5% 18%, rgba(255, 148, 107, 0.22), transparent 30%),
    linear-gradient(180deg, #fff8f3 0%, #fffaf7 42%, #fff8f3 100%);
}

.legal-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.legal-content h1 {
  max-width: 780px;
  color: var(--brown);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.legal-content > .eyebrow,
.service-hero > .eyebrow {
  color: var(--coral);
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 72px;
  margin-top: 72px;
}

.legal-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  padding-top: 28px;
  border-top: 1px solid rgba(46, 24, 17, 0.16);
}

.legal-grid h2 {
  min-height: 2.2em;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.1;
  letter-spacing: 0;
}

.legal-grid p {
  margin: 0;
  color: #5b514c;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
}

.legal-grid a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 255px);
  padding: 96px 80px 120px;
  background:
    radial-gradient(circle at 86% 0%, rgba(253, 188, 201, 0.42), transparent 34%),
    radial-gradient(circle at 8% 16%, rgba(255, 148, 107, 0.24), transparent 30%),
    linear-gradient(180deg, #fff8f3 0%, #fffaf7 44%, #fff8f3 100%);
}

.service-bubbles {
  inset: 20px clamp(18px, 4vw, 64px) 34px;
  overflow: visible;
  border-radius: 0;
  opacity: 0.9;
}

.service-hero,
.service-detail-grid,
.service-cta {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.service-hero {
  display: grid;
  gap: 26px;
  min-height: auto;
  padding: 0 0 clamp(42px, 5vw, 68px);
  align-content: start;
}

.service-hero h1 {
  max-width: 980px;
  color: var(--brown);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.service-hero p {
  max-width: 760px;
  margin: 0;
  color: #5b514c;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
}

.service-hero .pill-button,
.service-cta .pill-button {
  justify-self: start;
  background: linear-gradient(90deg, #fa5763 0%, #ff946b 100%);
  color: #fff;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.service-detail-grid article,
.service-cta {
  border: 1px solid rgba(232, 209, 199, 0.82);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(97, 38, 23, 0.075);
}

.service-detail-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(28px, 3vw, 42px);
}

.service-detail-grid h2,
.service-cta h2 {
  min-height: 2.1em;
  margin: 0 0 18px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1.05;
}

.service-detail-grid h2 {
  min-height: 0;
  margin-bottom: 24px;
}

.service-detail-grid p,
.service-cta p {
  margin: 0;
  color: #5b514c;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.service-cta {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(34px, 4vw, 56px);
}

.service-cta h2 {
  min-height: 0;
}

.mobile-summary,
.mobile-disclosure-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .hero,
  .section,
  .contact-wrap,
  .statement {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav {
    width: min(calc(100% - 32px), var(--max));
    height: auto;
    min-height: 68px;
    padding: 14px 18px;
    gap: 22px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex !important;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-cta {
    margin-left: 0;
  }

  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-height: 0;
    gap: 8px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 260ms var(--ease-out), opacity 200ms ease, padding 260ms var(--ease-out);
  }

  .mobile-menu a {
    border: 1px solid rgba(239, 217, 206, 0.88);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open .mobile-menu {
    max-height: 180px;
    padding-top: 10px;
    opacity: 1;
  }

  .benefits,
  .service-grid,
  .process-track,
  .contact-panel,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .benefits article:first-child {
    padding-left: 26px;
  }

  .benefits {
    width: min(calc(100% - 64px), var(--max));
    margin-top: -24px;
  }

  .benefits article:nth-child(2) {
    border-right: 0;
  }

  .benefits article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid {
    gap: 18px;
  }

  .process-track {
    gap: 58px 22px;
  }

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

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

  .track-line {
    display: none;
  }

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

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

  .footer {
    gap: 24px;
  }

  .footer-legal {
    justify-self: start;
    justify-items: start;
    text-align: left;
  }

  .subpage-header,
  .legal-page,
  .service-page {
    padding-left: 32px;
    padding-right: 32px;
  }

  .legal-grid {
    gap: 38px;
  }

  .service-detail-grid {
    gap: 38px;
  }

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

  .seo-grid article {
    grid-template-rows: auto;
  }

  .seo-grid h3 {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  body {
    background: #fffaf7;
  }

  .mobile-summary {
    display: block;
  }

  .mobile-disclosure-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
  }

  .mobile-disclosure-toggle:hover {
    background: rgba(217, 54, 88, 0.07);
  }

  [data-mobile-disclosure].is-collapsed [data-disclosure-panel] {
    display: none;
  }

  .mobile-disclosure-toggle:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 2px;
  }

  .mobile-disclosure-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
  }

  .mobile-disclosure-icon::before,
  .mobile-disclosure-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-disclosure-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .mobile-disclosure-toggle[aria-expanded="true"] .mobile-disclosure-icon {
    transform: none;
  }

  .mobile-disclosure-toggle[aria-expanded="true"] .mobile-disclosure-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .nav {
    top: 6px;
    left: 8px;
    right: 8px;
    width: auto;
    min-height: 52px;
    padding: 4px 5px 4px 12px;
    gap: 0 6px;
    border-color: rgba(46, 24, 17, 0.08);
    border-radius: 17px;
    background: rgba(255, 253, 251, 0.94);
    box-shadow: 0 6px 18px rgba(46, 24, 17, 0.07);
    backdrop-filter: blur(14px);
    transform: none;
    animation: none;
  }

  .nav.is-scrolled {
    top: 6px;
    width: auto;
    height: auto;
    min-height: 52px;
    padding: 4px 5px 4px 12px;
    border-color: rgba(46, 24, 17, 0.08);
    border-radius: 17px;
    background: rgba(255, 253, 251, 0.94);
    box-shadow: 0 6px 18px rgba(46, 24, 17, 0.08);
  }

  .hero {
    min-height: 100svh;
    padding: 96px 22px 0;
  }

  .hero-bubbles span:nth-child(1) {
    left: -18%;
    bottom: 12%;
    width: clamp(120px, 42vw, 180px);
    height: clamp(120px, 42vw, 180px);
  }

  .hero-bubbles span:nth-child(2) {
    top: 17%;
    right: -16%;
    width: clamp(90px, 32vw, 140px);
    height: clamp(90px, 32vw, 140px);
  }

  .brand img {
    width: 44px;
  }

  .nav.is-scrolled .brand img {
    width: 42px;
  }

  .nav-cta {
    margin-left: 0;
    padding-inline: 16px;
  }

  .nav > .nav-cta {
    display: none;
  }

  .nav-toggle {
    position: static;
    z-index: 2;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    opacity: 1;
    visibility: visible;
    padding: 0;
    border-color: rgba(46, 24, 17, 0.1);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: none;
    color: var(--ink);
  }

  .nav-toggle .menu-label {
    display: none;
  }

  .nav-toggle span:not(.sr-only):not(.menu-label) {
    display: block;
    width: 17px;
    height: 1.5px;
  }

  .mobile-menu {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    border-top: 0 solid rgba(46, 24, 17, 0.08);
  }

  .mobile-menu a {
    border: 0;
    border-bottom: 1px solid rgba(239, 217, 206, 0.72);
    border-radius: 0;
    background: transparent;
    padding: 13px 4px;
    color: var(--brown);
    text-align: left;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .nav.is-open {
    border-radius: 24px;
  }

  .nav.is-open .mobile-menu {
    max-height: 330px;
    padding-top: 8px;
    border-top-width: 1px;
  }

  .nav {
    top: 6px;
    left: 14px;
    right: auto;
    width: 44px;
    min-height: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav .brand,
  .nav > .nav-cta {
    display: none;
  }

  .nav.is-open {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: min(78vw, 320px);
    height: 100dvh;
    min-height: 100dvh;
    padding: 0 0 24px;
    border: 1px solid rgba(46, 24, 17, 0.08);
    border-radius: 0 24px 24px 0;
    background: rgba(255, 253, 251, 0.96);
    box-shadow:
      14px 0 32px rgba(46, 24, 17, 0.12),
      0 0 0 100vmax rgba(46, 24, 17, 0.28);
    backdrop-filter: blur(14px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
  }

  .nav.is-open .nav-toggle {
    margin-left: auto;
    margin-right: 14px;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .nav.is-open .mobile-menu {
    width: 100%;
    max-height: none;
    flex: 1;
    padding: 18px 20px 0;
    align-content: start;
    grid-auto-rows: 56px;
  }

  .hero-content {
    min-height: calc(100svh - 96px);
    padding: 0 0 70px;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-content br {
    display: none;
  }

  h1 {
    font-size: 40px;
    line-height: 1.05;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  h2 {
    font-size: 32px;
    line-height: 1.06;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .section-intro {
    font-size: 15px;
    line-height: 1.45;
  }

  .services .section-heading .section-intro + .section-intro {
    display: none;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.05;
    max-width: min(100%, 8.6em);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-intro {
    max-width: 92vw;
  }

  .benefits,
  .service-grid,
  .process-track,
  .footer {
    grid-template-columns: 1fr;
  }

  .services::before,
  .about::before,
  .seo-section::before,
  .process::before,
  .faq-section::before,
  .contact-wrap::before {
    display: none;
    background: none;
  }

  .benefits article {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits {
    width: calc(100% - 36px);
    margin-top: -18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .benefits article {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .benefits article:first-child {
    padding-left: 20px;
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 48px 22px;
  }

  :root {
    --mobile-content-gap: 16px;
    --mobile-group-gap: 24px;
  }

  .section-heading h2 {
    margin-top: var(--mobile-content-gap);
  }

  .section-intro {
    margin-top: var(--mobile-content-gap);
  }

  .services,
  .about,
  .process,
  .faq-section,
  .contact-wrap {
    min-height: auto;
  }

  .service-card {
    position: relative;
    min-height: auto;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: auto auto auto;
    gap: 3px 12px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-icon {
    --dot-radius: 34px;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .service-icon img {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 1.02;
    text-align: left;
  }

  .service-kicker {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: #6a4b42;
    font-size: 14px;
    line-height: 1.38;
    text-align: center;
  }

  .service-card .mobile-disclosure-toggle {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
  }

  .service-card [data-disclosure-panel],
  .service-card .text-link {
    grid-column: 2 / -1;
  }

  .service-card.is-collapsed .text-link {
    display: none;
  }

  .service-card:last-child {
    border-bottom: 0;
    box-shadow: none;
  }

  .service-card > p:not(.service-kicker) {
    min-height: auto;
    margin-top: 8px;
    line-height: 1.5;
  }

  .section-action {
    justify-content: flex-start;
  }

  .about .section-intro {
    margin-top: 16px;
  }

  .reasons {
    --timeline-offset: 0px;
    width: 100%;
    gap: 0;
    margin: 24px 0 0;
    padding-left: 0;
  }

  .reasons::before {
    display: none;
  }

  .reasons article {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    min-height: auto;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
  }

  .reasons article:last-child {
    border-bottom: 0;
  }

  .reasons article::before,
  .reasons article::after {
    display: none;
  }

  .reasons div {
    height: auto;
    grid-column: 2;
    align-items: flex-start;
    text-align: left;
  }

  .reasons article > span {
    width: 42px;
    height: 42px;
    justify-self: start;
    font-size: 19px;
    line-height: 0.9;
  }

  .reasons h3 {
    margin-bottom: 4px;
    font-size: 21px;
  }

  .reasons p {
    max-width: none;
    font-size: 13px;
    line-height: 1.4;
  }

  .statement {
    min-height: auto;
    padding: 48px 22px;
  }

  .statement blockquote {
    margin-top: 16px;
    font-size: 32px;
    line-height: 1.08;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  .proof-card {
    min-height: auto;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

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

  .process {
    min-height: auto;
    background: transparent;
  }

  .process-track {
    gap: 0;
    margin-top: 38px;
  }

  .process-step {
    position: relative;
    grid-template-columns: 56px minmax(0, 1fr) 44px;
    grid-template-rows: auto auto auto;
    gap: 3px 12px;
    min-height: auto;
    padding: 24px 0 24px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    text-align: left;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-number {
    grid-row: 2;
    align-self: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 44%),
      var(--step-bg);
    box-shadow:
      inset 0 -9px 18px rgba(121, 23, 49, 0.1),
      0 10px 24px var(--step-shadow);
    font-size: 18px;
    line-height: normal;
    text-align: center;
    place-items: center;
    transform: translateY(14px);
  }

  .step-number::before,
  .step-number::after {
    display: none;
  }

  .process-step h3 {
    grid-column: 2;
    min-height: 0;
    margin: 0;
    font-size: 26px;
    text-align: left;
  }

  .process-step .mobile-summary {
    grid-column: 2;
    text-align: left;
  }

  .process-step .mobile-disclosure-toggle {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
  }

  .process-step [data-disclosure-panel] {
    grid-column: 2 / -1;
    margin-top: 8px;
  }

  .contact-wrap {
    min-height: auto;
    padding: 48px 22px;
  }

  .contact-panel {
    min-height: 0;
    gap: 26px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-copy h2 {
    margin-top: 16px;
    font-size: 32px;
    line-height: 1.06;
  }

  .contact-copy > p:not(.eyebrow, .mail-label) {
    margin: 16px 0 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .contact-form {
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .field-label {
    margin-bottom: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 50px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 84px;
    height: 84px;
    padding-top: 14px;
  }

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

  .choice-pill span {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
  }

  .contact-form button {
    max-width: none;
    min-height: 52px;
  }

  .footer {
    padding: 28px 22px;
  }

  .footer-legal {
    justify-self: start;
    justify-items: start;
    text-align: left;
  }

  .subpage-header {
    padding: 0 22px;
  }

  .legal-page {
    padding: 64px 22px 80px;
  }

  .service-page {
    padding: 64px 22px 84px;
  }

  .service-hero {
    min-height: auto;
    padding: 0 0 30px;
  }

  .service-hero h1,
  .legal-content h1,
  .contact-page-copy h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .service-hero p,
  .legal-grid p {
    font-size: 16px;
    line-height: 1.5;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .legal-grid article,
  .service-detail-grid article {
    position: relative;
    grid-template-rows: auto;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px 16px;
    padding: 26px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-detail-grid article:last-child {
    border-bottom: 0;
  }

  .service-cta {
    padding-inline: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-grid h2,
  .service-detail-grid h2 {
    grid-column: 1;
    min-height: 0;
    margin: 0;
    font-size: 30px;
  }

  .service-detail-grid .mobile-disclosure-toggle {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
  }

  .service-detail-grid [data-disclosure-panel] {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .faq-list {
    margin-top: 28px;
  }

  .faq-list summary {
    padding: 18px 0;
  }

  .faq-list p {
    padding: 0 0 18px;
  }

  .faq-list,
  .seo-grid {
    gap: 0;
  }

  .faq-list details,
  .seo-grid article {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .faq-list details:last-child,
  .seo-grid article:last-child {
    border-bottom: 0;
  }

  .seo-grid article {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px 16px;
    padding: 26px 0;
    backdrop-filter: none;
  }

  .seo-grid h3 {
    grid-column: 1;
    margin: 0;
  }

  .seo-grid .mobile-disclosure-toggle {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
  }

  .seo-grid [data-disclosure-panel] {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .seo-grid .mobile-summary,
  .process-step .mobile-summary,
  .service-detail-grid .mobile-summary {
    margin: 0;
    color: #5b514c;
    font-size: 15px;
    line-height: 1.45;
  }

  .service-grid,
  .process-track,
  .proof-grid,
  .reasons,
  .faq-list,
  .seo-grid,
  .service-detail-grid {
    margin-top: var(--mobile-group-gap);
  }

  .footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (min-width: 721px) and (max-width: 1024px) and (orientation: portrait) {
  .hero {
    min-height: clamp(760px, 82svh, 960px);
  }

  .hero-content {
    min-height: calc(clamp(760px, 82svh, 960px) - 105px);
    padding-bottom: clamp(64px, 8vw, 96px);
  }

  .service-grid,
  .process-track,
  .service-detail-grid,
  .benefits,
  .proof-grid,
  .reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .process-step,
  .service-detail-grid article,
  .reasons article,
  .proof-card {
    min-height: auto;
  }

  .proof-grid > :last-child,
  .reasons > :last-child {
    grid-column: 1 / -1;
  }

  .reasons {
    width: min(100%, var(--max));
    margin-inline: auto;
    padding-left: 0;
  }

  .reasons::before,
  .reasons article::before,
  .reasons article::after {
    display: none;
  }

  .reasons article {
    width: 100%;
  }

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

  .footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
}

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

.statement blockquote.reveal {
  transform: translateY(34px);
}

.statement blockquote.reveal.is-visible {
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.reveal:nth-child(4) {
  transition-delay: 270ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 720px) {
  /* Mobile reference composition: keep Wirora's movement, shorten the path. */
  :root {
    --mobile-page-gap: 28px;
    --mobile-card-radius: 12px;
  }

  html {
    scroll-padding-top: 18px;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero {
    order: 0;
    min-height: 680px;
    padding: 82px 22px 44px;
    color: #fff;
    background: linear-gradient(145deg, #d93658 0%, #fc6d52 52%, #ffad86 100%);
    animation: hero-glow 14s ease-in-out infinite;
  }

  .hero::before,
  .hero-bubbles,
  .hero-shapes {
    display: block;
  }

  .hero::after {
    display: block;
    inset: auto -90px 22px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    opacity: 0.22;
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.38), transparent 55%);
    filter: blur(2px);
  }

  .nav {
    top: 10px;
    left: auto;
    right: 14px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 253, 251, 0.82);
    box-shadow: 0 8px 22px rgba(46, 24, 17, 0.1);
    backdrop-filter: blur(12px);
  }

  .nav .brand,
  .nav .mobile-brand,
  .nav > .nav-cta {
    display: none;
  }

  .nav.is-open {
    top: 8px;
    left: 12px;
    right: 12px;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 8px 12px 18px;
    border: 1px solid rgba(239, 217, 206, 0.9);
    border-radius: 18px;
    background: rgba(255, 253, 251, 0.98);
    box-shadow: 0 18px 48px rgba(46, 24, 17, 0.18);
    backdrop-filter: blur(16px);
  }

  .nav.is-open .nav-toggle {
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
  }

  .nav.is-open .mobile-menu {
    width: 100%;
    max-height: 420px;
    padding: 8px 2px 0;
    border-top: 1px solid var(--line);
    grid-auto-rows: auto;
  }

  .nav.is-open .mobile-menu a {
    min-height: 48px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .hero-content {
    min-height: 0;
    width: 100%;
    padding: 58px 0 0;
    justify-content: flex-start;
    text-align: left;
    perspective: none;
  }

  .hero-content .eyebrow.light {
    color: rgba(255, 247, 239, 0.84);
    font-size: 12px;
    letter-spacing: 0.12em;
    animation: fade-in 800ms 160ms var(--ease-out) both;
    transform: none;
  }

  .hero-content h1 {
    max-width: 10ch;
    margin-top: 18px;
    color: #fff;
    font-size: clamp(38px, 10.1vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    hyphens: none;
    text-shadow: 0 10px 26px rgba(73, 37, 22, 0.2);
    animation: fade-in 900ms 300ms var(--ease-out) both;
    transform: none;
  }

  .hero-content h1 br {
    display: block;
  }

  .hero-intro {
    max-width: 31ch;
    margin-top: 18px;
    color: rgba(255, 247, 239, 0.92);
    font-size: 14px;
    line-height: 1.42;
    text-shadow: 0 6px 18px rgba(73, 37, 22, 0.16);
    animation: fade-in 900ms 430ms var(--ease-out) both;
    transform: none;
  }

  .mobile-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }

  .mobile-hero-cta {
    display: inline-flex;
    min-height: 44px;
    margin: 0;
    padding: 12px 16px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--coral);
    box-shadow: 0 10px 24px rgba(121, 23, 49, 0.16);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-hero-cta--secondary {
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
  }

  .benefits,
  .about {
    display: none;
  }

  .services,
  .seo-section,
  .process,
  .statement,
  .faq-section,
  .contact-wrap {
    position: relative;
    order: 1;
    min-height: auto;
    padding: var(--mobile-page-gap) 20px;
    border-top: 0;
    color: var(--brown);
    background: #fffaf7;
  }

  .seo-section { order: 2; background: #fff1e8; }
  .process { order: 3; }
  .statement { order: 4; }
  .faq-section { order: 5; }
  .contact-wrap { order: 6; }

  .services .section-heading,
  .services .section-action,
  .about .section-heading,
  .about .reasons {
    display: block;
  }

  .section-heading,
  .services .section-heading,
  .about .section-heading,
  .process .section-heading,
  .faq-section .section-heading,
  .contact-wrap .section-heading {
    text-align: left;
  }

  .section-heading h2 {
    max-width: 18ch;
    margin-top: 10px;
    color: var(--brown);
    font-size: clamp(31px, 8.6vw, 37px);
    line-height: 1.02;
    letter-spacing: -0.038em;
    hyphens: none;
  }

  .section-intro {
    max-width: 38ch;
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.42;
  }

  .services .section-heading .section-intro + .section-intro {
    display: none;
  }

  .service-grid,
  .seo-grid,
  .faq-list,
  .process-track {
    margin-top: 18px;
    gap: 8px;
  }

  .service-grid,
  .seo-grid,
  .faq-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    min-height: 0;
    padding: 14px 12px 13px;
    border: 1px solid rgba(239, 217, 206, 0.96);
    border-radius: var(--mobile-card-radius);
    background: #fff8f3;
    box-shadow: 0 7px 18px rgba(46, 24, 17, 0.06);
  }

  .service-card:last-child { border-bottom: 1px solid rgba(239, 217, 206, 0.96); }
  .service-icon,
  .service-card .mobile-disclosure-toggle { display: none; }
  .service-card h3 { grid-column: 1; margin: 0; font-size: 20px; line-height: 1.08; text-align: left; }
  .service-kicker { display: block; grid-column: 1; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.35; text-align: left; }
  .service-card [data-disclosure-panel] { display: none !important; }
  .service-card .text-link { display: inline-flex !important; grid-column: 1; width: fit-content; min-height: 24px; margin-top: 2px; padding: 3px 0; color: var(--coral); font-size: 11px; font-weight: 700; }
  .services .section-action { display: none; }

  .seo-section .seo-bubbles,
  .faq-section .faq-bubbles { opacity: 0.4; }
  .seo-grid article { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 13px 12px; border: 1px solid rgba(239, 217, 206, 0.9); border-radius: var(--mobile-card-radius); background: rgba(255, 250, 247, 0.74); box-shadow: 0 5px 15px rgba(46, 24, 17, 0.04); }
  .seo-grid article:last-child { border-bottom: 1px solid rgba(239, 217, 206, 0.9); }
  .seo-grid h3 { grid-column: 1; margin: 0; font-size: 18px; line-height: 1.1; }
  .seo-grid .mobile-summary { grid-column: 1; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
  .seo-grid [data-disclosure-panel], .seo-grid .mobile-disclosure-toggle { display: none !important; }

  .process-track { display: grid; grid-template-columns: 1fr; }
  .process-track .track-line, .process-step .step-number, .process-step .mobile-disclosure-toggle { display: none; }
  .process-step { display: grid; grid-template-columns: 1fr; gap: 4px; min-height: 0; padding: 14px 0; border: 0; border-top: 2px solid rgba(217, 54, 88, 0.26); border-radius: 0; background: transparent; box-shadow: none; text-align: left; }
  .process-step:last-child { border-bottom: 2px solid rgba(217, 54, 88, 0.26); }
  .process-step h3 { grid-column: 1; margin: 0; color: var(--brown); font-size: 20px; line-height: 1.08; }
  .process-step .mobile-summary { display: none; }
  .process-step [data-disclosure-panel] { display: block !important; grid-column: 1; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }

  .statement { overflow: hidden; color: #fff; background: linear-gradient(145deg, #d93658, #fc6d52 55%, #ffad86); }
  .statement::before, .statement::after { display: block; }
  .statement .eyebrow { color: rgba(255, 247, 239, 0.84); }
  .statement blockquote { max-width: 20ch; margin-top: 12px; color: #fff; font-size: clamp(30px, 8.3vw, 35px); line-height: 1.02; text-shadow: 0 8px 22px rgba(73, 37, 22, 0.16); }
  .statement .proof-grid { display: none; }
  .mobile-impact-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
  .mobile-impact-stats article { display: grid; gap: 2px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.44); }
  .mobile-impact-stats strong { font: 400 28px/1 var(--serif); }
  .mobile-impact-stats span { max-width: 15ch; color: rgba(255, 247, 239, 0.88); font-size: 10px; line-height: 1.3; }

  .faq-list { margin-top: 18px; }
  .faq-title-desktop { display: none; }
  .faq-title-mobile { display: block; }
  .faq-list details { border: 1px solid rgba(239, 217, 206, 0.96); border-radius: var(--mobile-card-radius); background: #fff; box-shadow: 0 5px 15px rgba(46, 24, 17, 0.04); }
  .faq-list details:last-child { border-bottom: 1px solid rgba(239, 217, 206, 0.96); }
  .faq-list summary { min-height: 48px; padding: 14px 12px; font-size: 13px; line-height: 1.3; }
  .faq-list details p { padding: 0 12px 13px; font-size: 12px; line-height: 1.4; }

  .contact-wrap { background: #fff0e6; }
  .contact-panel { display: block; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .contact-copy h2 { max-width: 16ch; margin-top: 10px; font-size: 34px; line-height: 1.02; }
  .contact-copy > p:not(.eyebrow, .mail-label) { max-width: 34ch; margin: 12px 0 14px; font-size: 13px; line-height: 1.42; }
  .contact-copy .mail-label { margin-top: 22px; font-size: 12px; }
  .mobile-contact-cta { display: flex; width: 100%; min-height: 44px; margin-top: 18px; justify-content: center; padding: 11px 16px; border-radius: 999px; background: var(--coral); color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; }
  .contact-form { display: none; }

  .footer { display: grid; grid-template-columns: 1fr; gap: 18px; padding: 28px 22px; }
  .footer-brand > img { width: 54px; }
  .footer nav, .footer-legal { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 16px; justify-items: start; }
  .footer nav a, .footer-legal a { min-height: 34px; padding: 7px 0; }
  .footer-copy { margin-top: 4px; font-size: 10px; }
}

@media (max-width: 720px) {
  /* Figma mobile reference: 358px content rail, open cards, pill header. */
  .nav {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 64px;
    min-height: 64px;
    padding: 0 16px;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 8px 24px rgba(46, 24, 17, 0.1);
    backdrop-filter: blur(10px);
  }

  .nav .brand,
  .nav .mobile-brand,
  .nav .nav-toggle,
  .nav > .nav-cta,
  .nav .mobile-menu {
    display: none;
  }

  .nav .nav-toggle { display: none !important; }

  .mobile-figma-brand,
  .mobile-nav-cta {
    display: inline-flex;
  }

  .mobile-figma-brand {
    align-items: center;
    gap: 4px;
    color: var(--ink);
    font: 700 18px/1 var(--serif);
    text-decoration: none;
  }

  .mobile-figma-mark {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: var(--coral);
    color: #fff;
    font: 700 16px/1 var(--serif);
  }

  .mobile-nav-cta {
    margin-left: auto;
    min-height: 40px;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 20px 64px;
    background: linear-gradient(145deg, #fc708d 0%, #fbb581 50%, #fdbcb8 100%);
    animation: hero-glow 14s ease-in-out infinite;
  }

  .hero::before,
  .hero::after,
  .hero-shapes {
    display: none;
  }

  .hero-bubbles { display: block !important; visibility: visible; opacity: 1; }

  .hero-bubbles span:nth-child(1) {
    left: -34px;
    top: 112px;
    width: 146px;
    height: 146px;
    opacity: 0.42;
    filter: none;
  }

  .hero-bubbles span:nth-child(2) {
    left: auto;
    right: -24px;
    top: 202px;
    width: 112px;
    height: 112px;
    opacity: 0.36;
    filter: none;
  }

  .hero-content {
    width: 100%;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .hero-content .eyebrow.light {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .hero-rule {
    display: block;
    width: 40px;
    height: 2px;
    margin-top: 12px;
    background: #fff8f3;
  }

  .hero-content h1 {
    max-width: none;
    margin-top: 24px;
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: 0;
    text-shadow: none;
  }

  .hero-content h1 br { display: none; }

  .hero-intro {
    max-width: none;
    margin-top: 24px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-shadow: none;
  }

  .mobile-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px;
    margin-top: 36px;
    padding-top: 12px;
  }

  .mobile-hero-cta,
  .mobile-hero-cta--secondary {
    flex: none;
    min-height: 52px;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-hero-cta { background: #fff; color: var(--ink); }
  .mobile-hero-cta--secondary { border: 1px solid #fff; background: transparent; color: #fff; }

  main { display: flex; flex-direction: column; }
  .benefits { display: flex; flex-direction: column; order: 1; width: 100%; margin: 0; padding: 24px 20px; border: 0; border-top: 1px solid rgba(239, 217, 206, 0.78); border-bottom: 1px solid rgba(239, 217, 206, 0.78); border-radius: 0; background: #fcfbf8; box-shadow: none; }
  .benefits article { display: flex; min-height: 48px; padding: 0; border: 0; gap: 12px; align-items: center; }
  .benefits article + article { margin-top: 0; border-top: 1px solid rgba(239, 217, 206, 0.9); }
  .benefits article:nth-child(4) { display: none; }
  .benefit-icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 50%; background: #fcecef; color: var(--coral); font-size: 16px; }
  .benefits article:nth-child(2) .benefit-icon { color: var(--coral); }
  .benefits article:nth-child(3) .benefit-icon { color: #ff7f5f; }
  .benefits p { color: var(--muted); font-size: 14px; line-height: 1.4; }
  .benefit-desktop-copy { display: none; }
  .benefit-mobile-copy { display: inline; }

  .services { order: 2; padding: 56px 20px; border-top: 0; background: #fcfbf8; }
  .seo-section { order: 3; padding: 56px 20px; background: #ffefe5; }
  .process { order: 4; padding: 56px 20px; background: #fcfbf8; }
  .statement { order: 5; padding: 64px 20px; background: linear-gradient(135deg, #fc758c 0%, #fbb582 50%, #fdbbb4 100%); }
  .faq-section { order: 6; padding: 56px 20px; background: #fcfbf8; }
  .contact-wrap { order: 7; padding: 56px 20px; background: #ffefe5; }
  .about { display: none; }

  .section-heading h2 { max-width: none; margin-top: 12px; font-size: 32px; line-height: 1.2; letter-spacing: 0; }
  .section-intro { max-width: none; margin-top: 12px; font-size: 15px; line-height: 1.5; }
  .service-grid { margin-top: 32px; gap: 16px; border-top: 0 !important; }
  .service-card { display: flex; flex-direction: column; align-items: flex-start; padding: 14px 12px 13px; border: 1px solid rgba(232, 209, 199, 0.82); border-radius: 16px; background: #fff; box-shadow: 0 7px 18px rgba(46, 24, 17, 0.06); gap: 5px; }
  .service-card .service-icon { display: none; }
  .service-card h3 { font-size: 20px; font-weight: 700; line-height: 1.08; }
  .service-kicker { display: block; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
  .service-card [data-disclosure-panel] { display: none !important; }
  .service-card > p:not(.service-kicker) { align-self: flex-start; max-width: none; margin: 0; text-align: left !important; }
  .service-card .text-link { align-self: flex-start; min-height: 24px; margin-top: 2px; padding: 3px 0; color: var(--coral); font-size: 11px; text-align: left; }
  .service-card .mobile-disclosure-toggle { display: none !important; }
  .services .section-action { display: none; }

  .seo-grid { margin-top: 32px; gap: 16px; }
  .seo-grid article { display: block; padding: 24px; border: 1px solid rgba(239, 217, 206, 0.78); border-radius: 20px; background: rgba(255, 255, 255, 0.4); box-shadow: none; backdrop-filter: blur(6px); }
  .seo-grid h3 { font-size: 22px; }
  .seo-grid .mobile-summary { display: none; }
  .seo-grid [data-disclosure-panel] { display: block !important; margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.5; }
  .seo-grid .mobile-disclosure-toggle { display: none !important; }

  .process-track { margin-top: 32px; gap: 24px; }
  .process-step { display: block; padding: 0; border: 0; background: transparent; }
  .process-step:last-child { border-bottom: 0 !important; }
  .process-step + .process-step { padding-top: 24px; border-top: 3px solid #fc788c; }
  .process-step h3 { font-size: 20px; }
  .process-step .mobile-summary, .process-step .mobile-disclosure-toggle, .process-step .step-number { display: none !important; }
  .process-step [data-disclosure-panel] { display: block !important; margin-top: 6px; font-size: 14px; line-height: 1.5; }

  .statement-eyebrow-desktop, .faq-eyebrow-desktop, .faq-title-desktop { display: none; }
  .statement-eyebrow-mobile, .faq-eyebrow-mobile, .faq-title-mobile { display: block; }
  .statement blockquote { max-width: none; margin-top: 16px; font-size: 30px; line-height: 1.3; }
  .statement-attribution { display: block; margin-top: 12px; color: #fff; font-size: 14px; font-weight: 700; }
  .statement .proof-grid { display: none; }
  .mobile-impact-stats { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .mobile-impact-stats article { padding: 0; border: 0; }
  .mobile-impact-stats strong { font-size: 36px; font-weight: 700; }
  .mobile-impact-stats span { font-size: 14px; }

  .faq-list { margin-top: 32px; gap: 12px; }
  .faq-list details { padding: 20px; border: 1px solid rgba(232, 209, 199, 0.82); border-radius: 16px; background: #fff; }
  .faq-list summary { min-height: 0; padding: 0 22px 0 0; font: 700 16px/1.3 var(--serif); }
  .faq-list details p { display: block !important; padding: 12px 0 0; font-size: 14px; line-height: 1.5; }
  .faq-list summary::after { display: none; }

  .contact-panel { display: block; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .contact-copy h2 { font-size: 32px; line-height: 1.2; }
  .contact-copy > p:not(.eyebrow, .mail-label) { font-size: 15px; line-height: 1.5; }
  .mobile-contact-cta { display: flex; width: 100%; min-height: 52px; margin-top: 24px; justify-content: center; align-items: center; background: var(--coral); color: #fff; font-size: 14px; }
  .contact-form { display: none; }
  .contact-copy .mail-label { margin-top: 32px; font-size: 14px; }
  .contact-copy > a[href^="mailto"]:not(.mobile-contact-cta) { font-size: 18px; font-weight: 700; }

  .footer { display: block; padding: 48px 20px 32px; background: #fcfbf8; }
  .footer > .footer-brand, .footer > nav, .footer > .footer-legal, .footer > .footer-copy { display: none; }
  .mobile-footer-content { display: flex; flex-direction: column; gap: 40px; }
  .mobile-footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .mobile-footer-brand img { display: block; width: 108px; height: auto; }
  .mobile-footer-brand p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
  .mobile-footer-group { display: flex; flex-direction: column; gap: 12px; }
  .mobile-footer-group strong { font-size: 13px; font-weight: 400; text-transform: uppercase; }
  .mobile-footer-group a { color: var(--muted); font-size: 12px; line-height: 1.35; text-decoration: none; }
  .mobile-footer-meta { padding-top: 16px; border-top: 1px solid rgba(239, 217, 206, 0.78); color: var(--muted); font-size: 11px; line-height: 1.5; }

  /* Mobile typography is consistently left-aligned. */
  .hero-content,
  .hero-content h1,
  .hero-content p,
  .benefits,
  .benefits article,
  .section,
  .section-heading,
  .section-heading h2,
  .section-heading p,
  .service-card,
  .service-card h3,
  .service-card p,
  .service-card a,
  .seo-grid article,
  .seo-grid h3,
  .seo-grid p,
  .process,
  .process-step,
  .process-step h3,
  .process-step p,
  .statement,
  .statement blockquote,
  .statement p,
  .faq-section,
  .faq-list,
  .faq-list summary,
  .faq-list details p,
  .contact-wrap,
  .contact-copy,
  .contact-copy h2,
  .contact-copy p,
  .footer,
  .mobile-footer-content,
  .mobile-footer-group,
  .mobile-footer-meta { text-align: left; }

  .mobile-hero-cta,
  .mobile-nav-cta,
  .mobile-contact-cta { justify-content: center; color: #fff !important; text-align: center; }
  .mobile-hero-cta { color: #1a1a1a !important; }
  .mobile-hero-cta--secondary { color: #fff !important; }

  /* Fixed mobile header with a full-screen, centered navigation overlay. */
  .nav { position: fixed; top: 14px; right: 14px; left: 14px; z-index: 1200; width: auto; min-height: 44px; height: 44px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; flex-wrap: nowrap; align-items: center; }
  .nav .brand { display: inline-flex; align-items: center; }
  .nav .mobile-figma-brand, .nav > .nav-cta { display: none; }
  .mobile-figma-brand img { display: block; width: 108px; height: auto; }
  .nav .nav-toggle {
    display: inline-flex !important;
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #fff8f3;
    color: var(--ink);
  }
  .nav-toggle span.menu-dots { display: block !important; width: 4px !important; height: 4px !important; margin: 0 !important; border-radius: 50%; background: var(--ink) !important; box-shadow: 8px 0 0 var(--ink), 16px 0 0 var(--ink); transform: translateX(-8px); }
  .nav.is-open .brand { display: none; }
  .nav.is-open .mobile-figma-brand { display: inline-flex; align-items: center; }
  .nav.is-open { inset: 0; width: 100%; height: 100dvh; min-height: 100dvh; border: 0; border-radius: 0; background: #fff8f3; box-shadow: none; }
  .nav.is-open .mobile-menu {
    display: flex !important;
    position: fixed;
    inset: 96px 20px 32px;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: transparent;
  }
  .nav.is-open .mobile-menu a {
    display: block;
    width: min(100%, 320px);
    padding: 18px 0;
    border-top: 1px solid rgba(217, 54, 88, 0.22);
    color: var(--ink);
    font: 400 24px/1.2 var(--display);
    text-align: center !important;
    text-decoration: none;
  }
  .nav.is-open .mobile-menu a:last-child { border-bottom: 1px solid rgba(217, 54, 88, 0.22); }
body:has(.nav.is-open) { overflow: hidden; }
}

/* Supplied mobile reference: one authoritative phone layout layer. */
@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 12px 14px auto;
    z-index: 1200;
    width: auto;
    min-height: 48px;
    height: 48px;
    padding: 2px 6px 2px 12px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 24px rgba(52, 24, 18, 0.08);
    backdrop-filter: blur(14px);
  }

  .nav .brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .nav .brand picture,
  .nav .brand img {
    display: block;
  }

  .nav .brand img {
    width: 108px;
    height: auto;
  }

  .nav .mobile-figma-brand,
  .nav > .nav-cta {
    display: none !important;
  }

  .nav .nav-toggle {
    display: inline-flex !important;
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
  }

  .nav .nav-toggle::before {
    position: absolute;
    inset: 0;
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    content: "";
  }

  .nav-toggle span.menu-dots {
    display: block !important;
    position: relative;
    z-index: 1;
    width: 4px !important;
    height: 4px !important;
    margin: 0 !important;
    border-radius: 50%;
    background: var(--ink) !important;
    box-shadow: 8px 0 0 var(--ink), 16px 0 0 var(--ink);
    transform: translateX(-8px);
  }

  .nav.is-open .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    background: transparent;
  }

  .nav.is-open .nav-toggle span.menu-dots {
    transform: translateX(-8px);
  }

  .nav.is-open {
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 18px 20px;
    border: 0;
    border-radius: 0;
    background: #fff8f3;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav.is-open .brand {
    display: inline-flex;
  }

  .nav.is-open .mobile-figma-brand {
    display: none !important;
  }

  .nav.is-open .mobile-menu {
    inset: 0;
    display: flex !important;
    height: 100dvh;
    max-height: none;
    align-items: center;
    justify-content: flex-start;
    padding: 104px 24px 32px;
    text-align: center;
  }

  .nav.is-open .mobile-menu a {
    width: min(280px, 100%);
    border-top: 0 !important;
    border-bottom: 1px solid rgba(217, 54, 88, 0.2);
  }

  .nav.is-open .mobile-menu a:first-child {
    border-top: 0 !important;
    border-bottom: 1px solid rgba(217, 54, 88, 0.2) !important;
  }

  .nav.is-open .mobile-menu a:last-child {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 414px;
  }

  .hero-content {
    min-height: 414px;
    justify-content: flex-end;
    padding: 136px 20px 34px;
  }

  .hero-bubbles span {
    width: clamp(72px, 24vw, 104px);
    height: clamp(72px, 24vw, 104px);
    opacity: 0.28;
  }

  .hero-shapes {
    display: none;
  }

  .mobile-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin-left: 0;
    gap: 12px;
  }

  .mobile-hero-cta,
  .mobile-hero-cta--secondary {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    height: 44px;
    width: auto;
    padding: 11px 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-hero-cta:not(.mobile-hero-cta--secondary),
  .mobile-contact-cta,
  .service-hero .pill-button,
  .service-cta .pill-button {
    min-height: 40px;
    padding: 11px 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #fa5763 0%, #ff946b 100%);
    color: #fff !important;
    font-size: 13px;
    box-shadow: none;
  }

  .benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 12px;
    border-top: 0;
    background: #fff8f3;
    text-align: left;
  }

  .benefits article {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 10px 0;
    border: 0;
    border-top: 1px solid rgba(239, 217, 206, 0.9);
    border-bottom: 0 !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
  }

  .benefits article:first-child {
    padding-left: 0;
    border-top: 0;
  }

  .benefits article:nth-child(4) {
    display: none;
  }

  .benefits article p {
    margin: 0;
    text-align: left;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .about {
    display: none !important;
  }

  .services { order: 1; background: #fff0e6; }
  .seo-section { order: 2; background: #fff0e6; }
  .process { order: 3; background: #fff0e6; }
  .statement { order: 4; }
  .faq-section { order: 5; background: #fff0e6; }
  .contact-wrap { order: 6; background: #fff0e6; }

  .services,
  .seo-section,
  .process,
  .faq-section {
    padding: 48px 20px;
  }

  .section-heading h2 {
    max-width: 17ch;
    margin-top: 10px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.05;
  }

  .section-intro {
    max-width: 34ch;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .services .section-heading .section-intro + .section-intro {
    display: none;
  }

  .service-grid,
  .seo-grid,
  .process-track,
  .faq-list {
    gap: 10px;
    margin-top: 24px;
  }

  .service-card {
    gap: 5px;
    padding: 14px 52px 13px 12px;
    border: 1px solid rgba(232, 209, 199, 0.9);
    border-radius: 16px;
    background: #fff8f3;
    box-shadow: 0 7px 18px rgba(46, 24, 17, 0.06);
    position: relative;
  }

  .service-card h3 {
    font-size: 20px;
    line-height: 1.08;
  }

  .service-card .service-kicker {
    display: none;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
  }

  .service-card [data-disclosure-panel] {
    display: none;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
  }

  .service-card .mobile-disclosure-toggle {
    position: absolute;
    top: 7px;
    right: 8px;
    display: inline-flex !important;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .service-card .text-link {
    display: none !important;
    min-height: 24px;
    margin-top: 2px;
    padding: 3px 0;
    color: var(--coral);
    font-size: 11px;
  }

  .service-card:not(.is-collapsed) .text-link {
    display: inline-flex !important;
  }

  .seo-grid article {
    position: relative;
    padding: 14px 52px 14px 12px;
    border: 1px solid rgba(239, 217, 206, 0.9);
    border-radius: 16px;
    background: #fff8f3;
    box-shadow: 0 6px 16px rgba(46, 24, 17, 0.05);
  }

  .seo-grid h3 {
    font-size: 18px;
    line-height: 1.1;
  }

  .seo-grid .mobile-summary {
    display: none;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
  }

  .seo-grid [data-disclosure-panel],
  .seo-grid .mobile-disclosure-toggle {
    display: none;
  }

  .seo-grid .mobile-disclosure-toggle {
    position: absolute;
    top: 7px;
    right: 8px;
    display: inline-flex !important;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 14px 0;
    border: 0;
    border-top: 2px solid rgba(217, 54, 88, 0.25);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    position: relative;
    padding-right: 52px;
  }

  .process-step:first-of-type {
    border-top: 0;
  }

  .process-step:last-child {
    border-bottom: 2px solid rgba(217, 54, 88, 0.25);
  }

  .process-step .step-number,
  .process-step .mobile-summary {
    display: none !important;
  }

  .process-step .mobile-disclosure-toggle {
    position: absolute;
    top: -7px;
    right: 8px;
    display: inline-flex !important;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .process-step h3 {
    font-size: 20px;
    line-height: 1.08;
  }

  .process-step [data-disclosure-panel] {
    display: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
  }

  .statement {
    padding: 48px 20px;
  }

  .statement blockquote {
    max-width: 15ch;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.05;
  }

  .mobile-impact-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .mobile-impact-stats article {
    display: grid;
    gap: 3px;
  }

  .mobile-impact-stats strong {
    font-size: 30px;
  }

  .mobile-impact-stats span {
    font-size: 10px;
    line-height: 1.35;
  }

  .faq-list details {
    padding: 16px 14px;
    border: 1px solid rgba(232, 209, 199, 0.9);
    border-radius: 16px;
    background: #fff8f3;
  }

  .faq-list summary {
    min-height: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
  }

  .faq-list details p {
    padding: 10px 0 0;
    font-size: 12px;
    line-height: 1.4;
  }

  .contact-wrap {
    padding: 52px 20px;
  }

  .contact-panel {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-copy h2 {
    max-width: 16ch;
    margin-top: 10px;
    font-size: 32px;
    line-height: 1.04;
  }

  .contact-copy > p:not(.eyebrow, .mail-label) {
    max-width: 34ch;
    margin: 12px 0 14px;
    font-size: 13px;
    line-height: 1.42;
  }

  .mobile-contact-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .contact-form {
    display: none;
  }

  .contact-page {
    min-height: auto;
    padding: 48px 20px 64px;
    background: #fff0e6;
  }

  .contact-page-content {
    display: block;
    width: 100%;
  }

  .contact-page-copy {
    padding-top: 0;
  }

  .contact-page-copy h1 {
    max-width: 16ch;
    margin-top: 10px;
    font-size: 38px;
    line-height: 1.04;
  }

  .contact-page-copy > p:not(.eyebrow, .mail-label) {
    max-width: 34ch;
    margin: 12px 0 14px;
    font-size: 15px;
    line-height: 1.42;
  }

  .contact-page-copy .mail-label {
    margin-top: 32px;
    font-size: 14px;
  }

  .contact-page-copy > a {
    font-size: 18px;
  }

  .standalone-contact-form {
    display: grid;
    margin-top: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav.is-open .mobile-menu a.mobile-menu-cta {
    margin-top: 16px;
    border: 0 !important;
    border-radius: 999px;
    background: linear-gradient(90deg, #fa5763 0%, #ff946b 100%);
    color: #fff;
    font: 700 14px/1.2 var(--sans);
    padding: 14px 24px !important;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 20px 24px;
    background: #fff8f3;
  }

  .footer > .footer-brand,
  .footer > nav,
  .footer > .footer-legal,
  .footer > .footer-copy {
    display: grid;
  }

  .footer > .footer-copy {
    display: none;
  }

  .footer > .footer-brand {
    gap: 8px;
  }

  .footer > .footer-brand > img {
    display: block;
    width: 84px;
    height: auto;
  }

  .footer nav,
  .footer-legal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    justify-items: start;
  }

  .footer nav a,
  .footer-legal a {
    min-height: 34px;
    padding: 7px 0;
  }

  .footer-copy {
    margin: 0;
    font-size: 10px;
    line-height: 1.4;
  }

  .mobile-footer-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .mobile-footer-brand,
  .mobile-footer-meta {
    grid-column: 1 / -1;
  }

  .mobile-footer-group {
    min-width: 0;
    align-content: start;
  }

  .mobile-footer-brand img {
    display: none;
  }

  .footer > nav,
  .footer > .footer-legal {
    display: none;
  }

  .subpage-header {
    min-height: 80px;
    padding: 0;
    background: #fff0e6;
  }

  .service-page {
    padding: 20px 20px 0;
    background: #fff0e6;
  }

  .service-hero {
    padding: 32px 0 40px;
    text-align: left;
  }

  .service-hero h1 {
    max-width: 16ch;
    margin-top: 10px;
    font-size: 38px;
    line-height: 1.04;
  }

  .service-hero > p:not(.eyebrow) {
    max-width: 34ch;
    margin: 14px 0 20px;
    font-size: 13px;
    line-height: 1.45;
  }

  .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-detail-grid article {
    position: relative;
    padding: 16px 52px 16px 14px;
    border: 1px solid rgba(232, 209, 199, 0.9);
    border-radius: 16px;
    background: #fff8f3;
    box-shadow: 0 7px 18px rgba(46, 24, 17, 0.06);
  }

  .service-detail-grid article h2 {
    font-size: 20px;
    line-height: 1.1;
  }

  .service-detail-grid article .mobile-summary {
    display: none;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
  }

  .service-detail-grid article [data-disclosure-panel] {
    font-size: 13px;
    line-height: 1.45;
  }

  .service-detail-grid article .mobile-disclosure-toggle {
    position: absolute;
    top: -7px;
    right: 8px;
    display: inline-flex !important;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .legal-grid article {
    position: relative;
    padding: 16px 52px 16px 14px;
    background: #fff8f3;
  }

  .legal-grid article .mobile-disclosure-toggle {
    position: absolute;
    top: -7px;
    right: 8px;
    display: inline-flex !important;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  [data-mobile-disclosure] [data-disclosure-panel] {
    display: none !important;
  }

  [data-mobile-disclosure]:not(.is-collapsed) [data-disclosure-panel] {
    display: block !important;
  }

  .mobile-disclosure-toggle {
    -webkit-tap-highlight-color: transparent;
    color: var(--coral);
  }

  .mobile-disclosure-toggle:hover,
  .mobile-disclosure-toggle:active,
  .mobile-disclosure-toggle:focus {
    background: transparent !important;
    box-shadow: none !important;
  }

  .service-card .mobile-disclosure-toggle,
  .service-card .text-link,
  .service-card .text-link:hover,
  .service-card .text-link:active,
  .service-card .text-link:focus-visible {
    background: inherit;
  }

  .service-card .mobile-disclosure-toggle:hover,
  .service-card .mobile-disclosure-toggle:active,
  .service-card .mobile-disclosure-toggle:focus,
  .service-card .text-link:hover,
  .service-card .text-link:active,
  .service-card .text-link:focus-visible {
    background: inherit !important;
    box-shadow: none !important;
    transform: none;
  }

  .service-cta {
    width: auto;
    margin: 36px -20px 0;
    padding: 44px 20px;
    background: #fff8f3;
  }

  .legal-page {
    padding: 48px 20px 40px;
    background: #fff0e6;
  }

  .legal-content h1 {
    margin-top: 10px;
    font-size: 38px;
    line-height: 1.04;
  }

  .legal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .legal-grid article {
    display: block;
    min-width: 0;
    padding: 16px 14px;
    border: 1px solid rgba(232, 209, 199, 0.9);
    border-radius: 16px;
    background: #fff8f3;
    box-shadow: 0 7px 18px rgba(46, 24, 17, 0.05);
  }

  .legal-grid h2 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.15;
  }

  .legal-grid p,
  .legal-grid a {
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 374px) {
  .mobile-hero-actions {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .mobile-hero-cta,
  .mobile-hero-cta--secondary {
    flex: 1 1 0;
    width: auto;
    min-height: 40px;
    height: auto;
  }
}

@media (max-width: 720px) {
  body :where(h1, h2, h3, h4, h5, h6, p, a, button, label, summary, span, li, strong) {
    font-weight: 400 !important;
  }

  .section-heading > .eyebrow,
  .contact-copy > .eyebrow,
  .service-hero > .eyebrow,
  .legal-content > .eyebrow,
  .statement .eyebrow {
    font-weight: 700 !important;
  }

  .eyebrow:not(.light) {
    font-weight: 700 !important;
  }

  .eyebrow:not(.light) + :is(h1, h2) {
    margin-top: 16px !important;
  }

  .mobile-hero-cta,
  .mobile-hero-cta--secondary,
  .mobile-contact-cta,
  .nav.is-open .mobile-menu a.mobile-menu-cta,
  .contact-form button,
  .field-label,
  .choice-pill span,
  .service-card .text-link,
  .mobile-footer-group strong,
  .faq-list summary {
    font-weight: 400;
  }

  .nav.is-open .mobile-menu a:nth-last-child(2) {
    border-bottom: 0 !important;
  }

  .nav.is-open .mobile-menu a.mobile-menu-cta {
    margin-top: auto !important;
  }

  .process-step:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }
}







