:root {
  --ink: #101828;
  --navy: #111f3d;
  --midnight: #07111f;
  --slate: #536071;
  --mist: #edf2f6;
  --paper: #f4f5f6;
  --white: #ffffff;
  --gold: #4FB7B0;
  --gold-soft: #e8eef1;
  --teal: #4FB7B0;
  --aqua: #d7f2ef;
  --hover: var(--navy);
  --line: rgba(16, 24, 40, .13);
  --shadow: 0 28px 70px rgba(7, 17, 31, .18);
}

* { box-sizing: border-box; }
html {
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  overflow-x: clip;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f5f6 0%, #eef1f4 42%, #dfe8f1 100%);
  line-height: 1.6;
  animation: pageFade .7s ease both;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input,
select,
textarea,
button {
  max-width: 100%;
}
p,
li,
strong,
a {
  overflow-wrap: anywhere;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f1f2f4;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(16, 24, 40, .1);
}
.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid rgba(16, 24, 40, .08);
}
.top-contact, .top-social {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.top-contact a, .top-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.top-strip svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}
.top-contact a { color: var(--navy); font-weight: 800; }
.top-contact a { transition: color .2s ease, transform .2s ease; }
.top-contact a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}
.top-social a {
  width: 28px;
  height: 28px;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(17, 31, 61, .1);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.top-social a:hover {
  color: var(--teal);
  background: rgba(79, 183, 176, .18);
  transform: translateY(-1px);
}
.nav {
  max-width: 1220px;
  margin: 0 auto;
  min-height: 82px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
.brand img {
  width: 148px;
  height: auto;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
  min-width: 0;
}
.nav-links a {
  color: var(--navy);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--hover);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--midnight);
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(7, 17, 31, .16);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.nav-cta:hover {
  background: var(--teal);
  color: var(--navy) !important;
  box-shadow: 0 16px 32px rgba(79, 183, 176, .28);
  transform: translateY(-2px);
}
.button:hover {
  transform: translateY(-2px);
}
.nav-cta::after { display: none; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); }

.hero {
  max-width: 1220px;
  min-height: calc(100vh - 124px);
  margin: 0 auto;
  padding: 58px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: 56px;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.05;
  color: var(--navy);
}
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
}
#hero-title {
  max-width: 720px;
  font-size: clamp(40px, 5.7vw, 72px);
  line-height: 1.02;
}
h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 20px; }
h3 { font-size: 24px; line-height: 1.18; color: var(--navy); }
.hero-copy { max-width: 680px; color: var(--slate); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button.primary { background: var(--teal); color: var(--navy); box-shadow: 0 16px 30px rgba(79, 183, 176, .28); }
.button.secondary { border-color: rgba(17, 31, 61, .32); color: var(--navy); background: rgba(255, 255, 255, .5); }

.circle-stage {
  position: relative;
  aspect-ratio: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.circle-stage::before,
.circle-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}
.circle-stage::before {
  width: 72%;
  height: 1px;
  left: 14%;
  top: 18%;
  background: linear-gradient(90deg, transparent, rgba(79, 183, 176, .5), transparent);
  box-shadow:
    0 74px 0 rgba(79, 183, 176, .18),
    0 148px 0 rgba(79, 183, 176, .09),
    0 222px 0 rgba(79, 183, 176, .12);
  transform: rotate(-18deg);
  animation: altitudeLines 7s ease-in-out infinite;
}
.circle-stage::after {
  width: 46%;
  height: 46%;
  left: 27%;
  bottom: 6%;
  border: 1px solid rgba(79, 183, 176, .22);
  border-top-color: rgba(79, 183, 176, .24);
  transform: perspective(420px) rotateX(64deg);
}
.circle-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.98) 0 31%, rgba(191,232,226,.52) 32% 42%, transparent 43%),
    conic-gradient(from 145deg, var(--gold), var(--aqua), #c9d8ee, var(--gold));
  box-shadow: var(--shadow);
  opacity: .92;
  animation: circleBreath 7s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(17, 31, 61, .18);
}
.orbit-one { inset: 14%; animation: spin 34s linear infinite; }
.orbit-two { inset: 25%; border-style: dashed; animation: spinReverse 48s linear infinite; }
.orbit-one::after, .orbit-two::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(79, 183, 176, .16);
}
.center-mark {
  position: relative;
  z-index: 3;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 22px 50px rgba(7, 17, 31, .16);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  animation: centerPulse 5.5s ease-in-out infinite;
}
.center-mark img { width: 104px; mix-blend-mode: multiply; }
.center-mark strong { display: block; color: var(--navy); font-size: 16px; line-height: 1.1; }
.center-mark span { color: var(--teal); font-weight: 800; font-size: 13px; }
.circle-word {
  position: absolute;
  z-index: 4;
  width: 190px;
  color: var(--navy);
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
  animation: wordFloat 5.8s ease-in-out infinite;
}
.word-strategy { animation-delay: .55s; }
.word-culture { animation-delay: 1.1s; }
.word-growth { animation-delay: 1.65s; }
.circle-word::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 31, 61, .42));
}
.circle-word b {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
}
.circle-word span {
  display: block;
  color: var(--slate);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.word-leadership {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.word-leadership::before {
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%) rotate(90deg);
}
.word-strategy {
  right: 1%;
  top: 43%;
  text-align: left;
}
.word-strategy::before {
  right: calc(100% + 10px);
  background: linear-gradient(90deg, rgba(17, 31, 61, .42), transparent);
}
.word-culture {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.word-culture::before {
  left: 50%;
  top: -34px;
  transform: translateX(-50%) rotate(90deg);
}
.word-growth {
  left: 1%;
  top: 43%;
  text-align: right;
}
.word-growth::before {
  left: calc(100% + 10px);
}

.statement {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 72px;
  position: relative;
}
.statement::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 26px;
  width: 210px;
  height: 78px;
  border-top: 1px solid rgba(79, 183, 176, .18);
  border-bottom: 1px solid rgba(79, 183, 176, .25);
  transform: skewX(-26deg);
  pointer-events: none;
}
.statement p {
  margin: 0;
  padding: 34px;
  border-left: 6px solid var(--teal);
  background: rgba(255,255,255,.72);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 17, 31, .08);
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
  font-weight: 800;
}
.elevation-path {
  max-width: 1220px;
  margin: -34px auto 0;
  padding: 0 24px 74px;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: center;
  position: relative;
}
.elevation-path::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 183, 176, .5), rgba(79, 183, 176, .32), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}
.path-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(79, 183, 176, .32), transparent 38%),
    linear-gradient(135deg, var(--navy), var(--midnight));
  box-shadow: 0 24px 62px rgba(7, 17, 31, .14);
}
.path-copy .section-kicker {
  color: var(--aqua);
}
.path-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 44px);
}
.path-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.path-steps article {
  position: relative;
  min-height: 210px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(17, 31, 61, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .07);
  transform: translateY(var(--lift, 0));
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.path-steps article:nth-child(1) { --lift: 34px; }
.path-steps article:nth-child(2) { --lift: 14px; }
.path-steps article:nth-child(3) { --lift: -8px; }
.path-steps article:nth-child(4) { --lift: -32px; }
.path-steps article::before {
  content: "";
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 183, 176, .9), rgba(79, 183, 176, .72));
  box-shadow: 0 0 0 9px rgba(79, 183, 176, .12);
}
.path-steps article::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 16px;
  width: 92px;
  height: 150px;
  border-right: 1px solid rgba(79, 183, 176, .32);
  border-top: 1px solid rgba(79, 183, 176, .16);
  transform: skewY(-22deg);
}
.path-steps article:hover {
  transform: translateY(calc(var(--lift, 0) - 8px));
  border-color: rgba(79, 183, 176, .4);
  box-shadow: 0 28px 64px rgba(7, 17, 31, .12);
}
.path-steps span {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.path-steps strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}
.trust-strip {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 84px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 36px rgba(7, 17, 31, .07);
}
.trust-strip strong {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  margin-bottom: 8px;
}
.trust-strip span {
  color: var(--slate);
  font-weight: 700;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

section { padding: 88px 24px; }
main {
  position: relative;
  overflow: hidden;
}
main::before,
main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
main::before {
  top: 760px;
  right: -150px;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  border-radius: 50%;
  border: 1px solid rgba(79, 183, 176, .18);
  background:
    repeating-linear-gradient(132deg, rgba(79, 183, 176, .12) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 38% 38%, rgba(79, 183, 176, .16), transparent 58%);
  transform: rotate(-12deg);
}
main::after {
  left: -170px;
  top: 1680px;
  width: min(620px, 52vw);
  height: 220px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(79, 183, 176, .08), rgba(79, 183, 176, .13), transparent);
  transform: rotate(-18deg);
}
.intro, .services, .method, .consultation, .contact, .photo-slider { max-width: 1220px; margin: 0 auto; }
.split, .section-heading, .consultation, .contact, .method, .photo-slider {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.split p, .section-heading p, .consultation p, .contact p, .method-copy p, .slider-copy p { color: var(--slate); font-size: 18px; }
.photo-slider {
  align-items: center;
  padding-top: 34px;
  position: relative;
}
.photo-slider::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 18px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(79, 183, 176, .22);
  background: radial-gradient(circle at center, transparent 0 48%, rgba(79, 183, 176, .09) 49% 50%, transparent 51%);
  pointer-events: none;
}
.slider-copy h2 { margin-bottom: 18px; }
.slider-shell {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 10px;
  background: var(--midnight);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.slider-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 82px rgba(7, 17, 31, .2);
}
.slides, .slide {
  position: absolute;
  inset: 0;
}
.slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .7s ease, transform 1.2s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 17, 31, .86) 100%);
}
.slide figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 30px;
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
  font-family: "Libre Baskerville", Georgia, serif;
}
.slider-controls {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.slider-button, .slider-dot {
  pointer-events: auto;
  border: 0;
  cursor: pointer;
}
.slider-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
}
.slider-button:hover {
  transform: scale(1.08);
  background: var(--white);
}
.slider-dots {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}
.slider-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  transition: transform .24s ease;
}
.slider-dot::after {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  transition: inset .24s ease, background .24s ease;
}
.slider-dot.active {
  transform: scaleX(1.08);
}
.slider-dot.active::after {
  inset: 17px 8px;
  background: var(--teal);
}
.services {
  background: var(--midnight);
  max-width: none;
  color: var(--white);
  padding-left: max(24px, calc((100vw - 1220px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1220px) / 2 + 24px));
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(79, 183, 176, .1) 34% 35%, transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(79, 183, 176, .10), transparent 30%);
  pointer-events: none;
}
.services h2, .services h3 { color: var(--white); }
.services > * {
  position: relative;
  z-index: 1;
}
.services .section-heading p, .service-card p { color: #cfd8e4; }
.services .section-heading > p {
  align-self: end;
  margin-top: clamp(34px, 4vw, 66px);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.service-card {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255,255,255,.07);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(17, 31, 61, .48);
  background: rgba(255,255,255,.1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .2);
}
.featured-card { background: linear-gradient(180deg, rgba(79,183,176,.2), rgba(255,255,255,.08)); }
.service-card a { margin-top: auto; color: var(--teal); font-weight: 900; }
.method {
  align-items: center;
  position: relative;
}
.method::before {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 42px;
  width: 260px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 183, 176, .12), rgba(79, 183, 176, .08), transparent);
  transform: rotate(-16deg);
  pointer-events: none;
}
.method-ring {
  position: relative;
  min-height: 540px;
  aspect-ratio: 1;
  isolation: isolate;
  border-radius: 50%;
  border: 1px solid rgba(17, 31, 61, .14);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.98) 0 24%, rgba(79, 183, 176, .16) 25% 26%, transparent 27%),
    radial-gradient(circle at 50% 50%, transparent 0 47%, rgba(79, 183, 176, .18) 48% 49%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.68), rgba(79, 183, 176, .07) 58%, rgba(17, 31, 61, .08));
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, .78),
    0 30px 80px rgba(7, 17, 31, .12);
  animation: methodGlow 8s ease-in-out infinite;
  overflow: hidden;
}
.method-ring .method-core::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 18px);
  width: 1px;
  height: 92px;
  background: linear-gradient(0deg, rgba(79, 183, 176, .72), transparent);
  box-shadow:
    -28px 22px 0 rgba(79, 183, 176, .14),
    28px 38px 0 rgba(79, 183, 176, .18);
  animation: liftBeam 3.8s ease-in-out infinite;
}
.method-ring::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(79, 183, 176, .5);
  animation: methodRotate 26s linear infinite;
}
.method-ring::after {
  content: "";
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  border: 1px solid rgba(17, 31, 61, .12);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(17, 31, 61, .12) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(17, 31, 61, .12) 50%, transparent 50.2%);
  pointer-events: none;
  z-index: 0;
}
.method-orbit {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(79, 183, 176, .68);
  border-right-color: rgba(79, 183, 176, .32);
  filter: drop-shadow(0 0 18px rgba(79, 183, 176, .18));
  pointer-events: none;
  z-index: 1;
}
.orbit-a {
  transform: rotate(-18deg);
  animation: methodRotate 18s linear infinite;
}
.orbit-b {
  inset: 30%;
  border-top-color: rgba(79, 183, 176, .36);
  border-left-color: rgba(79, 183, 176, .5);
  animation: methodRotateReverse 22s linear infinite;
}
.method-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  text-align: center;
  z-index: 3;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 22%, rgba(79, 183, 176, .35), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--midnight));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 26px 54px rgba(7, 17, 31, .2),
    inset 0 0 26px rgba(255, 255, 255, .08);
}
.method-core span {
  color: var(--aqua);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}
