:root {
  --bg: #ebe4d8;
  --bg-deep: #dfd5c6;
  --ink: #3a2f26;
  --ink-soft: #524438;
  --muted: #6f5f50;
  --line: rgba(58, 47, 38, 0.12);
  --bronze: #8b6b4a;
  --champagne: #a88968;
  --gold: #9a7854;
  --steel: #6e5f50;
  --white: #ffffff;
  --paper: #fbfaf7;
  --panel: rgba(255, 255, 255, 0.88);
  --radius: 0.85rem;
  --section-curve: clamp(1.25rem, 3vw, 2rem);
  --section-stack: clamp(1.45rem, 3.2vw, 2.25rem);
  --section-gutter: clamp(0.55rem, 1.5vw, 1.05rem);
  --section-shadow:
    0 1px 0 rgba(255, 252, 247, 0.55) inset,
    0 14px 36px rgba(58, 47, 38, 0.09),
    0 4px 12px rgba(58, 47, 38, 0.05);
  --nav-h: 3.4rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --nav-offset: calc(var(--nav-h) + var(--safe-top));
  --page-x: clamp(1.2rem, 3.6vw, 2.8rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-accent: "Instrument Serif", Georgia, serif;
  --font-agency: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--nav-offset) + 0.75rem);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  background: #fcfbf9;
  overflow-x: hidden;
  cursor: none;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-menu-open {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
}

main {
  padding: var(--section-gutter);
  padding-top: var(--section-gutter);
  overflow-x: hidden;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: var(--page-x);
  top: -100px;
  z-index: 300;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: #faf6f0;
  text-decoration: none;
  cursor: pointer;
}

.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

a,
button,
.service-row,
.btn,
input,
textarea,
label {
  cursor: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.service-row:focus-visible,
.nav__burger:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.service-row:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
  width: 0;
  height: 0;
  mix-blend-mode: difference;
}

.cursor.is-ready {
  opacity: 1;
}

.cursor__tri,
.cursor__ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 23px;
  overflow: visible;
  transform-origin: 4px 2px;
  will-change: transform;
}

.cursor__ghost {
  opacity: 0.16;
  z-index: 0;
}

.cursor__tri {
  z-index: 1;
}

.cursor__ghost path {
  fill: none;
  stroke: #f6ecdc;
  stroke-width: 1;
  stroke-linejoin: miter;
  stroke-miterlimit: 8;
  stroke-linecap: square;
}

.cursor__edge {
  fill: none;
  stroke: #f6ecdc;
  stroke-width: 1.85;
  stroke-linejoin: miter;
  stroke-miterlimit: 8;
  stroke-linecap: square;
  transition: stroke-width 0.2s var(--ease);
}

.cursor.is-hover .cursor__edge {
  stroke-width: 2.15;
}

.cursor.is-hover .cursor__ghost {
  opacity: 0.2;
}

.cursor.is-down .cursor__edge {
  stroke-width: 1.55;
}

@media (pointer: coarse) {
  body,
  a,
  button,
  .service-row,
  .btn,
  input,
  textarea,
  label {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .stats__item:hover,
  .service-row:hover,
  .case:hover,
  .process__steps li:hover,
  .btn:hover,
  .btn--fill:hover,
  .btn--ghost:hover,
  .hero .btn--fill:hover,
  .hero .btn--ghost:hover {
    transform: none;
    box-shadow: none;
  }

  .service-row:hover {
    transform: none;
    box-shadow: none;
    background: #ffffff;
    border-color: rgba(168, 137, 104, 0.22);
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

.topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(196, 160, 106, 0.12), transparent 58%),
    radial-gradient(ellipse 40% 50% at 12% 85%, rgba(90, 60, 35, 0.03), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #fcfbf9 50%, #f8f4ee 100%);
}

.page-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 47, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 47, 38, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 100%);
  opacity: 0.45;
  animation: pageMesh 50s linear infinite;
}

@keyframes pageMesh {
  to { background-position: 64px 64px; }
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.nav {
  position: fixed;
  top: var(--safe-top);
  left: var(--section-gutter);
  right: var(--section-gutter);
  z-index: 60;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-x);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  border-radius: 0 0 var(--section-curve) var(--section-curve);
  box-shadow: var(--section-shadow);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  color: var(--ink);
}

.nav::before {
  content: "";
  position: absolute;
  left: calc(var(--section-gutter) * -1);
  right: calc(var(--section-gutter) * -1);
  bottom: 100%;
  height: var(--safe-top);
  background: rgba(255, 255, 255, 0.94);
  pointer-events: none;
}

.nav.is-scrolled {
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255, 252, 247, 0.55) inset,
    0 16px 40px rgba(58, 47, 38, 0.1),
    0 4px 12px rgba(58, 47, 38, 0.055);
}

.nav.is-scrolled .nav__brand-mark {
  color: var(--ink);
}

.nav.is-scrolled .nav__links a {
  color: var(--ink-soft);
}

.nav.is-scrolled .btn--nav {
  background: var(--ink);
  border-color: var(--ink);
  color: #faf6f0;
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  line-height: 1;
}

.nav__brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  color: var(--ink);
}

.nav__brand-sub {
  font-family: var(--font-agency);
  font-style: normal;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
}

