@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink: #171717;
  --charcoal: #242424;
  --slate: #69717a;
  --line: #d8d1c6;
  --line-dark: #c5bbad;
  --surface: #fffdf8;
  --surface-alt: #f3eee6;
  --surface-muted: #ede6db;
  --surface-hero: #f6f2ea;
  --accent-plum: #6f5163;
  --accent-ochre: #9b7a3f;
  --accent-green: #2d5d55;
  --accent-pink: #e8a8e7;
  --accent-berry: #8c1d40;
  --max-width: 1120px;
  --page-gutter: 2.5rem;
  --section-y: 4.5rem;
  --section-y-tight: 3rem;
  --section-y-deep: 5rem;
  --layout-gap: 2rem;
  --grid-gap: 1.5rem;
  --card-padding: 1.5rem;
  --card-padding-compact: 1rem 1.25rem;
  --radius: 8px;
  --font-body: "Instrument Sans", Arial, sans-serif;
  --font-heading: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface-alt);
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #ffffff;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-plum);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 242, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.container {
  width: min(var(--max-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--grid-gap);
}

.header-inner {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.footer .brand-logo {
  height: 30px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--slate);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent-plum);
}

.nav .nav-contact {
  padding: 0.48rem 0.8rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav .nav-contact:hover,
.nav .nav-contact[aria-current="page"] {
  border-color: var(--accent-green);
  background: rgba(45, 93, 85, 0.06);
  color: var(--accent-green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.button-secondary {
  border-color: var(--line-dark);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(45, 93, 85, 0.05);
}

.hero {
  background: var(--surface-hero);
  color: var(--ink);
  padding: var(--section-y) 0 calc(var(--section-y) - 0.25rem);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(290px, 0.76fr);
  gap: var(--layout-gap);
  align-items: center;
}

.hero-copy {
  max-width: none;
}

.hero-copy .eyebrow {
  margin-bottom: 0.9rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-plum);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  max-width: 26ch;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: inherit;
}

.hero p {
  max-width: 40rem;
  color: var(--slate);
  font-size: 1.05rem;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.8rem, 4.85vw, 4.1rem);
  line-height: 1.02;
}

.hero-title-line {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.hero-notes {
  display: grid;
  gap: 0;
  justify-items: end;
}

.hero-note {
  position: relative;
  width: min(100%, 22rem);
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 32px rgba(23, 23, 23, 0.035);
  opacity: 0;
}

.hero-note:nth-child(1) {
  border-color: rgba(140, 29, 64, 0.18);
  background: #f7ecef;
  z-index: 1;
  transform: rotate(-2deg);
  animation:
    note-enter-a 560ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards,
    note-float-a 8s ease-in-out 900ms infinite;
}

.hero-note:nth-child(2) {
  border-color: rgba(111, 81, 99, 0.18);
  background: #f4ead8;
  margin-top: -0.35rem;
  z-index: 2;
  transform: rotate(1.8deg);
  animation:
    note-enter-b 560ms cubic-bezier(0.22, 1, 0.36, 1) 620ms forwards,
    note-float-b 9s ease-in-out 1400ms infinite;
}

.hero-note:nth-child(3) {
  border-color: rgba(45, 93, 85, 0.18);
  background: #eef5f2;
  margin-top: -0.35rem;
  z-index: 3;
  transform: rotate(-1deg);
  animation:
    note-enter-c 560ms cubic-bezier(0.22, 1, 0.36, 1) 1120ms forwards,
    note-float-c 10s ease-in-out 1900ms infinite;
}

.hero-note:nth-child(1) .note-label {
  color: var(--accent-berry);
}

.hero-note:nth-child(2) .note-label {
  color: var(--accent-ochre);
}

.hero-note:nth-child(3) .note-label {
  color: var(--accent-green);
}

.note-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  color: var(--accent-plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-label img {
  width: 14px;
  height: 14px;
  opacity: 0.78;
}

.hero-note p,
.note-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

@keyframes note-enter-a {
  from {
    opacity: 0;
    transform: rotate(-2deg) translateY(14px);
  }
  to {
    opacity: 1;
    transform: rotate(-2deg) translateY(0);
  }
}

@keyframes note-enter-b {
  from {
    opacity: 0;
    transform: rotate(1.8deg) translateY(14px);
  }
  to {
    opacity: 1;
    transform: rotate(1.8deg) translateY(0);
  }
}

@keyframes note-enter-c {
  from {
    opacity: 0;
    transform: rotate(-1deg) translateY(14px);
  }
  to {
    opacity: 1;
    transform: rotate(-1deg) translateY(0);
  }
}

@keyframes note-float-a {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-4px); }
}

@keyframes note-float-b {
  0%, 100% { transform: rotate(1.8deg) translateY(0); }
  50% { transform: rotate(1.8deg) translateY(-5px); }
}

@keyframes note-float-c {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-3px); }
}

.underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.08em;
  text-decoration: none;
  isolation: isolate;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.09em;
  background: var(--accent-plum);
  border-radius: 999px;
  z-index: -1;
}

.underline-growth::after {
  background: var(--accent-green);
}

.section {
  padding: var(--section-y) 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--ink);
  color: #ffffff;
  padding-top: calc(var(--section-y) + 0.25rem);
  padding-bottom: calc(var(--section-y-deep) + 0.15rem);
}

.section-dark .eyebrow {
  color: #d98aa4;
}

.dark-intro-title {
  max-width: 24ch;
}

.dark-intro-title-line {
  display: block;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .kicker {
  color: inherit;
}

.section-lead {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: var(--slate);
}

.section-header {
  max-width: 62rem;
  margin-bottom: 1.5rem;
}

.section-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--grid-gap);
  margin-bottom: 2rem;
}

.section-header-row .section-header {
  margin-bottom: 0;
}

.section-note {
  max-width: 18rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent-plum);
}

.section-note p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.editorial-band {
  background: linear-gradient(180deg, #f5eddc 0%, #efe3cc 100%);
  border-top: 1px solid rgba(111, 81, 99, 0.06);
  border-bottom: 1px solid rgba(111, 81, 99, 0.08);
}

.launch-note-band {
  background: rgba(45, 93, 85, 0.08);
  border-top: 1px solid rgba(45, 93, 85, 0.12);
  border-bottom: 1px solid rgba(45, 93, 85, 0.12);
}

.editorial-break {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.editorial-band-copy {
  max-width: 24ch;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: center;
}

.tag-loop {
  --tag-gap: 0.1rem;
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 0.1rem 0;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.tag-loop-marquee {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  gap: var(--tag-gap);
  animation: tag-loop-scroll 108s linear infinite;
}

.tag-loop-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--tag-gap);
  min-width: max-content;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  position: relative;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  isolation: isolate;
}

.tag-chip-text {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(155, 122, 63, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  color: var(--ink);
  visibility: visible;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tag-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  width: 0.18rem;
  height: 60%;
  transform: translateX(-50%) scaleY(0.82);
  border-radius: 999px;
  background: rgba(155, 122, 63, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease;
}

@keyframes tag-loop-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--tag-gap) / 2)));
  }
}