.method-core strong {
  max-width: 120px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.method-step {
  position: absolute;
  width: 190px;
  padding: 18px 18px 16px;
  z-index: 4;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(17, 31, 61, .1);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(7, 17, 31, .08);
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.method-step::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(79, 183, 176, .16);
}
.method-step:hover {
  border-color: rgba(79, 183, 176, .44);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 26px 56px rgba(7, 17, 31, .13);
}
.method-step b {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1;
  margin-bottom: 8px;
}
.method-step span {
  display: block;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.step-one {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: methodStepTop 7s ease-in-out infinite;
}
.step-two {
  top: 40%;
  right: -2%;
  text-align: left;
  animation: methodStepRight 8s ease-in-out infinite;
  animation-delay: -1.4s;
}
.step-three {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: methodStepBottom 7.5s ease-in-out infinite;
  animation-delay: -2.2s;
}
.step-four {
  top: 40%;
  left: -2%;
  text-align: right;
  animation: methodStepLeft 8.4s ease-in-out infinite;
  animation-delay: -3.1s;
}
.step-one::before { left: 50%; bottom: -24px; transform: translateX(-50%); }
.step-two::before { left: -23px; top: 50%; transform: translateY(-50%); }
.step-three::before { left: 50%; top: -24px; transform: translateX(-50%); }
.step-four::before { right: -23px; top: 50%; transform: translateY(-50%); }
.consultation {
  background: linear-gradient(135deg, var(--navy), var(--midnight));
  color: var(--white);
  border-radius: 10px;
  padding: 48px;
  margin-top: 56px;
  margin-bottom: 56px;
  box-shadow: var(--shadow);
}
.consultation h2, .consultation .section-kicker { color: var(--white); }
.consultation p { color: #d8dee9; }
.contact-form {
  background: rgba(255,255,255,.96);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  gap: 14px;
}
label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(79, 183, 176, .18);
  transform: translateY(-1px);
}
textarea { resize: vertical; }
select {
  appearance: auto;
  color: var(--ink);
}
.contact {
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.contact-copy h2 { margin-bottom: 16px; }
.contact-copy p:last-child {
  max-width: 520px;
  margin-bottom: 0;
}
.contact-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .08);
}
.contact-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .22s ease, transform .22s ease;
}
.contact-item:hover {
  background: rgba(17, 31, 61, .07);
  transform: translateX(4px);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-item strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.contact-list a:hover strong { color: var(--hover); }
.site-footer {
  margin-top: 76px;
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 183, 176, .22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--midnight));
}
.footer-cta {
  max-width: 1220px;
  margin: 0 auto;
  padding: 58px 24px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer-cta .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -10px;
  color: var(--aqua);
}
.footer-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
}
.footer-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(160px, 1fr));
  gap: 34px;
}
.footer-main.simplified-footer {
  grid-template-columns: minmax(300px, 1.08fr) minmax(240px, .86fr) minmax(260px, 1fr);
  align-items: start;
}
.simplified-footer .footer-mailing {
  order: 3;
}
.simplified-footer .footer-contact {
  order: 2;
}
.simplified-footer .footer-brand {
  order: 1;
}
.footer-brand,
.footer-contact,
.footer-mailing {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    radial-gradient(circle at 18% 10%, rgba(79, 183, 176, .16), transparent 38%);
}
.footer-brand::before,
.footer-contact::before,
.footer-mailing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--teal), rgba(79, 183, 176, .42));
}
.footer-contact {
  background:
    linear-gradient(145deg, rgba(79, 183, 176, .12), rgba(255, 255, 255, .025)),
    radial-gradient(circle at 100% 0%, rgba(79, 183, 176, .09), transparent 42%);
}
.footer-mailing {
  background:
    linear-gradient(145deg, rgba(79, 183, 176, .08), rgba(255, 255, 255, .026)),
    radial-gradient(circle at 0% 0%, rgba(79, 183, 176, .18), transparent 42%);
}
.footer-brand img {
  width: 132px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1) sepia(.14) saturate(.6) brightness(1.08) drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
}
.footer-brand p,
.footer-contact p,
.footer-mailing p {
  margin: 0;
  max-width: 380px;
  line-height: 1.7;
}
.footer-links,
.footer-contact,
.footer-mailing {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-links h3,
.footer-contact h3,
.footer-mailing h3 {
  margin: 0 0 6px;
  color: var(--aqua);
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-signup {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-signup input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.footer-signup input::placeholder {
  color: rgba(255,255,255,.58);
}
.footer-signup button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: var(--teal);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.footer-signup button:hover {
  transform: translateY(-2px);
  background: var(--white);
}
.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: rgba(255, 255, 255, .84);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--aqua);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(79, 183, 176, .36);
  border-radius: 50%;
  color: var(--aqua);
  background: rgba(255,255,255,.06);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-social a:hover {
  color: var(--navy);
  background: var(--aqua);
}
.footer-bottom {
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px 24px 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}
.footer-bottom p { margin: 0; }
.conversion-band {
  max-width: 1220px;
  margin: 58px auto 0;
  padding: 42px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--midnight));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 36px;
}
.conversion-band h2 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
}
.conversion-band .section-kicker {
  margin: 0 0 -4px;
  color: var(--aqua);
}
.conversion-band .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  margin-top: 0;
  white-space: nowrap;
}
.services-page-cta {
  text-align: center;
}
.services-page-cta h2 {
  margin-left: auto;
  margin-right: auto;
}
.services-page-cta .button {
  display: inline-flex;
  justify-content: center;
}
.page-main:has(.services-page-cta) {
  padding-bottom: 34px;
}
.page-main:has(.services-page-cta) + .site-footer {
  margin-top: 38px;
}