.nav__links {
  display: flex;
  gap: 1.6rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.nav__links a:hover {
  color: var(--champagne);
}

.nav__cta {
  justify-self: end;
}

.btn--nav {
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.86rem;
  background: var(--ink);
  color: #faf6f0;
  border-color: var(--ink);
}

.btn--nav:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #faf6f0;
}

.nav__burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  padding: 0;
  justify-self: end;
  transition: background 0.3s var(--ease);
}

.nav__burger:hover,
.nav__burger.is-open {
  background: rgba(58, 47, 38, 0.06);
}

.nav__burger span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s var(--ease);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--nav-offset) + 0.35rem);
  right: max(var(--section-gutter), env(safe-area-inset-right));
  left: auto;
  bottom: auto;
  z-index: 55;
  width: min(
    17.5rem,
    calc(
      100% - max(var(--section-gutter), env(safe-area-inset-left)) -
        max(var(--section-gutter), env(safe-area-inset-right)) - 0.5rem
    )
  );
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.65rem;
  background: #ffffff;
  border: 1px solid rgba(58, 47, 38, 0.1);
  border-radius: 1.15rem;
  box-shadow:
    0 1px 0 rgba(255, 252, 247, 0.7) inset,
    0 18px 40px rgba(58, 47, 38, 0.14),
    0 4px 12px rgba(58, 47, 38, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  color: var(--ink);
  transition: background 0.25s var(--ease);
}

.mobile-menu a:not(.btn):hover,
.mobile-menu a:not(.btn):active {
  background: rgba(58, 47, 38, 0.05);
}

.mobile-menu .btn {
  box-sizing: border-box;
  margin-top: 0.55rem;
  width: 100%;
  min-height: 2.55rem;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.55s var(--ease), background 0.55s var(--ease), color 0.45s var(--ease),
    border-color 0.45s var(--ease), box-shadow 0.55s var(--ease);
}

.btn--fill {
  background: var(--ink);
  color: #faf6f0;
}

.btn--fill:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  box-shadow: 0 10px 28px rgba(139, 107, 74, 0.28);
  color: #faf6f0;
  transform: translateY(-2px);
}

.btn--ghost {
  background: #ffffff;
}

.btn--ghost:hover {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(58, 47, 38, 0.08);
  transform: translateY(-2px);
}

.footer a {
  color: var(--bronze);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn--wide {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.fold {
  min-height: calc(100svh - var(--section-gutter) * 2);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 7;
  border-radius: var(--section-curve);
  box-shadow: var(--section-shadow);
  margin-bottom: calc(var(--section-stack) * -1);
  overflow: visible;
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(196, 160, 106, 0.12), transparent 58%),
    radial-gradient(ellipse 40% 50% at 12% 85%, rgba(90, 60, 35, 0.03), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #fcfbf9 50%, #f8f4ee 100%);
}

.fold__stage {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--section-curve) var(--section-curve) 0 0;
}

.fold__stage .marquee {
  margin-top: auto;
  flex-shrink: 0;
}

.fold .stats {
  flex-shrink: 0;
  border-radius: 0 0 var(--section-curve) var(--section-curve);
  overflow: visible;
  z-index: 2;
}

.fold .hero {
  position: relative;
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-offset) + 1.4rem) var(--page-x) 2.2rem;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(196, 160, 106, 0.12), transparent 58%),
    radial-gradient(ellipse 40% 50% at 12% 85%, rgba(90, 60, 35, 0.03), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #fcfbf9 50%, #f8f4ee 100%);
}

.hero__glow {
  position: absolute;
  inset: -10% -5% auto auto;
  width: min(70vw, 760px);
  height: min(70vw, 760px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 160, 106, 0.28), rgba(168, 137, 104, 0.1) 42%, transparent 68%);
  filter: blur(8px);
  z-index: 1;
  animation: heroGlow 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  pointer-events: none;
}

.hero__glow::after {
  content: "";
  position: absolute;
  left: -55%;
  bottom: -35%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 60, 35, 0.22), transparent 70%);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.45) 40%, rgba(255, 255, 255, 0.08) 70%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 32%, rgba(58, 47, 38, 0.03) 100%);
}