@keyframes tag-chip-shudder {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  18% {
    transform: translateX(-1px) rotate(-0.35deg);
  }
  36% {
    transform: translateX(1.5px) rotate(0.28deg);
  }
  54% {
    transform: translateX(-1px) rotate(-0.18deg);
  }
  72% {
    transform: translateX(0.7px) rotate(0.12deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.tag-chip.is-breaking .tag-chip-text {
  animation: tag-chip-shudder 280ms ease-out 1;
  box-shadow: 0 5px 14px rgba(23, 23, 23, 0.07);
  border-color: rgba(155, 122, 63, 0.24);
}

.tag-chip.is-breaking::after {
  opacity: 0.28;
  transform: translateX(-50%) scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .tag-loop-marquee {
    animation: none;
  }

  .tag-chip-text,
  .tag-chip::after {
    transition: none;
  }
}

.section-warm {
  background: rgba(155, 122, 63, 0.07);
  border-top: 1px solid rgba(155, 122, 63, 0.12);
  border-bottom: 1px solid rgba(155, 122, 63, 0.12);
}

.signal-list {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.signal-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

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

.signal-bullet {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(111, 81, 99, 0.08);
  border: 1px solid rgba(111, 81, 99, 0.14);
}

.signal-bullet img {
  width: 14px;
  height: 14px;
  opacity: 0.82;
}

.signal-item p {
  margin: 0.08rem 0 0;
  color: var(--ink);
}

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

.compare-card {
  padding: 1.35rem 1.4rem;
}

.compare-card h3 {
  margin-bottom: 0.75rem;
}

.compare-card p {
  margin: 0;
  color: var(--slate);
}

.compare-card .list {
  margin-top: 1rem;
}

.compare-card-before {
  border-top: 3px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.72);
}

.compare-card-after {
  border-top: 3px solid var(--accent-green);
  background: rgba(45, 93, 85, 0.035);
}

.dark-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: var(--layout-gap);
  align-items: start;
}

.dark-intro {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.1rem;
}

.dark-intro h2 {
  max-width: none;
  margin-bottom: 0;
}

.dark-intro p,
.section-lead-dark {
  color: #d9ddd8;
  max-width: 48ch;
  margin: 0;
}

.dark-panels {
  position: relative;
  max-width: 25.5rem;
  margin-left: auto;
  transform: translateX(-1.35rem);
  padding-top: 0.85rem;
  padding-bottom: calc(var(--section-y-deep) + 0.15rem);
}

.dark-panel {
  position: relative;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
  z-index: 1;
}

.dark-panels > .dark-panel:not(.dark-panel-success) {
  transform: rotate(0deg) translateX(-1.2rem) translateY(calc(-1rem - 18px));
  transform-origin: top right;
}

.dark-panel-success {
  position: absolute;
  left: 1rem;
  right: -0.2rem;
  top: 4.2rem;
  border-top-color: var(--accent-green);
  background: rgba(18, 31, 28, 0.97);
  backdrop-filter: blur(4px);
  box-shadow: 0 24px 48px rgba(7, 15, 13, 0.34);
  transform: rotate(-1.15deg) translateY(2.2rem) scale(0.985);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transform-origin: top left;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.dark-panel-success.is-visible {
  opacity: 1;
  transform: rotate(-1.15deg) translateY(0) scale(1);
  pointer-events: auto;
}

.dark-panels.is-revealed .dark-panel-success.is-visible {
  opacity: 0.96;
  transform: rotate(-0.12deg) translateX(13.55rem) translateY(6.35rem) scale(0.865);
  box-shadow: 0 18px 36px rgba(7, 15, 13, 0.24);
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.dark-panel h3 {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.dark-panel-success h3 {
  font-size: 1.22rem;
  line-height: 1.08;
}

.dark-list {
  display: grid;
  gap: 0.7rem;
}

.dark-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.dark-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.dark-marker-box {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.dark-marker-check {
  background: #cfe9df;
  color: #17322d;
}

.dark-list-item p {
  margin: 0;
  color: #ece8df;
  font-size: 0.96rem;
  line-height: 1.45;
}

.dark-panel:not(.dark-panel-success) .dark-list-item p {
  font-size: 0.875rem;
  line-height: 1.34;
}

.page-intro .container {
  max-width: 760px;
}

.page-intro .eyebrow {
  margin-bottom: 0.9rem;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

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

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

.card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--card-padding);
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.025);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  border-top-width: 3px;
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.03);
}

.service-detail {
  margin: 0.8rem 0 1rem;
  color: var(--slate);
  font-size: 0.94rem;
}

.service-card-plum {
  border-top-color: var(--accent-plum);
  background: rgba(255, 255, 255, 0.74);
}

.service-card-moss {
  border-top-color: var(--accent-green);
  background: rgba(255, 255, 255, 0.74);
}

.service-card-berry {
  border-top-color: #d590d3;
  background: rgba(255, 255, 255, 0.74);
}

.card p,
.list,
.text-muted {
  color: var(--slate);
}

.service-card p {
  color: #5f6973;
}

.service-card h2,
.service-card h3 {
  max-width: 18ch;
}

.nowrap {
  white-space: nowrap;
}

.service-card h3 {
  font-size: 1.52rem;
  line-height: 1.08;
  margin-bottom: 0.35rem;
}

.card-label {
  margin: 0 0 0.85rem;
  color: var(--accent-plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-moss .card-label {
  color: var(--accent-green);
}

.service-card-berry .card-label {
  color: var(--accent-berry);
}

.card-top-icon-only {
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}

.service-card > .button {
  margin-top: auto;
  align-self: flex-start;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

.list li::marker {
  color: var(--accent-plum);
}

.list li + li {
  margin-top: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: var(--layout-gap);
  align-items: start;
}

.bullet-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 2rem;
  max-width: 58rem;
}

.bullet-columns .list {
  margin: 0;
}

.proof-list {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.proof-list-plain {
  max-width: none;
}

.proof-item {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.proof-item:nth-child(1) {
  border-top-color: var(--accent-plum);
  background: rgba(111, 81, 99, 0.035);
}

.proof-item:nth-child(2) {
  border-top-color: var(--accent-green);
  background: rgba(45, 93, 85, 0.035);
}

.proof-item:nth-child(3) {
  border-top-color: var(--accent-berry);
  background: rgba(232, 168, 231, 0.08);
}

.proof-item:nth-child(4) {
  border-top-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.74);
}

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

.proof-item h3 {
  margin-bottom: 0.55rem;
}

.proof-item .text-muted,
.proof-item p.text-muted {
  color: var(--slate);
}

.proof-item-plain {
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

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

.proof-item-plain p {
  color: var(--ink);
}

.process-loop-band {
  background: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-loop-band h2,
.process-loop-band .section-lead {
  color: #f5f1e8;
}

.process-loop-band .eyebrow {
  color: #e1c9d8;
}

.process-loop {
  position: relative;
  min-height: 30.5rem;
  margin-top: -3.6rem;
}

.process-loop-segment-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-loop-segment {
  position: absolute;
  pointer-events: none;
}

.process-loop-segment svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.process-loop-segment path {
  fill: none;
  stroke: rgba(232, 168, 231, 0.82);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-loop-segment-one {
  left: 51.2917%;
  top: 17.5538%;
  width: 30.2425%;
  height: 12.5088%;
  transform: rotate(-5deg);
  transform-origin: center;
}

.process-loop-segment-two {
  left: 68.6667%;
  top: 41.76%;
  width: 15.3517%;
  height: 29.3863%;
  transform: rotate(2deg);
  transform-origin: center;
}

.process-loop-segment-three {
  left: 18.5417%;
  top: 70.0625%;
  width: 31.5%;
  height: 12.2613%;
  transform: rotate(-5deg);
  transform-origin: center;
}

.process-loop-segment-four {
  left: 15.9258%;
  top: 28.3575%;
  width: 15.7975%;
  height: 30.955%;
  transform: rotate(5deg);
  transform-origin: center;
}

.process-loop-center {
  position: absolute;
  left: 40.5%;
  top: 46.375%;
  width: 20.0833%;
  min-height: 5.125%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.96);
  border: 1px solid rgba(232, 168, 231, 0.22);
  color: #e1c9d8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}

.process-node {
  position: relative;
  width: 15rem;
  padding: 0.2rem;
  text-align: center;
  z-index: 1;
  outline: none;
}

.process-node h3 {
  margin: 0;
  font-size: 1.64rem;
  line-height: 1.04;
  transition: color 160ms ease, transform 160ms ease;
  color: #f7f4ed;
  display: inline-block;
  padding: 0.92rem 1.65rem 0.96rem;
  border-radius: 999px;
  background: #171717;
  white-space: nowrap;
}

.process-node p {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.55rem);
  width: 15rem;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(232, 168, 231, 0.16);
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.96);
  color: #d9ddd8;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.05);
}

.process-node:hover h3,
.process-node:focus-within h3,
.process-node:focus h3 {
  transform: translateY(-2px);
}

.process-node:hover p,
.process-node:focus-within p,
.process-node:focus p {
  opacity: 1;
  transform: translate(-50%, 0);
}

.process-node-one {
  position: absolute;
  left: 32.5%;
  top: 19.2%;
  width: 16.5%;
}

.process-node-two {
  position: absolute;
  left: 68.9167%;
  top: 28.4%;
  width: 25.6667%;
}

.process-node-three {
  position: absolute;
  left: 49.3%;
  top: 66%;
  width: 19.8333%;
}

.process-node-four {
  position: absolute;
  left: 5.5833%;
  top: 58.9%;
  width: 20.6667%;
}


.process-node-one h3 {
  color: #f5f1e8;
}

.process-node-two h3 {
  color: #f5f1e8;
}

.process-node-three h3 {
  color: #f5f1e8;
}

.process-node-four h3 {
  color: #f5f1e8;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.work-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32rem);
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scroll-snap-type: x proximity;
}

.work-carousel > * {
  scroll-snap-align: start;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 1.6rem;
  align-items: start;
}

.work-accordion {
  --work-card-height: 26rem;
  display: inline-flex;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  height: var(--work-card-height);
  align-items: stretch;
  justify-content: flex-start;
}

.work-accordion-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 0 0 3.45rem;
  min-width: 3.45rem;
  height: var(--work-card-height);
  align-self: stretch;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: flex-basis 220ms ease, flex-grow 220ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.work-accordion-card.is-active {
  flex: 0 0 min(34rem, calc(100vw - 24rem));
}

.work-accordion-card:hover,
.work-accordion-card:focus-within {
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.06);
}

.work-accordion-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 3.45rem;
  min-width: 3.45rem;
  padding: 0.75rem 0.2rem 3.2rem;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: width 200ms ease, min-width 200ms ease, padding 200ms ease, border-color 160ms ease;
}

.work-accordion-rail h3 {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  max-width: none;
  color: var(--accent-plum);
}

.work-accordion-icon {
  width: 38px;
  height: 38px;
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
}

.work-accordion-panel {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: stretch;
  gap: 0.65rem;
  width: 0;
  min-width: 0;
  height: 100%;
  padding: 1rem 1.1rem 1rem 1rem;
  position: relative;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 220ms ease;
}

.work-accordion-card.is-active .work-accordion-panel {
  width: auto;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.work-accordion-card.is-active .work-accordion-rail h3 {
  opacity: 0;
}

.work-accordion-card.is-active .work-accordion-rail {
  width: 0;
  min-width: 0;
  padding: 0;
  border-right-color: transparent;
}

.work-accordion-card.is-active .work-accordion-icon {
  opacity: 0;
  transform: scale(0.92);
}

.work-accordion-panel h3 {
  font-size: 1.9rem;
  line-height: 0.98;
  max-width: none;
  width: 100%;
}

.work-accordion-panel > p {
  max-width: 34ch;
  font-size: 0.98rem;
}

.work-accordion .feature-points {
  gap: 0.45rem;
  margin: 0.35rem 0 0;
}

.work-accordion .feature-points p {
  padding: 0.45rem 0;
  font-size: 0.94rem;
}

.work-accordion .card-link {
  font-size: 0.9rem;
  align-self: end;
  width: 100%;
  justify-content: flex-end;
  padding-top: 0.35rem;
}

.panel-kicker-row {
  display: block;
  width: 100%;
  margin-bottom: 0.55rem;
}

.panel-kicker-row .kicker {
  margin: 0;
}

.work-accordion-panel-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  position: absolute;
  top: 1rem;
  right: 1.1rem;
}

.work-accordion-panel .card-top {
  margin-bottom: 0.2rem;
}

.work-accordion-panel .card-top > div {
  width: 100%;
  padding-right: 3.2rem;
}

.work-accordion-card.service-card-moss .work-accordion-rail h3 {
  color: var(--accent-green);
}

.work-accordion-card.service-card-berry .work-accordion-rail h3 {
  color: var(--accent-berry);
}

.work-accordion-card.service-card-neutral .work-accordion-rail h3 {
  color: var(--ink);
}

.feature-primary {
  min-height: 100%;
}

.feature-primary h3 {
  font-size: 1.9rem;
  line-height: 1.05;
  max-width: 12ch;
}

.feature-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 1.25rem;
}

.feature-points p {
  margin: 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.feature-points p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
}

.feature-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-link:first-child {
  padding-top: 0.1rem;
}

.feature-link:last-child {
  padding-bottom: 0;
}

.feature-link h3 {
  margin: 0.15rem 0 0;
  max-width: none;
  font-size: 1.42rem;
  line-height: 1.1;
}

.feature-link p {
  margin: 0.5rem 0 0;
  max-width: 36ch;
  color: var(--slate);
}

.feature-link img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.72;
  margin-top: 0.35rem;
  transition: transform 120ms ease, opacity 120ms ease;
}

.feature-link:hover {
  color: var(--accent-plum);
}

.feature-link:hover img {
  opacity: 1;
  transform: translateX(2px);
}

.feature-layout-articles .feature-primary {
  background: rgba(255, 255, 255, 0.7);
}

.feature-layout-articles .feature-primary h3 {
  font-size: 1.72rem;
}

.case-study-card h2,
.case-study-card h3 {
  max-width: none;
}

.case-study-card p {
  color: var(--slate);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-bottom: 0.9rem;
}

.card-top .kicker {
  margin-bottom: 0;
}

.card-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.05);
}

.card-icon-chip img {
  width: 20px;
  height: 20px;
}

.service-card-plum .card-icon-chip {
  background: rgba(140, 29, 64, 0.12);
}

.service-card-plum .card-icon-chip img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(57%) saturate(3114%) hue-rotate(321deg)
    brightness(88%) contrast(92%);
}