.page-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 92px;
}
.page-hero {
  padding: 48px 0 56px;
  max-width: 940px;
}
.page-hero-visual {
  max-width: none;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .8fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 40px;
  padding: 52px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, .96), rgba(17, 31, 61, .9)),
    radial-gradient(circle at 88% 14%, rgba(79, 183, 176, .26), transparent 38%);
  color: var(--white);
  box-shadow: var(--shadow);
}
.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(79, 183, 176, .14), transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.36), transparent 72%);
}
.page-hero-visual .section-kicker,
.page-hero-visual h1 {
  color: var(--white);
  grid-column: 1;
}
.page-hero-visual h1 {
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.04;
}
.page-intro p {
  margin: 0;
}
.page-hero-visual .page-intro p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.page-hero-visual .page-intro,
.page-hero-visual .page-quote {
  grid-column: 1;
}
.page-hero-visual .page-quote {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: none;
}
.page-hero-media {
  grid-column: 2;
  grid-row: 1 / span 4;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 17, 31, .36));
  pointer-events: none;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.page-hero-visual {
  min-height: 640px;
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 740px);
  align-content: center;
  justify-content: start;
  gap: 0;
  padding: 86px max(48px, calc((100vw - 1220px) / 2 + 24px));
  border-radius: 0;
  background: var(--midnight);
}
.page-hero-visual::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(79, 183, 176, .10), transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.28), transparent 72%);
}
.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .98) 0%, rgba(7, 17, 31, .88) 36%, rgba(7, 17, 31, .36) 68%, rgba(7, 17, 31, .12) 100%),
    radial-gradient(circle at 18% 20%, rgba(79, 183, 176, .25), transparent 38%);
}
.page-hero-visual > :not(.page-hero-media) {
  position: relative;
  z-index: 1;
  max-width: 740px;
}
.page-hero-visual .section-kicker,
.page-hero-visual h1,
.page-hero-visual .page-intro,
.page-hero-visual .page-quote {
  grid-column: auto;
}
.page-hero-visual .section-kicker {
  margin-bottom: 18px;
  color: var(--teal);
}
.page-hero-visual h1 {
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.page-hero-visual .page-intro {
  max-width: 650px;
}
.page-hero-visual .page-intro p {
  color: rgba(255,255,255,.82);
  font-size: 19px;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  grid-column: auto;
  grid-row: auto;
  min-height: 100%;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}
.page-hero-media::after {
  display: none;
}
.page-hero-media img {
  min-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-only-hero {
  min-height: 620px;
  padding: 0;
  align-content: stretch;
}
.image-only-hero::before,
.image-only-hero::after {
  display: none;
}
.image-only-hero .page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.image-only-hero::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .84) 0%, rgba(7, 17, 31, .54) 38%, rgba(7, 17, 31, .1) 72%),
    linear-gradient(180deg, rgba(7, 17, 31, .12), rgba(7, 17, 31, .36));
  pointer-events: none;
}
.hero-welcome-title {
  position: relative;
  z-index: 2;
  max-width: 760px;
  align-self: end;
  padding-bottom: 70px;
  color: var(--white);
}
.hero-welcome-title span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-welcome-title h2 {
  margin: 0;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .98;
  text-wrap: balance;
}
.page-body-intro {
  max-width: 980px;
  padding: 74px 0 36px;
}
.page-body-intro h1 {
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.04;
  margin-bottom: 24px;
}
.page-body-intro .page-intro {
  max-width: 840px;
}
.page-body-intro .page-intro p {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}
.about-intro {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(340px, .62fr) minmax(0, 1.18fr);
  gap: clamp(42px, 6.5vw, 88px);
  align-items: center;
  padding-top: 58px;
  padding-bottom: 42px;
  position: relative;
}
.about-intro::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 22px;
  width: 220px;
  height: 150px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(79, 183, 176, .18) 36% 37%, transparent 37%),
    linear-gradient(135deg, transparent 0 48%, rgba(79, 183, 176, .09) 48% 49%, transparent 49%),
    linear-gradient(135deg, transparent 0 60%, rgba(79, 183, 176, .12) 60% 61%, transparent 61%);
  opacity: .9;
}
.about-intro-photo {
  margin: 0;
  position: relative;
  overflow: visible;
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(7, 17, 31, .12);
  background: transparent;
}
.about-intro-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(17, 31, 61, .18));
  pointer-events: none;
}
.about-intro-photo img {
  width: 100%;
  max-height: min(760px, 82vh);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 62px rgba(7, 17, 31, .15);
}
.about-intro-copy {
  max-width: 760px;
}
.about-intro .section-kicker {
  margin-bottom: 14px;
}
.about-intro h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}
.about-name-heading {
  display: grid;
  gap: 4px;
}
.about-name-heading span {
  display: block;
  text-wrap: balance;
}
.about-name-heading span:last-child {
  color: var(--teal);
  font-size: .92em;
}
.about-intro .page-intro {
  max-width: 740px;
  margin-top: 24px;
  padding: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.about-intro .page-intro p {
  font-size: 18px;
  line-height: 1.68;
}
.about-portrait img {
  object-position: 68% center;
}
.page-hero.page-hero-visual.image-only-hero:has(.about-portrait)::before {
  background:
    linear-gradient(90deg, rgba(17, 31, 61, .94) 0%, rgba(17, 31, 61, .82) 30%, rgba(17, 31, 61, .5) 58%, rgba(17, 31, 61, .12) 84%),
    linear-gradient(180deg, rgba(17, 31, 61, .04), rgba(17, 31, 61, .28));
}
.contact-portrait img {
  object-position: 66% center;
}
.strategy-abstract-hero img {
  object-position: center center;
}
.hero-image-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroCrossfade 15s infinite;
}
.hero-image-slider img:nth-child(1) { animation-delay: 0s; }
.hero-image-slider img:nth-child(2) { animation-delay: 5s; }
.hero-image-slider img:nth-child(3) { animation-delay: 10s; }
.page-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
}
.page-intro {
  display: grid;
  gap: 12px;
  max-width: 790px;
}
.page-intro p {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}
.service-momentum {
  width: 100%;
  margin: 84px 0 0;
  padding: clamp(36px, 5vw, 58px) 0;
  overflow: hidden;
  border-block: 1px solid rgba(79, 183, 176, .16);
  background:
    radial-gradient(circle at 12% 0%, rgba(79, 183, 176, .13), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(17, 31, 61, .07), transparent 34%),
    linear-gradient(180deg, rgba(238, 246, 247, .58), rgba(247, 250, 251, .74));
}
.service-momentum-copy {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.service-momentum-copy .section-kicker {
  margin: 0;
}
.service-momentum-copy h2 {
  max-width: 640px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1;
  text-align: right;
}

.service-momentum-copy h2 span {
  display: block;
}
.momentum-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.momentum-slider::before,
.momentum-slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(14vw, 180px);
  pointer-events: none;
}
.momentum-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(238, 246, 247, .96), rgba(238, 246, 247, .46), transparent);
}
.momentum-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 250, 251, .96), rgba(247, 250, 251, .48), transparent);
}
.momentum-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: momentumSlide 110s linear infinite;
  will-change: transform;
}
.momentum-slider:hover .momentum-track {
  animation-play-state: paused;
}
.momentum-track img {
  width: clamp(250px, 31vw, 430px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 22px 52px rgba(7, 17, 31, .16);
  filter: saturate(.9) contrast(.96) brightness(1.02);
}
.page-quote {
  margin: 34px 0 0;
  padding: 28px 32px;
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  background: rgba(255,255,255,.75);
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.18;
  box-shadow: 0 18px 44px rgba(7, 17, 31, .08);
}
.page-section {
  padding: 52px 0;
  max-width: 860px;
  border-top: 1px solid var(--line);
}
.page-section h2 {
  font-size: clamp(26px, 2.5vw, 36px);
}
.page-section p,
.page-section li {
  color: var(--slate);
  font-size: 18px;
}
.services-intro-feature {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  padding-top: 86px;
}
.services-intro-photo {
  position: relative;
  margin: 0;
}
.services-intro-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(79, 183, 176, .38);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 183, 176, .12), rgba(17, 31, 61, .08));
  z-index: -1;
}
.services-intro-photo img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(7, 17, 31, .18);
}
.services-intro-copy {
  max-width: 620px;
}
.services-intro-copy h1 {
  margin-bottom: 22px;
}
.services-intro-copy .page-intro {
  max-width: 560px;
}
@media (max-width: 980px) {
  .services-intro-feature {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 66px;
  }
  .services-intro-copy {
    max-width: 760px;
  }
}
@media (max-width: 620px) {
  .services-intro-feature {
    padding-top: 52px;
  }
  .services-intro-photo::before {
    inset: 12px -10px -12px 10px;
  }
  .services-intro-photo img {
    border-radius: 10px;
  }
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 42px;
}
.page-card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 31, 61, .48);
  box-shadow: 0 24px 58px rgba(7, 17, 31, .12);
}
.page-card h2 {
  font-size: clamp(24px, 2.25vw, 32px);
  line-height: 1.12;
}
.page-card p,
.page-card li {
  color: var(--slate);
}
.page-card ul,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
}
.page-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(79, 183, 176, .13);
}
.about-signature {
  max-width: 1220px;
  margin: 34px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 22px;
  align-items: stretch;
}
.about-quote-panel,
.about-profile-panel {
  border: 1px solid rgba(17, 31, 61, .12);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(7, 17, 31, .08);
}
.about-quote-panel {
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(79, 183, 176, .28), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--midnight));
}
.about-quote-panel .section-kicker {
  color: var(--aqua);
}
.about-quote-panel blockquote {
  margin: 0;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.06;
}
.about-profile-panel {
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, .82);
}
.about-profile-panel h2 {
  margin-bottom: 18px;
  color: var(--navy);
}
.about-profile-panel p {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--teal);
}
.about-authority {
  max-width: 1220px;
  padding: 20px 0 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-authority article {
  padding: 26px;
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  border: 1px solid rgba(17, 31, 61, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 48px rgba(7, 17, 31, .06);
}
.about-authority span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-authority strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}
.about-belief {
  max-width: 1220px;
  margin: 0 0 24px;
  padding: clamp(34px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 183, 176, .14), rgba(255, 255, 255, .72));
  border: 1px solid rgba(79, 183, 176, .2);
  position: relative;
  overflow: hidden;
}
.about-belief::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(17, 31, 61, .12);
  background: radial-gradient(circle at center, transparent 0 44%, rgba(79, 183, 176, .12) 45% 46%, transparent 47%);
  pointer-events: none;
}
.about-belief > div {
  display: grid;
  gap: 12px;
}
.about-belief .section-kicker {
  margin-bottom: 0;
}
.about-belief h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  max-width: 620px;
}
.about-belief p:last-child {
  margin: 0;
  max-width: 560px;
  padding: 18px 0 18px 28px;
  border-left: 3px solid rgba(79, 183, 176, .45);
  align-self: center;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.68;
}
.about-pillars {
  max-width: 1220px;
  padding: 18px 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.about-pillars article {
  position: relative;
  min-height: 265px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 31, 61, .12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .07);
}
.about-pillars article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(79, 183, 176, .42));
}
.about-pillars .pillar-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(79, 183, 176, .22), rgba(79, 183, 176, .12));
  border: 1px solid rgba(79, 183, 176, .28);
  box-shadow: 0 14px 30px rgba(79, 183, 176, .22);
}
.about-pillars .pillar-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-pillars h3 {
  color: var(--navy);
  font-size: 22px;
}
.about-pillars p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.65;
}
.framework-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}
.framework-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.74);
}
.framework-list span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--midnight);
  background: var(--teal);
  font-weight: 900;
}
.framework-list h2 {
  font-size: 28px;
  margin-bottom: 6px;
}
.framework-list p {
  color: var(--slate);
  margin-bottom: 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 10px;
  background: var(--midnight);
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 23px;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.page-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(38px, 6vw, 78px) 0;
}
.contact-feature-copy h2 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 5.7vw, 78px);
  line-height: 1;
}
.contact-feature-copy p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
  font-weight: 650;
}
.contact-feature-list {
  overflow: hidden;
  border: 1px solid rgba(17, 31, 61, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 28px 70px rgba(7, 17, 31, .1);
}
.page-contact-panel .contact-item {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 38px;
}
.page-contact-panel .contact-item:hover {
  transform: none;
  background: rgba(79, 183, 176, .07);
}
.page-contact-panel .contact-item span {
  font-size: 14px;
}
.page-contact-panel .contact-item strong {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.12;
}
.consultation-intake {
  margin: 34px 0 42px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.form-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}
.form-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}
.form-heading p:not(.section-kicker) {
  color: var(--slate);
  font-size: 18px;
}
.consultation-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 24px;
}
.consultation-form label {
  align-content: start;
  color: var(--navy);
  font-size: 15px;
}
.consultation-form input,
.consultation-form textarea,
.consultation-form select {
  min-height: 50px;
  border-color: rgba(17, 31, 61, .16);
  background: rgba(255,255,255,.96);
}
.consultation-form textarea {
  min-height: 118px;
}
.form-wide {
  grid-column: 1 / -1;
}
.form-submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 280px;
  margin-top: 6px;
}
.journal-hero {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .75fr);
  gap: 58px;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