@keyframes heroGlow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
  to { transform: translate3d(-6%, 8%, 0) scale(1.12); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.hero__brand {
  margin: 0 0 1.6rem;
  padding-bottom: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.9rem;
  line-height: 0.9;
  border-bottom: 1px solid rgba(58, 47, 38, 0.14);
}

.hero__brand-main {
  display: block;
  overflow: hidden;
  padding-right: 0.08em;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.92;
  white-space: nowrap;
}

.hero__brand-main > span {
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(110deg, var(--ink) 30%, var(--bronze) 52%, var(--ink) 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brandShimmer 10s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.hero__brand-sub {
  font-family: var(--font-agency);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--champagne);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  top: -0.35em;
  margin-left: 0.12em;
  padding-right: 0.22em;
  box-sizing: border-box;
}

.hero__brand-sub::after {
  content: "";
  display: block;
  width: calc(100% - 0.22em);
  height: 1px;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.hero__slogan {
  max-width: 36rem;
}

@keyframes brandShimmer {
  0%,
  100% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__title .reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero__title .reveal-line > span {
  display: block;
}

.hero__title-accent {
  color: var(--bronze);
  position: relative;
  display: inline-block;
}

.hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.12em;
  background: linear-gradient(90deg, rgba(168, 137, 104, 0.55), transparent);
  z-index: -1;
}

.hero__lead {
  margin: 1.15rem 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero__actions .btn {
  min-height: 3.35rem;
  padding: 0.9rem 1.45rem;
  font-size: 1.05rem;
}

.hero .btn--fill {
  background: var(--ink);
  border-color: var(--ink);
  color: #faf6f0;
}

.hero .btn--fill:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #faf6f0;
  box-shadow: 0 8px 22px rgba(139, 107, 74, 0.25);
}

.hero .btn--ghost {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(58, 47, 38, 0.22);
}

.hero .btn--ghost:hover {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(58, 47, 38, 0.1);
}

.hero__scroll {
  display: none;
}

.reveal-line > * ,
.reveal-line {
  display: block;
}

.marquee {
  border-block: 1px solid rgba(168, 137, 104, 0.28);
  background:
    linear-gradient(90deg, rgba(168, 137, 104, 0.16), transparent 22%, transparent 78%, rgba(168, 137, 104, 0.14)),
    #3a2f26;
  overflow: hidden;
  padding: 0.62rem 0;
  flex-shrink: 0;
  border-radius: 0.55rem;
  margin-inline: clamp(0.55rem, 1.4vw, 1rem);
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: rgba(246, 240, 231, 0.82);
}

.marquee__group span::after {
  content: "·";
  position: absolute;
  right: -1.55rem;
  top: 50%;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--champagne);
  font-size: 1.05em;
  font-weight: 700;
  opacity: 0.9;
  transform: translateY(-50%);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
  will-change: transform;
}

.marquee__group span {
  position: relative;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(58, 47, 38, 0.1);
  border-top: 1px solid rgba(58, 47, 38, 0.1);
  border-bottom: 1px solid rgba(58, 47, 38, 0.1);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.stats__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  padding: clamp(1.35rem, 2.5vw, 1.9rem) clamp(1.1rem, 2.2vw, 1.7rem);
  overflow: hidden;
  transition: background 0.55s var(--ease), transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.stats__item:first-child {
  border-radius: 0 0 0 var(--section-curve);
}

.stats__item:last-child {
  border-radius: 0 0 var(--section-curve) 0;
}

.stats__item::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.stats__item:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(36, 28, 20, 0.1);
}

.stats__item:hover::before {
  opacity: 1;
}

.stats__icon {
  display: grid;
  place-items: center;
  flex: 0 0 3.75rem;
  width: 3.75rem;
  height: 3.75rem;
  color: var(--bronze);
}

.stats__icon svg {
  display: block;
  width: 3rem;
  height: 3rem;
  overflow: visible;
}

.stats__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
}

.stats__num {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(120deg, #241c14 20%, var(--bronze) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__label {
  margin: 0;
  color: #5a4b3c;
  font-size: 0.88rem;
  line-height: 1.3;
  max-width: 11.5rem;
  font-weight: 500;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 3.4vw, 2.4rem);
}

.section-head--light h2,
.section-head--light .section-lead {
  color: #f6f0e7;
}

.section-head--light .eyebrow {
  color: var(--champagne);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.section-head h2,
.contact__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-lead {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.services,
.process,
.contact {
  padding: clamp(3rem, 6vw, 5rem) var(--page-x);
  position: relative;
}

.services {
  background: #ffffff;
  z-index: 5;
  border-radius: var(--section-curve);
  box-shadow: var(--section-shadow);
  margin-bottom: calc(var(--section-stack) * -1);
  padding-top: calc(clamp(3rem, 6vw, 5rem) + var(--section-stack) * 0.45);
}

.process {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(168, 137, 104, 0.1), transparent 55%),
    #f3ebe0;
  z-index: 3;
  border-radius: var(--section-curve);
  box-shadow: var(--section-shadow);
  margin-bottom: calc(var(--section-stack) * -1);
  padding-top: calc(clamp(3rem, 6vw, 5rem) + var(--section-stack) * 0.45);
}

.contact {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(168, 137, 104, 0.08), transparent 55%),
    #f3ebe0;
  z-index: 1;
  border-radius: var(--section-curve);
  box-shadow: var(--section-shadow);
  margin-bottom: 0;
  padding-top: calc(clamp(3rem, 6vw, 5rem) + var(--section-stack) * 0.45);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: none;
  border-bottom: none;
  position: relative;
}

.service-list::before,
.service-list::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--line);
  pointer-events: none;
  z-index: 1;
}

.service-list::before {
  top: 0;
}

.service-list::after {
  bottom: 2px;
}

.service-row {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1rem;
  border: 1px solid transparent;
  border-radius: 1.15rem;
  background: transparent;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.service-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

.service-row:hover {
  z-index: 1;
  background: #ffffff;
  border-color: rgba(168, 137, 104, 0.28);
  box-shadow: 0 12px 28px rgba(58, 47, 38, 0.07);
  transform: translateY(-2px);
}

.service-row:hover::after,
.service-row:has(+ .service-row:hover)::after {
  opacity: 0;
}

.service-row__num {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--bronze);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
}

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

.service-row__arrow {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
}

.service-row__arrow::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
  transform: translate(-60%, -50%) rotate(45deg);
  transition: transform 0.55s var(--ease);
}

.service-row:hover .service-row__arrow::before {
  transform: translate(-40%, -50%) rotate(45deg);
}