.service-card-moss .card-icon-chip {
  background: rgba(45, 93, 85, 0.12);
}

.service-card-moss .card-icon-chip img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(19%) saturate(1150%) hue-rotate(120deg)
    brightness(93%) contrast(90%);
}

.service-card-berry .card-icon-chip {
  background: rgba(232, 168, 231, 0.26);
}

.service-card-berry .card-icon-chip img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(57%) saturate(3114%) hue-rotate(321deg)
    brightness(88%) contrast(92%);
}

.service-card-neutral {
  border-top-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.76);
}

.service-card-neutral .card-icon-chip {
  background: var(--surface-muted);
}

.service-card-neutral .card-icon-chip img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(5%) saturate(17%) hue-rotate(16deg)
    brightness(96%) contrast(94%);
}

.case-study-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 1.35rem;
}

.case-study-point {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink);
}

.case-study-point::before {
  content: "";
  flex: 0 0 auto;
  width: 0.48rem;
  height: 0.48rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.65;
}

.case-study-card .button {
  margin-top: auto;
}

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

.article-card h2,
.article-card h3 {
  max-width: none;
}

.article-card p {
  color: var(--slate);
}

.article-card,
.case-study-card {
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.article-content {
  max-width: 48rem;
}

.article-content h2,
.article-content h3 {
  max-width: none;
}

.article-content h2 {
  margin-top: 2.5rem;
}

.article-content h3 {
  margin-top: 1.75rem;
  font-size: 1.35rem;
}

.article-content p,
.article-content li {
  color: var(--slate);
}

.article-content .list {
  margin: 1rem 0 0;
}

.article-content .list li + li {
  margin-top: 0.65rem;
}

.article-content strong {
  color: var(--ink);
}

.meta-grid,
.outcome-grid {
  display: grid;
  gap: 1rem;
}

.meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meta-card,
.outcome-card {
  padding: 1.2rem 1.25rem;
}

.meta-card h3,
.outcome-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.meta-card p,
.outcome-card p {
  margin: 0;
  color: var(--slate);
}

.number-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.story-card {
  height: 100%;
}

.story-card h3 {
  margin-bottom: 0.7rem;
}

.story-card .list li + li {
  margin-top: 0.65rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.card-link img {
  width: 16px;
  height: 16px;
  opacity: 0.72;
  transition: transform 120ms ease, opacity 120ms ease;
}

.card-link:hover {
  color: var(--accent-plum);
}

.card-link:hover img {
  opacity: 1;
  transform: translateX(2px);
}

.feature-primary .card-link {
  width: 100%;
  justify-content: flex-end;
}

.contact-details p {
  margin-bottom: 0.75rem;
}

.contact-panel {
  background: rgba(45, 93, 85, 0.05);
}

.contact-panel h3 {
  margin-bottom: 0.6rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 1.5rem;
}

.cta {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  color: #ffffff;
  margin: 0;
}

.cta h2,
.cta p {
  max-width: 40rem;
}

.cta .text-muted {
  color: #d9ddd8;
}

.cta .button-primary {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}

.cta .button-primary:hover {
  background: var(--surface-muted);
  border-color: var(--surface-muted);
}

.cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cta .button-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.cta .hero-actions,
.cta .page-actions {
  justify-content: flex-start;
}

.journal-band {
  background: rgba(45, 93, 85, 0.08);
  border-top: 1px solid rgba(45, 93, 85, 0.12);
  border-bottom: 1px solid rgba(45, 93, 85, 0.12);
}

.journal-band .section-header .eyebrow {
  color: var(--accent-green);
}

.journal-band .feature-layout-articles .feature-primary {
  background: rgba(255, 255, 255, 0.82);
}

.final-cta-band {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta {
  max-width: 72rem;
  margin: 0 auto;
  text-align: left;
}

.final-cta h2 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.85rem;
}

.final-cta-line {
  display: block;
}

.final-cta .text-muted {
  max-width: 42rem;
  margin-left: 0;
  margin-right: 0;
  color: #d9ddd8;
}

.final-cta .page-actions {
  justify-content: flex-start;
}

.final-cta .button-primary {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #ffffff;
}

.final-cta .button-primary:hover {
  background: #254e47;
  border-color: #254e47;
}

.split-tight {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.25rem;
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: var(--layout-gap);
  align-items: start;
}

.footer-brand {
  max-width: 28rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-cta {
  margin-top: 0.15rem;
  justify-self: start;
}

.footer-heading {
  margin: 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a,
.footer-link {
  color: var(--slate);
  font-size: 0.95rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.footer-contact-link img {
  width: 18px;
  height: 18px;
}

.footer-nav a:hover,
.footer-link:hover,
.footer-social:hover {
  color: var(--accent-plum);
}

.footer-copy {
  color: var(--slate);
  font-size: 0.95rem;
  margin-top: 0.9rem;
  max-width: 34ch;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--slate);
  font-size: 0.95rem;
}

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

.contact-details .footer-social {
  margin-top: 0.2rem;
}

.about-principles {
  padding-top: 0.2rem;
}

.page-intro {
  background: var(--surface-hero);
  padding: var(--section-y) 0 var(--section-y-tight);
  border-bottom: 1px solid var(--line);
}

.page-intro p {
  max-width: 62ch;
  color: var(--slate);
}

.section-stack > * + * {
  margin-top: 1rem;
}

.kicker {
  color: var(--accent-plum);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--card-padding-compact);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.faq-item p {
  margin-top: 0.85rem;
  color: var(--slate);
}

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

.note-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.025);
}

.note-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.note-card-accent-plum {
  border-top: 3px solid var(--accent-plum);
}

.note-card-accent-moss {
  border-top: 3px solid var(--accent-green);
}

.note-card-accent-berry {
  border-top: 3px solid var(--accent-berry);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.82fr);
  gap: var(--layout-gap);
  align-items: start;
}

.about-notes {
  display: grid;
  gap: 1rem;
}

.about-intro p + p {
  margin-top: 0.9rem;
}

.service-card-moss .kicker {
  color: var(--accent-green);
}

.service-card-berry .kicker {
  color: var(--accent-berry);
}

.case-study-card:hover,
.article-card:hover {
  border-color: var(--line-dark);
  box-shadow: 0 12px 24px rgba(23, 23, 23, 0.04);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--slate);
  font-size: 0.95rem;
  font-weight: 500;
}