.journal-cover-stack {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.journal-cover {
  width: min(330px, 72vw);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 17, 31, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cover-back {
  position: absolute;
  right: 0;
  transform: rotate(5deg) translateY(-22px);
}
.cover-front {
  position: absolute;
  left: 0;
  transform: rotate(-4deg) translateY(34px);
}
.journal-cover-stack:hover .cover-back {
  transform: rotate(7deg) translate(8px, -34px);
}
.journal-cover-stack:hover .cover-front {
  transform: rotate(-6deg) translate(-8px, 44px);
}
.journal-product-grid {
  display: grid;
  gap: 22px;
  padding: 18px 0 56px;
}
.journal-product {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.journal-product:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 31, 61, .45);
  box-shadow: 0 24px 58px rgba(7, 17, 31, .13);
}
.journal-product img {
  width: 220px;
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(7, 17, 31, .18);
}
.journal-product h2 {
  font-size: clamp(28px, 3vw, 42px);
}
.journal-product p:not(.section-kicker) {
  color: var(--slate);
  font-size: 18px;
}
.journal-product a {
  color: var(--navy);
  font-weight: 900;
}
.journal-release-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 6px 0 16px;
  padding: 8px 14px;
  border: 1px solid rgba(79, 183, 176, .42);
  border-radius: 999px;
  background: rgba(79, 183, 176, .12);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.journal-coming-soon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 8px 0 0;
  padding: 9px 15px;
  border: 1px solid rgba(17, 31, 61, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(17, 31, 61, .08);
}
.journal-notify-form {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 4px;
}
.journal-notify-form label {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}
.journal-notify-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.journal-notify-row input[type="email"] {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(17, 31, 61, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--navy);
  font: inherit;
  padding: 0 18px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .58);
}
.journal-notify-row input[type="email"]:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(79, 183, 176, .18);
}
.journal-notify-row button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #193359);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 22px;
  box-shadow: 0 14px 28px rgba(17, 31, 61, .18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.journal-notify-row button:hover,
.journal-notify-row button:focus-visible {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 16px 32px rgba(79, 183, 176, .28);
  transform: translateY(-2px);
}
@media (max-width: 620px) {
  .journal-notify-row {
    grid-template-columns: 1fr;
  }
  .journal-notify-row button {
    width: 100%;
  }
}
.journal-benefits {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 58px;
}
.compact-heading {
  display: block;
  margin-bottom: 24px;
}
.compact-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.benefit-icon-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.benefit-icon-row article {
  min-height: 190px;
  padding: 24px 18px;
  display: grid;
  align-content: start;
  gap: 22px;
  border: 1px solid rgba(17, 31, 61, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .07);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.benefit-icon-row article:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 183, 176, .38);
  box-shadow: 0 26px 58px rgba(7, 17, 31, .12);
}
.benefit-icon-row span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(79, 183, 176, .22), rgba(79, 183, 176, .12));
  border: 1px solid rgba(79, 183, 176, .26);
}
.benefit-icon-row svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-icon-row strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.28;
}
.nav-links a[aria-current="page"] {
  color: var(--teal);
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes circleBreath {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.025); filter: saturate(1.12); }
}
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 22px 50px rgba(7, 17, 31, .16); }
  50% { box-shadow: 0 28px 66px rgba(79, 183, 176, .24); }
}
@keyframes wordFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}
@keyframes altitudeLines {
  0%, 100% { opacity: .58; transform: rotate(-18deg) translateY(0); }
  50% { opacity: .95; transform: rotate(-18deg) translateY(-12px); }
}
@keyframes methodGlow {
  0%, 100% {
    box-shadow:
      inset 0 0 80px rgba(255, 255, 255, .78),
      0 30px 80px rgba(7, 17, 31, .12);
  }
  50% {
    box-shadow:
      inset 0 0 96px rgba(79, 183, 176, .18),
      0 34px 88px rgba(7, 17, 31, .16);
  }
}
@keyframes methodRotate {
  to { transform: rotate(342deg); }
}
@keyframes methodRotateReverse {
  to { transform: rotate(-360deg); }
}
@keyframes methodStepTop {
  0%, 100% { transform: translateX(-50%) translate(0, 0); }
  33% { transform: translateX(-50%) translate(18px, 10px); }
  66% { transform: translateX(-50%) translate(-14px, 18px); }
}
@keyframes methodStepRight {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-18px, -14px); }
  66% { transform: translate(-8px, 18px); }
}
@keyframes methodStepBottom {
  0%, 100% { transform: translateX(-50%) translate(0, 0); }
  33% { transform: translateX(-50%) translate(-18px, -12px); }
  66% { transform: translateX(-50%) translate(16px, -20px); }
}
@keyframes methodStepLeft {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(16px, 16px); }
  66% { transform: translate(22px, -14px); }
}
@keyframes liftBeam {
  0%, 100% { opacity: .34; transform: translateX(-50%) translateY(8px) scaleY(.82); }
  50% { opacity: .78; transform: translateX(-50%) translateY(-8px) scaleY(1.08); }
}
@keyframes heroCrossfade {
  0%, 30% { opacity: 1; transform: scale(1); }
  36%, 94% { opacity: 0; transform: scale(1.045); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes momentumSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .menu-toggle { display: inline-flex; }
  .nav { min-height: 72px; }
  .brand img { width: 122px; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 112px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .hero, .split, .section-heading, .consultation, .contact, .method, .photo-slider { grid-template-columns: 1fr; }
  .services .section-heading > p {
    align-self: start;
    margin-top: 8px;
  }
  .hero { padding-top: 42px; min-height: auto; }
  .circle-stage { min-height: 480px; max-width: 560px; width: 100%; margin: 0 auto; }
  .elevation-path {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }
  .path-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .path-steps article {
    min-height: 190px;
    transform: none;
  }
  .path-steps article:hover {
    transform: translateY(-6px);
  }
  main::before,
  main::after,
  .statement::after,
  .photo-slider::before,
  .method::before {
    opacity: .45;
  }
  .service-grid { grid-template-columns: 1fr; }
  .page-card-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .page-hero-visual {
    grid-template-columns: 1fr;
    padding: 38px;
  }
  .page-hero-visual .section-kicker,
  .page-hero-visual h1,
  .page-hero-visual .page-intro,
  .page-hero-visual .page-quote,
  .page-hero-media {
    grid-column: 1;
    grid-row: auto;
  }
  .page-hero-media {
    min-height: 360px;
  }
  .consultation-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-momentum-copy {
    align-items: start;
    flex-direction: column;
  }
  .service-momentum-copy h2 {
    text-align: left;
  }
  .about-signature,
  .about-belief {
    grid-template-columns: 1fr;
  }
  .about-belief p:last-child {
    max-width: 100%;
    padding: 0;
    border-left: 0;
  }
  .about-authority {
    grid-template-columns: 1fr;
  }
  .about-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-hero-media img {
    min-height: 360px;
  }
  .journal-hero { grid-template-columns: 1fr; }
  .journal-cover-stack { min-height: 560px; max-width: 520px; width: 100%; margin: 0 auto; }
  .benefit-icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card { min-height: auto; }
  .method-ring { max-width: 560px; width: 100%; margin: 0 auto; }
  .slider-shell { min-height: 440px; }
}

@media (max-width: 980px) {
  .trust-strip { grid-template-columns: 1fr; }
  .footer-main.simplified-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .top-strip {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 18px;
  }
  .top-contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .top-social { gap: 10px; }
  h1 { font-size: 42px; }
  #hero-title {
    font-size: 38px;
    line-height: 1.05;
  }
  section { padding: 64px 18px; }
  .hero, .statement, .trust-strip { padding-left: 18px; padding-right: 18px; }
  main::before,
  main::after,
  .statement::after,
  .photo-slider::before,
  .method::before {
    opacity: .22;
  }
  .button { width: 100%; }
  .circle-stage { min-height: 620px; aspect-ratio: auto; }
  .circle-stage::before,
  .circle-stage::after {
    opacity: .7;
  }
  .circle-glow { inset: 18% 4%; }
  .orbit-one { inset: 22% 8%; }
  .orbit-two { inset: 31% 17%; }
  .center-mark { width: 170px; height: 170px; }
  .circle-word { width: min(42%, 150px); }
  .circle-word b { font-size: 24px; }
  .circle-word span { font-size: 10px; }
  .circle-word::before { width: 28px; }
  .word-leadership { top: 0; left: 50%; }
  .word-strategy { top: 36%; right: 2%; }
  .word-culture { bottom: 0; left: 50%; }
  .word-growth { top: 36%; left: 2%; }
  .statement p { padding: 24px; font-size: 24px; }
  .elevation-path {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 48px;
  }
  .elevation-path::before {
    display: none;
  }
  .path-copy {
    padding: 24px;
  }
  .path-steps {
    grid-template-columns: 1fr;
  }
  .path-steps article {
    min-height: auto;
    padding: 24px 22px;
  }
  .slider-shell { min-height: 380px; }
  .slide figcaption { left: 20px; right: 20px; bottom: 72px; }
  .slider-controls { left: 16px; right: 16px; }
  .contact-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }
  .page-contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0;
  }
  .page-contact-panel .contact-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 22px;
  }
  .contact-item strong { font-size: 18px; }
  .page-contact-panel .contact-item strong {
    font-size: 22px;
  }
  .site-footer {
    margin-top: 58px;
  }
  .footer-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 44px 20px 36px;
  }
  .footer-cta .button {
    width: 100%;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 38px 20px;
  }
  .footer-main.simplified-footer {
    grid-template-columns: 1fr;
  }
  .footer-brand p,
  .footer-contact p,
  .footer-mailing p {
    max-width: none;
  }
  .footer-signup {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    padding: 20px;
  }
  .page-main { padding: 46px 18px 72px; }
  .page-hero { padding-top: 28px; }
  .page-hero-visual {
    min-height: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 72px 20px;
    gap: 24px;
  }
  .page-hero-media {
    left: -20px;
    right: -20px;
  }
  .page-hero-media,
  .page-hero-media img {
    min-height: 270px;
  }
  .page-hero-visual .page-intro p {
    font-size: 17px;
  }
  .page-hero-visual h1 {
    font-size: 38px;
    line-height: 1.02;
  }
  .image-only-hero {
    min-height: 380px;
  }
  .hero-welcome-title {
    max-width: 92%;
    padding-bottom: 26px;
  }
  .hero-welcome-title span {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .hero-welcome-title h2 {
    font-size: 38px;
  }
  .page-body-intro {
    padding: 52px 0 26px;
  }
  .page-body-intro h1 {
    font-size: 36px;
  }
  .service-momentum {
    margin-bottom: 34px;
    padding: 28px 0;
  }
  .service-momentum-copy {
    width: calc(100% - 36px);
  }
  .momentum-track {
    gap: 12px;
    animation-duration: 34s;
  }
  .momentum-track img {
    width: min(78vw, 310px);
    border-radius: 8px;
  }
  .about-signature {
    margin-top: 18px;
  }
  .about-quote-panel,
  .about-profile-panel,
  .about-belief,
  .about-pillars article,
  .about-authority article {
    border-radius: 10px;
  }
  .about-authority,
  .about-pillars {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }
  .about-authority article,
  .about-pillars article {
    min-height: auto;
  }
  .page-hero-visual .page-quote {
    padding: 22px;
    font-size: 24px;
  }
  .page-card { min-height: auto; padding: 24px; }
  .journal-cover-stack { min-height: 500px; }
  .journal-cover { width: min(255px, 72vw); }
  .journal-product {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .journal-product-grid {
    width: calc(100% - 36px);
  }
  .journal-benefits {
    width: calc(100% - 36px);
    padding-bottom: 36px;
  }
  .benefit-icon-row {
    grid-template-columns: 1fr;
  }
  .benefit-icon-row article {
    min-height: auto;
  }
  .journal-product img {
    width: min(240px, 100%);
  }
  .framework-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }
  .method-ring {
    min-height: auto;
    aspect-ratio: auto;
    padding: 24px;
    border-radius: 12px;
    background:
      radial-gradient(circle at top right, rgba(79, 183, 176, .16), transparent 38%),
      rgba(255,255,255,.72);
  }
  .method-ring::before,
  .method-ring::after,
  .method-orbit {
    display: none;
  }
  .method-core {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 12px;
  }
  .method-core strong {
    max-width: none;
  }
  .method-step {
    position: relative;
    width: auto;
    transform: none;
    animation: none;
    margin-bottom: 14px;
    text-align: left;
    border-radius: 12px;
  }
  .method-step::before {
    left: auto;
    right: 18px;
    top: 22px;
    transform: none;
  }
  .method-step:hover,
  .step-one:hover,
  .step-three:hover {
    transform: translateY(-3px);
  }
  .consultation { padding: 32px 22px; }
  .consultation-intake {
    padding: 28px 18px;
  }
  .consultation-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-wide,
  .form-submit {
    grid-column: 1;
  }
  .form-submit {
    width: 100%;
    min-width: 0;
  }
  .conversion-band {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 36px;
    padding: 28px 22px;
  }
  .conversion-band .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    white-space: normal;
  }
  .footer { flex-direction: column; align-items: flex-start; }
}