.calc {
  padding: clamp(2.4rem, 4.5vw, 3.6rem) var(--page-x);
  padding-top: calc(clamp(2.4rem, 4.5vw, 3.6rem) + var(--section-stack) * 0.45);
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(168, 137, 104, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f3ec 0%, #ffffff 45%, #faf8f4 100%);
  position: relative;
  z-index: 6;
  border-radius: var(--section-curve);
  box-shadow: var(--section-shadow);
  margin-bottom: calc(var(--section-stack) * -1);
  overflow-x: hidden;
  max-width: 100%;
}

.calc__head {
  margin-bottom: 1rem;
}

.calc__head h2,
.calc__title {
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  max-width: 28ch;
}

.calc__title--short {
  display: none;
}

.calc__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.1rem, 2.5vw, 2rem);
  align-items: start;
}

.calc__controls {
  display: grid;
  gap: 0.7rem;
}

.calc__field {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.3rem;
}

.calc__field legend,
.calc__label {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.calc__ranges {
  display: grid;
  gap: 0;
  padding: 0.2rem 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.72));
  border: 1px solid rgba(58, 47, 38, 0.08);
  border-radius: 1rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 18px rgba(58, 47, 38, 0.035);
  overflow: hidden;
}

.calc__field--range {
  position: relative;
  gap: 0.15rem;
  padding: 0.7rem 0 0.75rem;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(58, 47, 38, 0.08);
}

.calc__field--range:last-child {
  border-bottom: 0;
  padding-bottom: 0.65rem;
}

.calc__field--range .calc__label {
  position: relative;
  padding-left: 0.65rem;
  color: var(--ink);
  letter-spacing: 0.07em;
  font-size: 0.66rem;
}

.calc__field--range .calc__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 2px;
  border-radius: 999px;
  background: var(--champagne);
}

.calc__chip[hidden] {
  display: none !important;
}

.calc__slider {
  position: relative;
  display: block;
  padding-top: 1.15rem;
}

.calc__thumb-val {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  font-family: var(--font-accent);
  font-size: 0.98rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.calc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.calc__chip {
  cursor: none;
}

.calc__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc__chip span {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.2rem 0.58rem;
  border: 1px solid rgba(58, 47, 38, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.calc__chip:hover span {
  border-color: rgba(139, 107, 74, 0.55);
  background: #faf7f2;
}

.calc__chip input:checked + span,
.calc__chip:hover input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #faf6f0;
}

.calc__chip input:focus-visible + span {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.calc__controls input[type="range"] {
  width: 100%;
  height: 0.28rem;
  appearance: none;
  background: rgba(58, 47, 38, 0.12);
  border-radius: 999px;
  outline: none;
}

.calc__controls input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(58, 47, 38, 0.25);
  cursor: none;
}

.calc__controls input[type="range"]::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(58, 47, 38, 0.25);
  cursor: none;
}

.calc__result {
  position: sticky;
  top: calc(var(--nav-offset) + 1rem);
  padding: 1.15rem 1.2rem;
  background: var(--ink);
  color: #f6f0e7;
  border-radius: 1.25rem;
}

.calc__result-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 240, 231, 0.78);
}

.calc__metrics {
  display: grid;
  gap: 0.85rem;
  padding-bottom: 0.95rem;
  margin-bottom: 0.95rem;
  border-bottom: 1px solid rgba(246, 240, 231, 0.14);
}

.calc__metric {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.calc__metric-value {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  color: #faf6f0;
}

.calc__metric-label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(246, 240, 231, 0.72);
}

.calc__result .btn--fill {
  background: #f6f0e7;
  color: var(--ink);
  border-color: #f6f0e7;
  width: 100%;
  min-height: 2.5rem;
}

.calc__result .btn--fill:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: #241c14;
}

.cases .section-head h2,
.cases .section-lead {
  color: #f6f0e7;
}

.cases .section-head {
  max-width: 40rem;
  margin-bottom: 0;
}

.cases .eyebrow {
  color: var(--champagne);
}

.cases {
  padding: clamp(1.6rem, 3.2vw, 2.4rem) var(--page-x);
  padding-top: calc(clamp(1.6rem, 3.2vw, 2.4rem) + var(--section-stack) * 0.35);
  padding-bottom: 0.65rem;
  background:
    radial-gradient(900px 520px at 8% -10%, rgba(168, 137, 104, 0.28), transparent 52%),
    radial-gradient(700px 420px at 100% 90%, rgba(80, 55, 35, 0.35), transparent 48%),
    linear-gradient(165deg, #2a2118 0%, #3a2f26 48%, #241c14 100%);
  color: #f6f0e7;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: var(--section-curve);
  box-shadow:
    0 16px 40px rgba(24, 16, 10, 0.24),
    0 4px 14px rgba(24, 16, 10, 0.14);
  margin-bottom: calc(var(--section-stack) * -1);
}

.cases--open {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.cases__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(246, 240, 231, 0.12);
}

.cases__collapse {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
}

.cases__collapse-inner {
  min-height: 0;
}

.cases__toggle {
  margin: 1.35rem 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem 0.55rem 1rem;
  border: 1px solid rgba(246, 240, 231, 0.32);
  border-radius: 999px;
  background: transparent;
  color: #f6f0e7;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: none;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.cases__toggle-arrows {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cases__toggle-arrows svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cases--open .cases__toggle-arrows {
  transform: rotate(180deg);
}

.cases__toggle:hover {
  background: rgba(246, 240, 231, 0.1);
  border-color: rgba(246, 240, 231, 0.55);
}

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

.case {
  display: grid;
  grid-template-columns: minmax(9rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding: clamp(1.6rem, 3vw, 2.3rem) clamp(0.55rem, 1.4vw, 0.9rem);
  margin-inline: calc(clamp(0.55rem, 1.4vw, 0.9rem) * -1);
  border-bottom: 1px solid rgba(246, 240, 231, 0.12);
  border-radius: 0.85rem;
  transition: background 0.45s var(--ease);
}

.case:hover {
  background: rgba(246, 240, 231, 0.05);
}

.case__meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.2rem;
}

.case__num {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--champagne);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.case__tag {
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 240, 231, 0.72);
  line-height: 1.35;
  max-width: 14rem;
  font-weight: 500;
}