.back-link img {
  width: 16px;
  height: 16px;
  opacity: 0.72;
}

.back-link:hover {
  color: var(--accent-plum);
}

.back-link:hover img {
  opacity: 1;
}

@media (max-width: 1080px) {
  .article-grid,
  .grid-3,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout,
  .about-grid,
  .offer-guide,
  .dark-split,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    justify-items: start;
  }

  .dark-panels {
    max-width: none;
    margin-left: 0;
    padding-bottom: 0;
  }

  .dark-panel-success,
  .dark-panel-success.is-visible {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin-top: -1.25rem;
    opacity: 1;
    transform: rotate(-0.7deg);
    pointer-events: auto;
  }

  .section-header-row {
    display: grid;
  }

  .work-carousel {
    grid-auto-columns: minmax(260px, 28rem);
  }

  .process-loop {
    min-height: 0;
  }

  .work-accordion {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    gap: var(--grid-gap);
  }

  .work-accordion-card,
  .work-accordion-card.is-active {
    display: block;
    flex: none;
    min-width: 100%;
    height: auto;
  }

  .work-accordion-rail {
    display: none;
  }

  .work-accordion-card.is-active .work-accordion-rail h3 {
    opacity: 1;
  }

  .work-accordion-panel,
  .work-accordion-card.is-active .work-accordion-panel {
    display: grid;
    grid-template-rows: auto;
    gap: 0.75rem;
    width: auto;
    height: auto;
    min-height: 0;
    padding: var(--card-padding);
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .work-accordion-panel h3 {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .work-accordion-panel > p {
    max-width: none;
  }

  .work-accordion-panel .card-top > div {
    padding-right: 0;
  }
}

@media (min-width: 1180px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  :root {
    --section-y: 4rem;
    --section-y-deep: 4.5rem;
  }

  .grid-2,
  .grid-3,
  .split,
  .bullet-columns,
  .case-study-grid,
  .article-grid,
  .meta-grid,
  .outcome-grid,
  .offer-guide,
  .compare-grid,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .footer-inner {
    padding: 1rem 0;
  }

  .brand-logo {
    height: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .nav {
    gap: 0.9rem;
  }

  .hero {
    padding: var(--section-y) 0 calc(var(--section-y) - 0.5rem);
  }

  .hero-note {
    opacity: 1;
    transform: none !important;
    animation: none;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 8vw, 3.8rem);
  }

  .editorial-band-copy {
    max-width: 100%;
  }

  .final-cta h2 {
    max-width: none;
  }

  .work-accordion-panel h3 {
    max-width: none;
  }

  .process-loop {
    display: grid;
    gap: 0.9rem;
    min-height: 0;
    margin-top: 0.25rem;
  }

  .process-loop-segment-layer,
  .process-loop-center {
    display: none;
  }

  .process-node,
  .process-node-one,
  .process-node-two,
  .process-node-three,
  .process-node-four {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(155, 122, 63, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.94);
    text-align: left;
  }

  .process-node p,
  .process-node:hover p,
  .process-node:focus p,
  .process-node:focus-within p {
    position: static;
    width: auto;
    margin-top: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 1.5rem;
    --section-y: 3.5rem;
    --section-y-tight: 2.5rem;
    --section-y-deep: 4rem;
    --grid-gap: 1rem;
    --card-padding: 1.2rem;
  }

  .container {
    width: min(var(--max-width), calc(100% - var(--page-gutter)));
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .nav {
    width: 100%;
  }

  .brand-logo {
    height: 26px;
  }
}