/* Final inner-page hero system */
.page-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 0 92px;
  padding-top: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-main::before,
.page-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.page-main::before {
  width: min(520px, 45vw);
  height: min(520px, 45vw);
  right: -180px;
  top: 760px;
  border-radius: 50%;
  border: 1px solid rgba(79, 183, 176, .18);
  background:
    repeating-linear-gradient(132deg, rgba(79, 183, 176, .13) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 36% 36%, rgba(79, 183, 176, .14), transparent 56%);
  transform: rotate(-14deg);
}
.page-main::after {
  left: -160px;
  top: 1320px;
  width: min(620px, 54vw);
  height: 220px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(79, 183, 176, .08), rgba(79, 183, 176, .12), transparent);
  transform: rotate(-18deg);
  filter: blur(.2px);
}
.page-main > * {
  position: relative;
  z-index: 1;
}
.page-main .page-body-intro {
  width: min(980px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.page-main .page-body-intro.about-intro {
  width: min(1220px, calc(100% - 48px));
}
.page-main .about-intro,
.page-main .about-signature,
.page-main .about-authority,
.page-main .about-belief,
.page-main .about-pillars,
.page-main .page-card-grid,
.page-main .page-section,
.page-main .testimonial-grid,
.page-main .journal-hero,
.page-main .journal-product-grid,
.page-main .journal-benefits,
.page-main .framework-list,
.page-main .consultation-intake,
.page-main .page-contact-panel {
  width: min(1220px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.page-main .page-section {
  max-width: 900px;
}
.page-main .consultation-intake {
  max-width: 1220px;
}
.page-main .page-contact-panel {
  max-width: 1220px;
}
.page-hero.page-hero-visual.image-only-hero {
  width: 100vw;
  min-height: clamp(460px, 58vw, 680px);
  margin: 0 calc(50% - 50vw) 0;
  padding: 0 max(24px, calc((100vw - 1220px) / 2 + 24px));
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--midnight);
  box-shadow: none;
}
.page-hero.page-hero-visual.image-only-hero .page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.page-hero.page-hero-visual.image-only-hero .page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.page-hero.page-hero-visual.image-only-hero::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .88) 0%, rgba(7, 17, 31, .62) 43%, rgba(7, 17, 31, .22) 78%),
    linear-gradient(180deg, rgba(7, 17, 31, .12), rgba(7, 17, 31, .44));
  pointer-events: none;
}
.page-hero.page-hero-visual.image-only-hero::after {
  display: none;
}
.page-hero.page-hero-visual.image-only-hero:has(.about-portrait)::before {
  background:
    linear-gradient(90deg, rgba(17, 31, 61, .98) 0%, rgba(17, 31, 61, .92) 34%, rgba(17, 31, 61, .62) 61%, rgba(17, 31, 61, .18) 86%),
    linear-gradient(180deg, rgba(17, 31, 61, .08), rgba(17, 31, 61, .34));
}
.page-hero.page-hero-visual.image-only-hero .hero-welcome-title {
  position: relative;
  z-index: 2;
  max-width: 780px;
  align-self: start;
  padding: clamp(82px, 10vw, 138px) 0 0;
  color: var(--white);
}
.strategy-abstract-hero img {
  filter: saturate(.72) brightness(.72) contrast(.95);
}
.hero-welcome-title span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-welcome-title h2 {
  margin: 0;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .98;
  text-wrap: balance;
}
.hero-subtitle {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: balance;
}
.journal-subtitle {
  color: var(--slate);
}
.page-body-intro {
  max-width: 980px;
  padding: 70px 0 36px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal.is-open {
  display: flex;
}
.booking-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, .72);
  backdrop-filter: blur(10px);
}
.booking-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(0, 1.15fr);
  overflow: auto;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}
.booking-intro {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 12%, rgba(79, 183, 176, .34), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--midnight));
}
.booking-intro .section-kicker {
  color: var(--aqua);
}
.booking-intro h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}
.booking-intro p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}
.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, .9);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.booking-close:hover {
  transform: rotate(90deg);
  background: var(--aqua);
}
.booking-form {
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(17, 31, 61, .16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(245, 246, 248, .82);
  font: inherit;
}
.booking-form textarea {
  min-height: 116px;
  resize: vertical;
}
.booking-wide {
  grid-column: 1 / -1;
}
.booking-submit {
  grid-column: 1 / -1;
  justify-self: start;
}
.booking-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}
body.booking-lock {
  overflow: hidden;
}

@media (max-width: 620px) {
  .booking-modal {
    align-items: stretch;
    padding: 12px;
  }
  .booking-dialog {
    grid-template-columns: 1fr;
    max-height: 94vh;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .booking-submit {
    width: 100%;
  }
  .page-main {
    padding-top: 0;
  }
  .page-hero.page-hero-visual.image-only-hero {
    min-height: 390px;
    padding: 0 20px;
  }
  .page-hero.page-hero-visual.image-only-hero .page-hero-media {
    inset: 0;
  }
  .page-hero.page-hero-visual.image-only-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, .82), rgba(7, 17, 31, .36)),
      linear-gradient(180deg, rgba(7, 17, 31, .1), rgba(7, 17, 31, .54));
  }
  .page-hero.page-hero-visual.image-only-hero .hero-welcome-title {
    max-width: 94%;
    align-self: start;
    padding: 58px 0 0;
  }
  .hero-welcome-title span {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .hero-welcome-title h2 {
    font-size: 38px;
  }
  .hero-subtitle {
    margin-top: 14px;
    font-size: 16px;
  }
  .page-body-intro {
    padding: 46px 0 26px;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 46px;
  }
  .about-intro-photo img {
    max-height: none;
  }
  .about-intro::before,
  .page-main::before,
  .page-main::after {
    opacity: .45;
  }
  .about-intro .section-kicker,
  .about-intro h1,
  .about-intro .page-intro,
  .about-intro-copy {
    grid-column: 1;
  }
  .about-intro .page-intro {
    margin-top: 18px;
    padding: 0;
  }
}