.case__quote {
  margin: 0.7rem 0 0;
  max-width: 15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.case__quote p {
  margin: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(246, 240, 231, 0.72);
  font-weight: 400;
}

.case__quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 240, 231, 0.42);
  font-weight: 500;
}

.case__body h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f6f0e7;
}

.case__story {
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
}

.case__story p {
  margin: 0;
  color: rgba(246, 240, 231, 0.72);
}

.case__label {
  display: inline-block;
  margin-right: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
}

.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246, 240, 231, 0.1);
}

.case__metrics dt {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 400;
  color: var(--champagne);
  line-height: 1;
}

.case__metrics dd {
  margin: 0.4rem 0 0;
  color: rgba(246, 240, 231, 0.55);
  font-size: 0.86rem;
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.process__steps li {
  padding: 1.4rem 1.1rem 1.2rem;
  border: 1px solid rgba(58, 47, 38, 0.08);
  border-radius: 1.15rem;
  background: #ffffff;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}

.process__steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 137, 104, 0.45);
  box-shadow: 0 18px 40px rgba(58, 47, 38, 0.08);
}

.process__num {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bronze);
  letter-spacing: 0.08em;
}

.process__steps h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
}

.statement {
  padding: clamp(2.6rem, 6vw, 4.8rem) var(--page-x);
  padding-top: calc(clamp(2.6rem, 6vw, 4.8rem) + var(--section-stack) * 0.45);
  text-align: center;
  background: #ffffff;
  position: relative;
  z-index: 2;
  border-radius: var(--section-curve);
  box-shadow: var(--section-shadow);
  margin-bottom: calc(var(--section-stack) * -1);
}

.statement blockquote {
  margin: 0 auto;
  max-width: 44rem;
}

.statement p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.statement cite {
  display: inline-block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--bronze);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact__panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: clamp(1.2rem, 2.6vw, 1.9rem);
  background: #ffffff;
  border: 1px solid rgba(58, 47, 38, 0.1);
  box-shadow: 0 28px 70px rgba(58, 47, 38, 0.08);
  border-radius: 1.25rem;
}