/* Mobile polish: keep elevation visuals contained and keep portrait text off Dr. Nika's face. */
@media (max-width: 620px) {
  .hero {
    overflow: hidden;
  }
  .circle-stage {
    width: min(100%, 360px);
    min-height: 360px;
    aspect-ratio: 1;
    margin: 18px auto 0;
    transform: translateZ(0);
    overflow: visible;
  }
  .circle-stage::before {
    top: 22%;
    left: 12%;
    width: 76%;
    opacity: .5;
  }
  .circle-stage::after {
    left: 22%;
    bottom: 10%;
    width: 56%;
    height: 34%;
    opacity: .45;
  }
  .circle-glow {
    inset: 16%;
  }
  .orbit-one {
    inset: 18%;
  }
  .orbit-two {
    inset: 30%;
  }
  .center-mark {
    width: 136px;
    height: 136px;
    padding: 18px;
  }
  .center-mark img {
    width: 78px;
  }
  .center-mark strong {
    font-size: 13px;
  }
  .center-mark span {
    font-size: 11px;
  }
  .circle-word {
    width: 122px;
    max-width: 34vw;
  }
  .circle-word b {
    font-size: 19px;
    margin-bottom: 5px;
  }
  .circle-word span {
    font-size: 8.5px;
    line-height: 1.25;
    letter-spacing: .05em;
  }
  .circle-word::before {
    width: 20px;
    opacity: .45;
  }
  .word-leadership {
    top: 2%;
  }
  .word-strategy {
    top: 42%;
    right: -1%;
  }
  .word-culture {
    bottom: 2%;
  }
  .word-growth {
    top: 42%;
    left: -1%;
  }

  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) {
    min-height: auto;
    display: block;
    padding: 0;
    overflow: visible;
    background: var(--navy);
  }
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .page-hero-media {
    position: relative;
    display: block;
    min-height: 360px;
    height: 360px;
    inset: auto;
  }
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .page-hero-media img {
    min-height: 360px;
    height: 360px;
    object-position: 66% center;
  }
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait)::before {
    background:
      linear-gradient(90deg, rgba(17, 31, 61, .86) 0%, rgba(17, 31, 61, .52) 34%, rgba(17, 31, 61, .08) 68%),
      linear-gradient(180deg, rgba(0, 0, 0, .035), rgba(17, 31, 61, .42));
    inset: 0 0 auto;
    height: 360px;
  }
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .hero-welcome-title {
    position: relative;
    z-index: 3;
    max-width: none;
    padding: 28px 20px 34px;
    background:
      radial-gradient(circle at 92% 0%, rgba(79, 183, 176, .18), transparent 38%),
      linear-gradient(135deg, var(--navy), var(--midnight));
    box-shadow: 0 -18px 36px rgba(7, 17, 31, .22);
  }
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .hero-welcome-title span {
    color: var(--aqua);
  }
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .hero-welcome-title h2 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.05;
  }
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .hero-subtitle {
    max-width: 340px;
    color: rgba(255, 255, 255, .84);
  }
}

@media (max-width: 390px) {
  .circle-stage {
    width: min(100%, 330px);
    min-height: 330px;
  }
  .circle-word {
    width: 112px;
  }
  .circle-word b {
    font-size: 17px;
  }
  .circle-word span {
    font-size: 8px;
  }
}


/* Home slider polish: keep controls below the photo so they do not cover the image. */
.slider-shell {
  overflow: visible;
  margin-bottom: 64px;
}
.slider-controls {
  left: 0;
  right: 0;
  bottom: -52px;
  justify-content: center;
  gap: 18px;
  pointer-events: auto;
}
.slider-button {
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(17, 31, 61, .12);
  box-shadow: 0 10px 24px rgba(7, 17, 31, .1);
  font-size: 22px;
}
.slider-button:hover {
  background: var(--teal);
  color: var(--navy);
}
.slider-dots {
  align-items: center;
  gap: 7px;
  padding: 0 4px;
  background: transparent;
  backdrop-filter: none;
}
.slider-dot {
  width: 10px;
  height: 10px;
  background: rgba(17, 31, 61, .22);
  border-radius: 999px;
}
.slider-dot::after {
  display: none;
}
.slider-dot.active {
  width: 28px;
  transform: none;
  background: var(--teal);
}
.slide figcaption {
  bottom: 28px;
  max-width: calc(100% - 56px);
}

@media (max-width: 620px) {
  .slider-shell {
    margin-bottom: 58px;
  }
  .slider-controls {
    bottom: -48px;
    left: 0;
    right: 0;
    gap: 14px;
  }
  .slider-button {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .slider-dot {
    width: 9px;
    height: 9px;
  }
  .slider-dot.active {
    width: 24px;
  }
  .slide figcaption {
    left: 20px;
    right: 20px;
    bottom: 24px;
    max-width: none;
  }
}


/* Home circle logo-only center mark. */
.center-mark.logo-only {
  padding: 30px;
}
.center-mark.logo-only img {
  width: min(142px, 78%);
  mix-blend-mode: multiply;
}

@media (max-width: 620px) {
  .center-mark.logo-only {
    padding: 20px;
  }
  .center-mark.logo-only img {
    width: min(94px, 76%);
  }
}


/* Circle explanation popup. */
.circle-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.circle-modal.is-open {
  display: flex;
}
.circle-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, .74);
  backdrop-filter: blur(10px);
}
.circle-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 8%, rgba(79, 183, 176, .18), transparent 34%),
    linear-gradient(135deg, var(--white), #ededed);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}
.circle-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 28px rgba(7, 17, 31, .14);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.circle-close:hover {
  transform: rotate(90deg);
  background: var(--teal);
}
.circle-dialog-intro {
  max-width: 760px;
  margin-bottom: 30px;
}
.circle-dialog-intro h2 {
  max-width: 680px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(34px, 4.8vw, 58px);
}
.circle-dialog-intro p:not(.section-kicker) {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}
.circle-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.circle-card-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(17, 31, 61, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .08);
}
.circle-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  box-shadow: 0 0 0 9px rgba(79, 183, 176, .12);
}
.circle-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.circle-card-grid h3 {
  margin: 8px 0 0;
  font-size: 24px;
}
.circle-card-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .circle-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .circle-modal {
    align-items: stretch;
    padding: 12px;
  }
  .circle-dialog {
    max-height: 94vh;
    padding: 28px 18px;
  }
  .circle-dialog-intro {
    padding-right: 38px;
  }
  .circle-dialog-intro p:not(.section-kicker) {
    font-size: 16px;
  }
  .circle-card-grid {
    grid-template-columns: 1fr;
  }
  .circle-card-grid article {
    min-height: auto;
    padding: 22px;
  }
}


/* Mobile hero flow: place calls to action after the circle visual. */
.hero-actions-mobile {
  display: none;
}

@media (max-width: 620px) {
  .hero-copy-block > .hero-actions {
    display: none;
  }
  .hero-actions-mobile {
    display: flex;
    width: 100%;
    margin: 22px auto 0;
    padding: 0;
    gap: 12px;
  }
  .hero-actions-mobile .button {
    width: 100%;
  }
}


/* Scroll-visible neutral wash: soft grey at the top, lighter with subtle brand color lower down. */
body {
  background:
    radial-gradient(circle at 88% 34%, rgba(79, 183, 176, .10), transparent 28rem),
    radial-gradient(circle at 10% 42%, rgba(17, 31, 61, .055), transparent 30rem),
    linear-gradient(180deg,
      #f1f2f4 0%,
      #f3f4f6 20%,
      #f6f8fa 42%,
      #f4fbfa 66%,
      #ffffff 100%);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100% max(2600px, 100%);
}
.nav,
.top-strip,
.path-copy,
.trust-strip div,
.service-card,
.page-card,
.about-quote-panel,
.about-profile-panel,
.about-belief,
.about-pillars article,
.about-authority article,
.contact-item,
.journal-product,
.benefit-icon-row article {
  background-color: rgba(255, 255, 255, .76);
}


/* Neutral grey navigation surfaces. */
.site-header {
  background: #f1f2f4;
  backdrop-filter: none;
  border-bottom-color: rgba(16, 24, 40, .10);
}
.top-strip,
.nav {
  background-color: #f1f2f4;
}
.menu-toggle,
.nav-links {
  background: rgba(255, 255, 255, .88);
}
@media (max-width: 1120px) {
  .nav-links {
    background: rgba(246, 248, 250, .98);
    border-color: rgba(16, 24, 40, .14);
  }
}


/* Active navigation state: remove white tab effect and use teal underline. */
.nav-links a,
.nav-links a[aria-current="page"] {
  background: transparent;
}
.nav-links a[aria-current="page"] {
  color: var(--teal);
}
.nav-links a[aria-current="page"]::after {
  background: var(--teal);
  transform: scaleX(1);
  transform-origin: left;
}
@media (max-width: 1120px) {
  .nav-links a[aria-current="page"] {
    padding: 10px 12px;
    border-radius: 7px;
    background: rgba(79, 183, 176, .12);
  }
  .nav-links a[aria-current="page"]::after {
    display: none;
  }
}


/* Desktop nav cleanup: remove menu card and restore Schedule Call pill. */
.nav-links {
  background: transparent;
  box-shadow: none;
  border: 0;
}
.nav-links .nav-cta {
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--midnight) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(7, 17, 31, .16);
}
.nav-links .nav-cta:hover {
  background: var(--teal) !important;
  color: var(--navy) !important;
}
.nav-links .nav-cta::after {
  display: none !important;
}
@media (max-width: 1120px) {
  .nav-links {
    border: 1px solid rgba(16, 24, 40, .14);
    background: rgba(246, 248, 250, .98);
    box-shadow: var(--shadow);
  }
}


/* Home photo slider premium frame. */
.photo-slider {
  padding-top: 56px;
  padding-bottom: 28px;
}
.slider-shell {
  min-height: 548px;
  border-radius: 14px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(79, 183, 176, .95), rgba(255, 255, 255, .86) 28%, rgba(232, 238, 241, .86) 62%, rgba(17, 31, 61, .95)),
    var(--midnight);
  border: 1px solid rgba(255, 255, 255, .74);
  box-shadow: 0 34px 80px rgba(7, 17, 31, .18), 0 12px 34px rgba(79, 183, 176, .12);
  isolation: isolate;
}
.slider-shell::before,
.slider-shell::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 86px;
  height: 86px;
  pointer-events: none;
}
.slider-shell::before {
  left: -10px;
  top: -10px;
  border-left: 3px solid var(--teal);
  border-top: 3px solid var(--teal);
  border-radius: 14px 0 0 0;
}
.slider-shell::after {
  right: -10px;
  bottom: -10px;
  border-right: 3px solid rgba(79, 183, 176, .72);
  border-bottom: 3px solid rgba(79, 183, 176, .72);
  border-radius: 0 0 14px 0;
}
.slides {
  inset: 12px;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.slide::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 7px;
  pointer-events: none;
}
.slide::after {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, .04) 0%, transparent 42%, rgba(7, 17, 31, .82) 100%),
    linear-gradient(90deg, rgba(7, 17, 31, .22), transparent 45%);
}
.slide figcaption {
  left: 42px;
  right: 42px;
  bottom: 42px;
  max-width: min(560px, calc(100% - 84px));
  padding-left: 18px;
  border-left: 4px solid var(--teal);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}
.slider-controls {
  bottom: -58px;
}
.slider-button {
  border-color: rgba(79, 183, 176, .28);
}
.slider-dot.active {
  background: linear-gradient(90deg, var(--teal), rgba(79, 183, 176, .72));
}
@media (max-width: 620px) {
  .photo-slider {
    padding-top: 38px;
  }
  .slider-shell {
    min-height: 400px;
    padding: 8px;
    border-radius: 12px;
  }
  .slides {
    inset: 8px;
  }
  .slider-shell::before,
  .slider-shell::after {
    width: 54px;
    height: 54px;
  }
  .slide::before {
    inset: 10px;
  }
  .slide figcaption {
    left: 24px;
    right: 24px;
    bottom: 28px;
    max-width: none;
    padding-left: 12px;
    font-size: clamp(19px, 6vw, 27px);
  }
}


/* Home card readability restore. */
.elevation-path::before {
  display: none;
}
.path-steps article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(238, 246, 247, .62));
  border-color: rgba(79, 183, 176, .18);
}
.services .service-card {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
}
.services .featured-card {
  background: linear-gradient(180deg, rgba(79,183,176,.20), rgba(255,255,255,.08));
}
.services .service-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(79, 183, 176, .38);
}
.services .service-card h3,
.services .service-card p {
  color: var(--white);
}
.services .service-card p {
  color: #d7e1ea;
}


/* Services intro alignment polish. */
.services-intro-feature {
  grid-template-columns: minmax(360px, .82fr) minmax(0, .92fr);
  gap: clamp(34px, 4.6vw, 64px);
  align-items: center;
  padding-top: clamp(58px, 6vw, 74px);
}
.services-intro-photo {
  align-self: center;
  max-width: 520px;
  justify-self: end;
}
.services-intro-photo img {
  aspect-ratio: 1.16 / 1;
}
.services-intro-copy {
  align-self: center;
  max-width: 600px;
  padding-top: 0;
}
.services-intro-copy h1 {
  font-size: clamp(38px, 4.15vw, 66px);
  line-height: 1.02;
  max-width: 560px;
  margin: 0 0 20px;
}
.services-intro-copy .page-intro p {
  max-width: 570px;
}
@media (max-width: 980px) {
  .services-intro-feature {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .services-intro-photo {
    justify-self: start;
    max-width: 620px;
  }
  .services-intro-copy h1 {
    font-size: clamp(34px, 8vw, 52px);
  }
}
@media (max-width: 620px) {
  .services-intro-copy h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.05;
  }
}


/* Mobile circle popup touch reliability. */
.circle-explain-trigger {
  touch-action: manipulation;
}
.hero-actions-mobile {
  position: relative;
  z-index: 8;
}
@media (max-width: 620px) {
  .hero-actions-mobile .circle-explain-trigger {
    min-height: 52px;
  }
}


/* Mobile neutral background lock. */
@media (max-width: 620px) {
  html,
  body {
    background:
      radial-gradient(circle at 82% 44%, rgba(79, 183, 176, .075), transparent 22rem),
      linear-gradient(180deg, #f1f2f4 0%, #f4f5f7 34%, #f7f9fa 70%, #ffffff 100%) !important;
    background-attachment: scroll !important;
  }
  .site-header,
  .top-strip,
  .nav {
    background: #f1f2f4 !important;
  }
  .page-main,
  main {
    background: transparent !important;
  }
}


/* Mobile Explore the Circle button hardening. */
.circle-explain-trigger {
  position: relative;
  z-index: 20;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(79, 183, 176, .24);
}
@media (max-width: 620px) {
  .hero-actions-mobile,
  .hero-actions-mobile .circle-explain-trigger {
    pointer-events: auto;
  }
}


/* Live neutral theme hard override. */
html,
body {
  background:
    radial-gradient(circle at 84% 38%, rgba(79, 183, 176, .075), transparent 30rem),
    linear-gradient(180deg, #f1f2f4 0%, #f4f5f7 36%, #f8fafb 72%, #ffffff 100%) !important;
}
.site-header,
.top-strip,
.nav {
  background: #f1f2f4 !important;
}
.nav,
.top-strip,
.path-copy,
.trust-strip div,
.page-card,
.about-quote-panel,
.about-profile-panel,
.about-belief,
.about-pillars article,
.about-authority article,
.contact-item,
.journal-product,
.benefit-icon-row article {
  background-color: rgba(255, 255, 255, .74);
}


/* About hero portrait crop correction. */
.page-hero.page-hero-visual.image-only-hero:has(.about-portrait) {
  min-height: clamp(520px, 56vw, 720px);
}
.page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .page-hero-media img,
.about-portrait img {
  object-position: 68% 24%;
}
@media (max-width: 980px) {
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .page-hero-media img,
  .about-portrait img {
    object-position: 66% 18%;
  }
}
@media (max-width: 620px) {
  .page-hero.page-hero-visual.image-only-hero:has(.about-portrait) .page-hero-media img,
  .about-portrait img {
    object-position: 64% 12%;
  }
}


/* About intro breathing room polish. */
.page-main .page-body-intro.about-intro {
  width: min(1500px, calc(100% - 96px));
}
.about-intro {
  grid-template-columns: minmax(360px, 500px) minmax(560px, 730px);
  justify-content: center;
  gap: clamp(58px, 7vw, 120px);
  align-items: center;
  padding-top: clamp(68px, 7vw, 96px);
  padding-bottom: clamp(54px, 6vw, 84px);
}
.about-intro-photo {
  width: min(100%, 500px);
  justify-self: end;
}
.about-intro-copy {
  max-width: 730px;
  justify-self: start;
}
.about-intro h1 {
  max-width: 730px;
  font-size: clamp(38px, 4.15vw, 66px);
  line-height: 1.02;
}
.about-intro .page-intro {
  max-width: 700px;
  margin-top: 30px;
}
.about-intro .page-intro p {
  max-width: 680px;
  line-height: 1.78;
}
.about-intro .page-intro p + p {
  margin-top: 22px;
}
@media (max-width: 1120px) {
  .page-main .page-body-intro.about-intro {
    width: min(1120px, calc(100% - 56px));
  }
  .about-intro {
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 64px);
  }
  .about-intro h1 {
    font-size: clamp(36px, 5vw, 54px);
  }
}
@media (max-width: 820px) {
  .page-main .page-body-intro.about-intro {
    width: min(680px, calc(100% - 40px));
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }
  .about-intro-photo,
  .about-intro-copy {
    justify-self: center;
    width: 100%;
  }
  .about-intro-copy {
    max-width: 640px;
  }
  .about-intro h1 {
    max-width: 620px;
  }
}
@media (max-width: 620px) {
  .page-main .page-body-intro.about-intro {
    width: min(100% - 32px, 560px);
  }
  .about-intro h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .about-intro .page-intro p {
    font-size: 17px;
    line-height: 1.72;
  }
}


/* About intro left alignment with cards. */
.page-main .page-body-intro.about-intro {
  width: min(1400px, calc(100% - 96px));
}
.about-intro {
  grid-template-columns: minmax(360px, 500px) minmax(560px, 720px);
  justify-content: start;
  gap: clamp(54px, 6vw, 96px);
}
.about-intro-photo {
  justify-self: start;
}
.about-intro-copy {
  justify-self: start;
}
@media (max-width: 1120px) {
  .page-main .page-body-intro.about-intro {
    width: min(1120px, calc(100% - 56px));
  }
  .about-intro {
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 58px);
  }
}
@media (max-width: 820px) {
  .page-main .page-body-intro.about-intro {
    width: min(680px, calc(100% - 40px));
  }
  .about-intro {
    justify-content: center;
  }
  .about-intro-photo,
  .about-intro-copy {
    justify-self: center;
  }
}