.contact__details {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact__details li {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.contact__details span:first-child {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.contact__details a {
  font-weight: 700;
  transition: color 0.25s var(--ease);
}

.contact__details a:hover {
  color: var(--bronze);
}

.contact__form {
  display: grid;
  gap: 0.95rem;
  position: relative;
}

.contact__form label {
  display: grid;
  gap: 0.4rem;
}

.contact__form label span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__form input:not([type="checkbox"]),
.contact__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  resize: vertical;
}

.contact__form input:not([type="checkbox"]):focus,
.contact__form textarea:focus {
  border-color: rgba(165, 107, 60, 0.7);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(168, 137, 104, 0.15);
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.contact__form .contact__hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.calc__chips-wrap {
  position: relative;
  min-width: 0;
}

.calc__chips-hint {
  display: none;
}

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

.footer {
  padding: 1.5rem var(--page-x) 1.8rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(58, 47, 38, 0.06);
  border-radius: var(--section-curve);
  box-shadow: var(--section-shadow);
  position: relative;
  z-index: 0;
  margin: 0 var(--section-gutter) var(--section-gutter);
}

.footer__brand {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.footer__brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  background: linear-gradient(120deg, var(--ink), var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__brand-sub {
  font-family: var(--font-agency);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  font-size: 0.78rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
}

.footer__copy {
  margin-top: 1.4rem !important;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  :root {
    --page-x: clamp(1rem, 4vw, 1.6rem);
  }

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

  .stats__item:first-child {
    border-radius: 0;
  }

  .stats__item:nth-child(3) {
    border-radius: 0 0 0 var(--section-curve);
  }

  .stats__item:last-child {
    border-radius: 0 0 var(--section-curve) 0;
  }

  .service-row {
    grid-template-columns: 1fr auto;
    gap: 0.55rem 0.8rem;
    padding: 1.05rem 0.15rem;
  }

  .service-row p {
    grid-column: 1 / -1;
    max-width: none;
  }

  .service-row__arrow {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    opacity: 0.75;
  }

  .case,
  .process__steps,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .case__meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.55rem 0.9rem;
  }

  .case__quote {
    flex: 1 1 100%;
    max-width: none;
    margin-top: 0.15rem;
  }

  .case__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .case__tag {
    max-width: none;
  }

  .process__steps {
    gap: 0.75rem;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .calc__layout {
    grid-template-columns: 1fr;
  }

  .calc__result {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 3.25rem;
    --page-x: max(1.45rem, env(safe-area-inset-left), env(safe-area-inset-right));
    --section-curve: 1.15rem;
    --section-stack: 1.25rem;
    --section-gutter: 0.55rem;
  }

  .nav {
    grid-template-columns: 1fr auto;
    left: max(var(--section-gutter), env(safe-area-inset-left));
    right: max(var(--section-gutter), env(safe-area-inset-right));
    padding-left: max(var(--page-x), env(safe-area-inset-left));
    padding-right: max(var(--page-x), env(safe-area-inset-right));
  }

  .nav::before {
    left: calc(max(var(--section-gutter), env(safe-area-inset-left)) * -1);
    right: calc(max(var(--section-gutter), env(safe-area-inset-right)) * -1);
  }

  .nav__brand-mark {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: block;
  }

  .mobile-menu {
    right: max(var(--section-gutter), env(safe-area-inset-right));
    padding: 0.6rem;
  }

  .mobile-menu a:not(.btn) {
    padding: 0.72rem 0.8rem;
    font-size: 1.02rem;
  }

  .mobile-menu .btn {
    margin-top: 0.5rem;
  }

  .fold {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .fold__stage {
    flex: 0 0 auto;
    /* svh only: dvh jumps when mobile browser chrome hides on scroll */
    min-height: 100svh;
    min-height: calc(var(--app-vh, 1svh) * 100);
    display: flex;
    flex-direction: column;
  }

  .fold__stage .marquee {
    margin-top: auto;
    flex-shrink: 0;
  }

  .fold .stats {
    flex: 0 0 auto;
  }

  .fold .hero {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    padding:
      calc(var(--nav-offset) + 1.85rem)
      max(var(--page-x), env(safe-area-inset-right))
      1.5rem
      max(var(--page-x), env(safe-area-inset-left));
    overflow: visible;
  }

  .fold .hero .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    gap: 1.35rem;
  }

  .hero__brand {
    margin-bottom: 0;
    padding-bottom: 1.35rem;
    gap: 0.5rem 0.75rem;
    flex-shrink: 0;
  }

  .hero__brand-main {
    font-size: clamp(2.55rem, 13.5vw, 3.55rem);
  }

  .hero__brand-sub {
    top: 0;
    font-size: 1rem;
    margin-left: 0.06em;
  }

  .hero__slogan {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .hero__title {
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    line-height: 1.22;
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-top: 1.25rem;
  }

  .hero__actions {
    flex-direction: column;
    margin-top: 0;
    gap: 0.9rem;
    width: 100%;
    flex-shrink: 0;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 3.45rem;
    font-size: 1.05rem;
  }

  /* —— Calc: compact mobile layout —— */
  .calc {
    padding: 1.5rem var(--page-x) 1.65rem;
    padding-top: calc(1.5rem + var(--section-stack) * 0.3);
  }

  .calc__head {
    margin-bottom: 0.65rem;
  }

  .calc__title {
    font-size: 1.35rem;
    max-width: none;
    line-height: 1.25;
  }

  .calc__title--long {
    display: none;
  }

  .calc__title--short {
    display: block;
  }

  .calc__layout {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
  }

  .calc__controls {
    gap: 0.65rem;
    min-width: 0;
  }

  .calc__field {
    gap: 0.35rem;
    min-width: 0;
  }

  .calc__field legend {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    margin-bottom: 0;
  }

  .calc__chips-wrap {
    margin-right: -0.15rem;
  }

  .calc__chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.15rem;
    padding-right: 3.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 2.8rem), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 2.8rem), transparent 100%);
  }

  .calc__chips::-webkit-scrollbar {
    display: none;
  }

  .calc__chips-hint {
    display: none;
    position: absolute;
    right: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: var(--bronze);
    background: linear-gradient(90deg, transparent, rgba(247, 244, 239, 0.92) 28%, rgba(247, 244, 239, 0.98));
    padding: 0.35rem 0.15rem 0.35rem 0.85rem;
    white-space: nowrap;
    transition: opacity 0.2s var(--ease);
  }

  .calc__chip {
    flex: 0 0 auto;
  }

  .calc__chip span {
    min-height: 2.75rem;
    padding: 0.35rem 0.78rem;
    font-size: 0.8rem;
  }

  .calc__ranges {
    padding: 0.15rem 0.75rem;
    border-radius: 0.9rem;
  }

  .calc__field--range {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "label value"
      "slider slider";
    align-items: baseline;
    column-gap: 0.55rem;
    row-gap: 0.2rem;
    padding: 0.55rem 0;
  }

  .calc__field--range .calc__label {
    grid-area: label;
    padding-left: 0.55rem;
    font-size: 0.62rem;
    margin: 0;
  }

  .calc__field--range .calc__thumb-val {
    grid-area: value;
    position: static;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    font-size: 0.95rem;
    text-align: right;
    white-space: nowrap;
  }

  .calc__field--range .calc__slider {
    grid-area: slider;
    display: block;
    padding-top: 0.15rem;
  }

  .calc__controls input[type="range"] {
    height: 0.4rem;
  }

  .calc__controls input[type="range"]::-webkit-slider-thumb {
    width: 1.75rem;
    height: 1.75rem;
  }

  .calc__controls input[type="range"]::-moz-range-thumb {
    width: 1.75rem;
    height: 1.75rem;
  }

  .calc__result {
    position: static;
    order: -1;
    padding: 0.85rem 0.95rem;
    border-radius: 1rem;
  }

  .calc__result-title {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .calc__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.75rem;
    padding-bottom: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .calc__metric {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .calc__metric-value {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
  }

  .calc__metric-label {
    font-size: 0.78rem;
  }

  .calc__result .btn--fill {
    min-height: 2.55rem;
    width: 100%;
    font-size: 0.92rem;
  }

  .marquee {
    padding: 0.78rem 0;
  }

  .marquee__group {
    font-size: 0.72rem;
    gap: 1.85rem;
  }

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

  .stats__item:first-child,
  .stats__item:nth-child(3) {
    border-radius: 0;
  }

  .stats__item:last-child {
    border-radius: 0 0 var(--section-curve) var(--section-curve);
  }

  .stats__item {
    gap: 1.15rem;
    padding: 1.85rem 1.45rem;
  }

  .stats__icon {
    flex-basis: 2.8rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .stats__icon svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .stats__num {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .stats__label {
    max-width: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .services,
  .process,
  .contact,
  .statement {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .cases {
    padding-top: 2rem;
    padding-bottom: 0.35rem;
    margin-bottom: -0.45rem;
  }

  .cases--open {
    padding-bottom: 2.2rem;
    margin-bottom: calc(var(--section-stack) * -1);
  }

  .cases .section-head {
    margin-bottom: 0;
  }

  .cases__toggle {
    margin-top: 1.2rem;
    min-height: 2.55rem;
    padding: 0.55rem 0.9rem 0.55rem 1rem;
  }

  .section-head {
    margin-bottom: 2.75rem;
  }

  .section-head h2,
  .contact__copy h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.22;
  }

  .section-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-top: 1rem;
  }

  .service-row {
    padding: 1.35rem 0.95rem;
    gap: 0.95rem 1rem;
  }

  .service-row h3 {
    font-size: 1.22rem;
    line-height: 1.35;
  }

  .service-row p {
    font-size: 0.94rem;
    line-height: 1.6;
    margin-top: 0.4rem;
  }

  .case {
    gap: 1.5rem;
    padding: 2.5rem 0;
  }

  .case__meta {
    gap: 0.75rem 1rem;
    margin-bottom: 0.45rem;
  }

  .case__num {
    font-size: 1.35rem;
  }

  .case__tag {
    font-size: 0.82rem;
  }

  .case__quote {
    margin-top: 0.55rem;
  }

  .case__quote p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .case__body h3 {
    font-size: 1.22rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }

  .case__story {
    gap: 1.25rem;
  }

  .case__story p {
    line-height: 1.6;
  }

  .case__metrics {
    grid-template-columns: 1fr;
    gap: 1.05rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .case__metrics > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.85rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(246, 240, 231, 0.1);
  }

  .case__metrics > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .case__metrics dt {
    font-size: 1.35rem;
  }

  .case__metrics dd {
    margin: 0;
    text-align: right;
  }

  .process__steps {
    gap: 1.25rem;
  }

  .process__steps li {
    padding: 1.85rem 1.35rem 1.7rem;
  }

  .process__steps h3 {
    margin-bottom: 1.05rem;
  }

  .statement {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .statement p {
    font-size: clamp(1.15rem, 5.5vw, 1.45rem);
    line-height: 1.5;
  }

  .statement cite {
    margin-top: 1.75rem;
    display: inline-block;
  }

  .contact__panel {
    padding: 1.75rem 1.35rem;
    gap: 2.35rem;
  }

  .contact__details {
    gap: 1.15rem;
    margin-top: 1.65rem;
  }

  .contact__details li {
    padding: 1.05rem 0;
  }

  .contact__form {
    gap: 1.3rem;
  }

  .contact__form label {
    gap: 0.65rem;
  }

  .contact__form input:not([type="checkbox"]),
  .contact__form textarea,
  .contact__form .btn,
  .contact__actions .btn {
    min-height: 3.1rem;
    font-size: 1rem;
  }

  .contact__form textarea {
    min-height: 8.5rem;
  }

  .contact__actions {
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .contact__form .contact__consent {
    margin: 0.75rem 0 1rem;
    column-gap: 0.9rem;
  }

  .footer {
    padding-top: 2.6rem;
    padding-bottom: max(2.8rem, env(safe-area-inset-bottom));
  }

  .footer__brand {
    margin-bottom: 1.15rem;
  }

  .footer p + p {
    margin-top: 0.85rem;
  }
}

@media (max-height: 560px) and (max-width: 950px), (orientation: landscape) and (max-width: 950px) {
  .fold__stage {
    min-height: auto;
  }

  .fold .hero {
    padding-top: calc(var(--nav-offset) + max(0.85rem, env(safe-area-inset-top, 0px)));
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--page-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-x), env(safe-area-inset-right, 0px));
  }

  .fold .hero .hero__content {
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .hero__brand {
    padding-bottom: 0.55rem;
  }

  .hero__brand-main {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  }

  .hero__lead {
    display: none;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .hero__actions .btn {
    width: auto;
    flex: 1 1 10rem;
    min-height: 2.65rem;
    font-size: 0.92rem;
  }

  .fold__stage .marquee {
    margin-top: 0.75rem;
  }

  .mobile-sticky-cta {
    bottom: max(0.7rem, env(safe-area-inset-bottom, 0px));
    left: max(0.85rem, env(safe-area-inset-left, 0px));
    right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 420px) {
  :root {
    --page-x: 1.25rem;
  }

  .hero__brand-main {
    font-size: 2.45rem;
  }

  .hero__title {
    font-size: 1.45rem;
  }

  .fold .hero .hero__content {
    min-height: 0;
    gap: 1.1rem;
  }

  .stats__item {
    padding: 1.65rem 1.2rem;
  }

  .services,
  .process,
  .contact,
  .statement {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .cases {
    padding-top: 1.85rem;
    padding-bottom: 0.3rem;
    margin-bottom: -0.35rem;
  }

  .cases--open {
    padding-bottom: 2rem;
    margin-bottom: calc(var(--section-stack) * -1);
  }
}

@media (max-width: 900px), (pointer: coarse) {
  .noise {
    display: none;
  }

  .calc__chip span {
    min-height: 2.85rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.84rem;
  }

  .mobile-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 60;
    left: max(1rem, env(safe-area-inset-left, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    min-height: 3.05rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: var(--ink);
    color: #f7f4ef;
    font-family: var(--font-display, inherit);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(36, 28, 22, 0.28);
    transform: translate3d(0, 120%, 0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.22s var(--ease);
    touch-action: manipulation;
  }

  html.hero-offscreen:not(.near-contact) .mobile-sticky-cta {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
  }

  body.is-menu-open .mobile-sticky-cta {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(0, 120%, 0) !important;
  }

  body {
    padding-bottom: max(4.6rem, calc(env(safe-area-inset-bottom, 0px) + 3.6rem));
  }

  .calc__chips-wrap--scrollable .calc__chips-hint {
    display: block;
  }

  .calc__chips-wrap--scrolled .calc__chips-hint {
    opacity: 0;
  }

  .topo {
    transform: translateZ(0);
  }

  .page-glow::after {
    animation: pageMesh 40s linear infinite;
    opacity: 0.32;
    will-change: background-position;
  }

  .hero__glow {
    filter: none;
    opacity: 0.9;
    animation: heroGlowMobile 9s ease-in-out infinite alternate;
    will-change: transform, opacity;
    transform: translateZ(0);
  }

  @keyframes heroGlowMobile {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
    to { transform: translate3d(-3%, 4%, 0) scale(1.06); opacity: 1; }
  }

  .hero__brand-main > span {
    background: linear-gradient(110deg, var(--ink) 28%, var(--bronze) 52%, var(--ink) 72%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: brandShimmer 7s ease-in-out infinite;
  }

  .nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .btn,
  .service-row,
  .stats__item,
  .calc__chip span,
  .cases__toggle {
    transition-duration: 0.14s;
    touch-action: manipulation;
  }

  .btn:active,
  .service-row:active,
  .cases__toggle:active {
    transform: scale(0.985);
  }

  .marquee__track {
    animation-duration: 87s;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

  .mobile-menu {
    will-change: transform, opacity;
    transform: translateZ(0);
  }

  .mobile-menu a:not(.btn) {
    transition: background 0.12s var(--ease), color 0.12s var(--ease), transform 0.12s var(--ease);
  }

  .mobile-menu a:not(.btn):active {
    transform: translateX(2px);
  }
}

html.hero-offscreen .hero__glow,
html.hero-offscreen .hero__brand-main > span,
html.hero-offscreen .page-glow::after,
html.hero-offscreen .marquee__track {
  animation-play-state: paused;
  will-change: auto;
}

html.mobile-lite .fold,
html.mobile-lite .calc,
html.mobile-lite .services,
html.mobile-lite .cases,
html.mobile-lite .process,
html.mobile-lite .statement,
html.mobile-lite .contact {
  will-change: auto;
}

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

  .marquee__track {
    animation: none !important;
  }
}

.contact__actions {
  display: grid;
  gap: 0.7rem;
}

.contact__form .contact__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.7rem;
  margin: 0.35rem 0 0.5rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.contact__form .contact__check {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 1.15rem !important;
  height: 1.15rem !important;
  min-width: 1.15rem;
  min-height: 1.15rem !important;
  max-width: 1.15rem;
  margin: 0.2rem 0 0 !important;
  padding: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 0.35rem;
  background: #fff !important;
  box-shadow: none !important;
  accent-color: var(--bronze);
  position: relative;
}

.contact__form .contact__check::before {
  content: "";
  position: absolute;
  inset: -0.85rem;
}

.contact__form .contact__consent-copy {
  min-width: 0;
}

.contact__form .contact__consent-text {
  display: inline !important;
  gap: 0 !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--ink-soft) !important;
  line-height: 1.45;
  text-align: left;
}

.contact__form .contact__privacy-link {
  display: inline;
  margin-left: 0.25em;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bronze);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.legal-nav .nav__brand {
  justify-self: start;
}

.legal-nav .nav__cta {
  justify-self: end;
}

@media (max-width: 900px) {
  .legal-nav .nav__cta {
    display: inline-flex;
  }
}

.legal-page {
  cursor: auto;
  background: #ffffff;
}

.legal-page,
.legal-page a,
.legal-page button {
  cursor: auto;
}

.legal {
  max-width: 42rem;
  margin: 0 auto;
  padding: calc(var(--nav-offset) + 2.4rem) var(--page-x) 4rem;
}

.legal h1 {
  margin: 0.4rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal__updated {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal section {
  margin-bottom: 1.6rem;
}

.legal h2 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.legal p,
.legal li {
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.nav__burger.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__burger.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