/* Legal pages and footer credit polish. */
.legal-page {
  padding-bottom: 0;
}
.legal-hero {
  max-width: 980px;
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: 24px;
}
.legal-hero h1 {
  margin-bottom: 18px;
}
.legal-updated {
  color: var(--slate);
  font-weight: 800;
  margin-top: 18px;
}
.legal-content {
  max-width: 980px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(17, 31, 61, .08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.legal-content h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  margin: 0 0 12px;
}
.legal-content p + h2 {
  margin-top: 34px;
}
.legal-content p {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}
.footer-credit {
  color: rgba(255, 255, 255, .72);
}
@media (max-width: 720px) {
  .legal-content {
    border-radius: 14px;
  }
  .footer-bottom {
    gap: 14px;
  }
}


/* Floating scroll-to-top elevation button. */
.scroll-top-button {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 80;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(79, 183, 176, .62);
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--white);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .22), transparent 30%),
    linear-gradient(145deg, var(--teal), var(--navy) 62%, var(--midnight));
  box-shadow: 0 18px 44px rgba(7, 17, 31, .28), 0 0 0 8px rgba(79, 183, 176, .1);
  opacity: 0;
  transform: translateY(18px) scale(.92);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.scroll-top-button.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: relative;
  z-index: 2;
  transition: transform .28s ease;
}
.scroll-top-orbit {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(201, 164, 91, .46);
  border-left-color: transparent;
  border-bottom-color: rgba(79, 183, 176, .5);
  transform: rotate(-18deg);
  transition: transform .45s ease, border-color .28s ease;
}
.scroll-top-button::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .22);
}
.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  border-color: rgba(201, 164, 91, .72);
  box-shadow: 0 22px 54px rgba(7, 17, 31, .34), 0 0 0 10px rgba(79, 183, 176, .15);
  outline: none;
}
.scroll-top-button:hover svg,
.scroll-top-button:focus-visible svg {
  transform: translateY(-3px);
}
.scroll-top-button:hover .scroll-top-orbit,
.scroll-top-button:focus-visible .scroll-top-orbit {
  transform: rotate(28deg) scale(1.04);
  border-top-color: rgba(79, 183, 176, .72);
}
@media (max-width: 620px) {
  .scroll-top-button {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top-button,
  .scroll-top-button svg,
  .scroll-top-orbit {
    transition: none;
  }
}


/* Mobile scroll-to-top visibility refinement. */
@media (max-width: 620px) {
  .scroll-top-button {
    right: 18px;
    bottom: 24px;
    z-index: 120;
    box-shadow: 0 16px 38px rgba(7, 17, 31, .3), 0 0 0 7px rgba(79, 183, 176, .12);
  }
}


/* Mobile scroll-to-top always-visible check. */
@media (max-width: 620px) {
  .scroll-top-button {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}


/* Services page headline size refinement. */
.services-intro-copy h1 {
  font-size: clamp(34px, 3.25vw, 52px);
  line-height: 1.08;
  max-width: 620px;
}
@media (max-width: 980px) {
  .services-intro-copy h1 {
    font-size: clamp(32px, 6.6vw, 46px);
  }
}
@media (max-width: 620px) {
  .services-intro-copy h1 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.1;
  }
}


/* About credibility awards scroller. */
.awards-gallery {
  width: min(1400px, calc(100% - 48px));
  margin: clamp(38px, 5vw, 74px) auto;
  padding: clamp(34px, 4vw, 54px) 0;
  overflow: hidden;
  position: relative;
}
.awards-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(79, 183, 176, .14), transparent 24rem),
    radial-gradient(circle at 86% 72%, rgba(201, 164, 91, .12), transparent 24rem);
  opacity: .9;
}
.awards-heading {
  max-width: 900px;
  margin: 0 auto clamp(26px, 4vw, 42px);
  text-align: center;
  position: relative;
  z-index: 2;
}
.awards-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.05;
}
.awards-heading p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}
.awards-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 12px 0 22px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.awards-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 2.4vw, 30px);
  animation: awards-scroll 34s linear infinite;
}
.awards-marquee:hover .awards-track {
  animation-play-state: paused;
}
.award-card {
  width: clamp(240px, 24vw, 340px);
  margin: 0;
  flex: 0 0 auto;
  padding: 10px;
  border: 1px solid rgba(17, 31, 61, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 24px 64px rgba(7, 17, 31, .12);
}
.award-card img {
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  display: block;
  object-fit: cover;
  border-radius: 12px;
}
.award-card img.award-contain {
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(79, 183, 176, .08));
}
.award-card figcaption {
  padding: 14px 8px 4px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .02em;
}
@keyframes awards-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 15px)); }
}
@media (max-width: 720px) {
  .awards-gallery {
    width: min(100% - 28px, 620px);
  }
  .awards-heading {
    text-align: left;
  }
  .awards-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .awards-marquee {
    mask-image: none;
  }
  .award-card {
    width: min(78vw, 300px);
  }
  .award-card img {
    height: 350px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awards-track {
    animation: none;
    overflow-x: auto;
  }
}

.journal-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  margin-top: 18px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #6fd0c9);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(79, 183, 176, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.journal-buy-button:hover,
.journal-buy-button:focus-visible {
  transform: translateY(-2px);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 22px 44px rgba(8, 23, 50, 0.22);
}

/* v134: keep the Method elevation circle visible and polished on mobile. */
@media (max-width: 760px) {
  .method {
    gap: 30px;
    overflow: visible;
  }

  .method-copy {
    text-align: left;
  }

  .method-ring {
    width: min(92vw, 390px);
    min-height: 390px;
    aspect-ratio: 1;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, rgba(255,255,255,.98) 0 25%, rgba(79, 183, 176, .18) 26% 27%, transparent 28%),
      radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(79, 183, 176, .2) 49% 50%, transparent 51%),
      radial-gradient(circle at 48% 44%, rgba(255,255,255,.82), rgba(79, 183, 176, .09) 58%, rgba(17, 31, 61, .08));
    box-shadow:
      inset 0 0 54px rgba(255, 255, 255, .78),
      0 22px 58px rgba(7, 17, 31, .12);
  }

  .method-ring::before,
  .method-ring::after,
  .method-orbit {
    display: block;
  }

  .method-core {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 126px;
    height: 126px;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 16px;
    border-radius: 50%;
  }

  .method-core span {
    font-size: 24px;
  }

  .method-core strong {
    max-width: 90px;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: .1em;
  }

  .method-ring .method-core::after {
    height: 54px;
    bottom: calc(100% + 8px);
  }

  .method-step {
    position: absolute;
    width: 118px;
    margin: 0;
    padding: 12px 10px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, .86);
    animation: none;
    backdrop-filter: blur(12px);
  }

  .method-step b {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .method-step span {
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .045em;
  }

  .method-step::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 5px rgba(79, 183, 176, .15);
  }

  .step-one {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .step-two {
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
  }

  .step-three {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .step-four {
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
  }

  .step-one::before { left: 50%; bottom: -15px; top: auto; right: auto; transform: translateX(-50%); }
  .step-two::before { left: -14px; top: 50%; right: auto; transform: translateY(-50%); }
  .step-three::before { left: 50%; top: -15px; right: auto; transform: translateX(-50%); }
  .step-four::before { right: -14px; left: auto; top: 50%; transform: translateY(-50%); }

  .method-step:hover,
  .step-one:hover,
  .step-three:hover {
    transform: none;
  }
}

@media (max-width: 390px) {
  .method-ring {
    width: min(92vw, 340px);
    min-height: 340px;
  }

  .method-core {
    width: 112px;
    height: 112px;
  }

  .method-step {
    width: 104px;
    padding: 10px 8px;
  }

  .method-step b {
    font-size: 18px;
  }
}

/* v135: true phone-safe Method circle. Keeps every Method card inside the viewport. */
@media (max-width: 760px) {
  .method {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
    overflow-x: clip !important;
  }

  .method-copy {
    width: min(100%, 390px) !important;
    justify-self: center !important;
    text-align: left !important;
  }

  .method-ring {
    position: relative !important;
    box-sizing: border-box !important;
    width: min(calc(100vw - 36px), 360px) !important;
    height: min(calc(100vw - 36px), 360px) !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 50% !important;
    background:
      radial-gradient(circle at 50% 50%, rgba(255,255,255,.98) 0 23%, rgba(79,183,176,.18) 24% 25%, transparent 26%),
      radial-gradient(circle at 50% 50%, transparent 0 47%, rgba(79,183,176,.22) 48% 49%, transparent 50%),
      radial-gradient(circle at 50% 50%, transparent 0 69%, rgba(17,31,61,.12) 70% 70.5%, transparent 71%),
      radial-gradient(circle at 42% 38%, rgba(255,255,255,.92), rgba(79,183,176,.1) 58%, rgba(17,31,61,.08)) !important;
    box-shadow: inset 0 0 46px rgba(255,255,255,.82), 0 20px 46px rgba(7,17,31,.12) !important;
  }

  .method-ring::before,
  .method-ring::after,
  .method-orbit {
    display: block !important;
    pointer-events: none !important;
  }

  .method-ring::before {
    inset: 42px !important;
  }

  .method-ring::after {
    inset: 82px !important;
  }

  .method-orbit.orbit-a {
    inset: 38px !important;
  }

  .method-orbit.orbit-b {
    inset: 76px !important;
  }

  .method-core {
    position: absolute !important;
    inset: 50% auto auto 50% !important;
    width: 108px !important;
    height: 108px !important;
    margin: 0 !important;
    padding: 14px !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 4 !important;
  }

  .method-core span {
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .method-core strong {
    max-width: 82px !important;
    font-size: 8px !important;
    line-height: 1.2 !important;
    letter-spacing: .1em !important;
  }

  .method-ring .method-core::after {
    display: none !important;
  }

  .method-step {
    position: absolute !important;
    box-sizing: border-box !important;
    width: clamp(88px, 28vw, 106px) !important;
    min-height: 64px !important;
    margin: 0 !important;
    padding: 10px 8px !important;
    border-radius: 16px !important;
    text-align: center !important;
    background: rgba(255,255,255,.9) !important;
    border: 1px solid rgba(17,31,61,.08) !important;
    box-shadow: 0 12px 24px rgba(7,17,31,.1) !important;
    backdrop-filter: blur(10px) !important;
    animation: none !important;
    z-index: 5 !important;
    white-space: normal !important;
    overflow: hidden !important;
  }

  .method-step b {
    display: block !important;
    margin-bottom: 4px !important;
    font-size: clamp(16px, 5.2vw, 20px) !important;
    line-height: .95 !important;
    letter-spacing: 0 !important;
  }

  .method-step span {
    display: block !important;
    max-width: 100% !important;
    font-size: clamp(6.8px, 2.05vw, 8px) !important;
    line-height: 1.16 !important;
    letter-spacing: .035em !important;
    overflow-wrap: anywhere !important;
  }

  .method-step::before {
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 0 5px rgba(79,183,176,.16) !important;
  }

  .step-one {
    top: 12px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
  }

  .step-two {
    top: 50% !important;
    right: 8px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }

  .step-three {
    bottom: 12px !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
  }

  .step-four {
    top: 50% !important;
    left: 8px !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }

  .step-one::before { left: 50% !important; bottom: -13px !important; top: auto !important; right: auto !important; transform: translateX(-50%) !important; }
  .step-two::before { left: -12px !important; top: 50% !important; right: auto !important; transform: translateY(-50%) !important; }
  .step-three::before { left: 50% !important; top: -13px !important; right: auto !important; transform: translateX(-50%) !important; }
  .step-four::before { right: -12px !important; left: auto !important; top: 50% !important; transform: translateY(-50%) !important; }

  .method-step:hover,
  .step-one:hover,
  .step-two:hover,
  .step-three:hover,
  .step-four:hover {
    transform: translateY(-50%) !important;
  }

  .step-one:hover,
  .step-three:hover {
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 390px) {
  .method-ring {
    width: min(calc(100vw - 28px), 344px) !important;
    height: min(calc(100vw - 28px), 344px) !important;
  }

  .method-core {
    width: 98px !important;
    height: 98px !important;
  }

  .method-core span {
    font-size: 20px !important;
  }

  .method-step {
    width: clamp(82px, 27vw, 98px) !important;
    min-height: 60px !important;
    padding: 9px 7px !important;
  }
}



/* v137: refined contact page info card scale. */
.page-contact-panel .contact-feature-list {
  max-width: 620px;
  justify-self: start;
}

.page-contact-panel .contact-item {
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 30px;
}

.page-contact-panel .contact-item span {
  font-size: 12px;
  letter-spacing: .08em;
}

.page-contact-panel .contact-item strong {
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.22;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page-contact-panel a.contact-item strong {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .page-contact-panel .contact-feature-list {
    width: 100%;
    max-width: none;
  }

  .page-contact-panel .contact-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 24px;
  }

  .page-contact-panel .contact-item strong {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .page-contact-panel .contact-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .page-contact-panel .contact-item strong {
    font-size: 19px;
  }

  .page-contact-panel a.contact-item strong {
    white-space: normal;
  }
}

/* v140: soften the lower contact page headline scale. */
.page-contact-panel .contact-feature-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 4.1vw, 60px);
  line-height: 1.04;
}

@media (max-width: 640px) {
  .page-contact-panel .contact-feature-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }
}
