:root {
  --paper: #fbfaf7;
  --paper-soft: #f5f2ec;
  --paper-deep: #eee9e1;
  --ink: #292a2c;
  --muted: #6f737b;
  --line: #ded7ce;
  --rose: #d889a7;
  --rose-deep: #c86f92;
  --rose-soft: #f3dce5;
  --blue: #0969c9;
  --shadow: 0 24px 70px rgba(72, 59, 49, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --hero-title-size: 102px;
  --hero-mobile-title-size: 76px;
  --about-title-size: 74px;
  --speaking-title-size: 74px;
  --services-title-size: 74px;
  --testimonials-title-size: 74px;
  --cta-title-size: 74px;
  --contact-title-size: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.launch-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page-loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.page-loader span {
  font: 500 clamp(32px, 6vw, 70px) / 1 var(--serif);
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  from { opacity: 0.3; letter-spacing: 0.02em; }
  to { opacity: 1; letter-spacing: 0.09em; }
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
  transition: min-height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header::after {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: var(--page-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  content: "";
}

.site-header.scrolled {
  min-height: 72px;
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  box-shadow: 0 12px 34px rgba(55, 47, 42, 0.07);
}

.wordmark {
  font: 600 28px / 1 var(--serif);
  letter-spacing: -0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav > a:not(.linkedin-button) {
  position: relative;
}

.site-nav > a:not(.linkedin-button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.linkedin-button,
.portrait-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
}

.linkedin-button {
  min-height: 42px;
  padding: 0 18px;
  box-shadow: 0 9px 24px rgba(9, 105, 201, 0.18);
  line-height: 1;
  transform: translate3d(var(--button-x, 0), var(--button-y, 0), 0);
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.linkedin-button:hover {
  background: #075caf;
  box-shadow: 0 12px 28px rgba(9, 105, 201, 0.25);
  transform: translate3d(
    var(--button-x, 0),
    calc(var(--button-y, 0) - 2px),
    0
  );
}

.linkedin-mark {
  display: inline-flex;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: currentColor;
}

.linkedin-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-block: 72px 96px;
  gap: clamp(48px, 8vw, 120px);
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: -86px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 86px);
  background:
    radial-gradient(
      430px circle at var(--hero-pointer-x, 68%) var(--hero-pointer-y, 31%),
      rgba(216, 137, 167, 0.18),
      transparent 68%
    ),
    radial-gradient(circle at 18% 32%, rgba(243, 220, 229, 0.72), transparent 27%),
    radial-gradient(circle at 83% 72%, rgba(217, 212, 239, 0.45), transparent 23%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
  animation: heroAtmosphere 9s ease-in-out infinite alternate;
}

@keyframes heroAtmosphere {
  to {
    opacity: 0.78;
    transform: translateX(-50%) scale(1.035);
  }
}

.hero-copy {
  transform: translate3d(0, var(--hero-copy-shift, 0), 0);
  will-change: transform;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: -15%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 137, 167, 0.13), transparent 67%);
  content: "";
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.display-title,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.display-title {
  max-width: 720px;
  font-size: clamp(58px, 6.2vw, var(--hero-title-size));
  line-height: 0.91;
}

.hero-word {
  display: inline-block;
}

.display-title.word-ready .hero-word {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(32px) rotate(1deg);
}

.display-title.word-ready.visible .hero-word {
  animation: heroWordIn 0.82s cubic-bezier(0.2, 0.75, 0, 1) forwards;
  animation-delay: calc(0.08s + var(--word-index) * 0.075s);
}

@keyframes heroWordIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

h2 {
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.98;
}

.hero-intro {
  max-width: 510px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  gap: 16px;
  transform: translate3d(var(--button-x, 0), var(--button-y, 0), 0);
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translate3d(
    var(--button-x, 0),
    calc(var(--button-y, 0) - 3px),
    0
  );
}

.button-primary {
  color: white;
  background: var(--rose);
  box-shadow: 0 12px 32px rgba(200, 111, 146, 0.24);
}

.button-primary:hover {
  background: var(--rose-deep);
  box-shadow: 0 17px 36px rgba(200, 111, 146, 0.31);
}

.text-link {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  margin-left: 8px;
  color: var(--rose-deep);
}

.social-proof {
  max-width: 500px;
  margin-top: 46px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 15px 50px rgba(69, 57, 47, 0.07);
}

.profile-mini {
  display: flex;
  align-items: center;
  gap: 11px;
}

.profile-mini img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-mini strong,
.profile-mini span {
  display: block;
}

.profile-mini strong {
  font-size: 12px;
}

.profile-mini span,
.mini-stats span {
  color: var(--muted);
  font-size: 9px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.mini-stats div {
  text-align: center;
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
}

.portrait-frame {
  position: relative;
  isolation: isolate;
  margin-left: auto;
  border-radius: 30px;
  transform:
    perspective(1200px)
    translate3d(0, var(--hero-image-shift, 0), 0)
    rotateX(var(--portrait-rotate-x, 0deg))
    rotateY(var(--portrait-rotate-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0, 1);
  will-change: transform;
}

.portrait-frame > img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 0.79;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  position: absolute;
  z-index: 1;
  top: -22px;
  right: -22px;
  width: 44%;
  height: 38%;
  border: 1px solid var(--rose);
  border-radius: 28px;
  content: "";
}

.portrait-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(216, 137, 167, 0.43);
  border-radius: 50%;
}

.portrait-orbit-one {
  top: 8%;
  right: -15%;
  width: 170px;
  height: 170px;
  animation: orbit 9s linear infinite;
}

.portrait-orbit-two {
  bottom: -9%;
  left: -15%;
  width: 120px;
  height: 120px;
  animation: orbit 11s linear infinite reverse;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.portrait-link {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: var(--blue);
  background: white;
  font-size: 11px;
  font-weight: 700;
}

.image-note {
  margin: 17px 10px 0 0;
  color: var(--muted);
  font: italic 18px/1 var(--serif);
  text-align: right;
}

.hero-tags {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.hero-tags span {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid rgba(216, 137, 167, 0.28);
  border-radius: 999px;
  color: var(--rose-deep);
  background: rgba(251, 250, 247, 0.82);
  box-shadow: 0 12px 35px rgba(74, 56, 64, 0.1);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-tags span:nth-child(1) {
  top: 15%;
  left: -11%;
  animation: tagFloatOne 5.8s ease-in-out infinite alternate;
}

.hero-tags span:nth-child(2) {
  top: 47%;
  right: -10%;
  animation: tagFloatTwo 6.5s ease-in-out infinite alternate;
}

.hero-tags span:nth-child(3) {
  bottom: 10%;
  left: -8%;
  animation: tagFloatOne 7.2s ease-in-out infinite alternate-reverse;
}

@keyframes tagFloatOne {
  to { transform: translate3d(8px, -12px, 0) rotate(-2deg); }
}

@keyframes tagFloatTwo {
  to { transform: translate3d(-9px, 13px, 0) rotate(2deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  gap: 12px;
}

.scroll-cue i {
  width: 50px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  display: block;
  width: 50%;
  height: 1px;
  background: var(--rose-deep);
  content: "";
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  from { transform: translateX(-100%); }
  to { transform: translateX(220%); }
}

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

.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(100px, 13vw, 190px);
}

.about::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: -10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 137, 167, 0.15), transparent 67%);
  content: "";
}

.about::after {
  position: absolute;
  z-index: -1;
  right: 3%;
  bottom: 7%;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(rgba(200, 111, 146, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.45;
  -webkit-mask-image: radial-gradient(circle, black, transparent 72%);
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.editorial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(60px, 10vw, 160px);
}

.section-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.about-heading h2 {
  max-width: 520px;
  font-size: clamp(44px, 8vw, var(--about-title-size));
}

.brand-compass {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  margin: 58px 0 0 22px;
  place-items: center;
}

.compass-ring {
  position: absolute;
  border: 1px solid rgba(216, 137, 167, 0.42);
  border-radius: 50%;
}

.compass-ring-one {
  inset: 0;
  border-style: dashed;
  animation: compassSpin 22s linear infinite;
}

.compass-ring-two {
  inset: 25px;
  border-color: rgba(142, 128, 197, 0.34);
  animation: compassSpin 17s linear infinite reverse;
}

.compass-ring-one::before,
.compass-ring-two::before {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(216, 137, 167, 0.1);
  content: "";
}

@keyframes compassSpin {
  to { transform: rotate(360deg); }
}

.compass-core {
  display: grid;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--rose), var(--rose-deep));
  box-shadow: 0 22px 55px rgba(200, 111, 146, 0.28);
  place-content: center;
  text-align: center;
}

.compass-core small,
.compass-core strong {
  display: block;
}

.compass-core small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.compass-core strong {
  margin-top: 3px;
  font: 500 30px/1 var(--serif);
}

.compass-word {
  position: absolute;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-deep);
  background: rgba(251, 250, 247, 0.88);
  box-shadow: 0 8px 24px rgba(70, 58, 51, 0.08);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compass-word-one { top: -9px; left: 50%; transform: translateX(-50%); }
.compass-word-two { top: 57%; right: -27px; }
.compass-word-three { bottom: 8px; left: -18px; }

.about-content {
  display: grid;
  gap: 28px;
}

.about-copy {
  display: grid;
  gap: 12px;
}

.about-point {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: start;
  padding: 24px 25px;
  border: 1px solid rgba(222, 215, 206, 0.82);
  border-radius: 18px;
  background: rgba(251, 250, 247, 0.68);
  opacity: 0;
  gap: 18px;
  transform: translateX(25px);
}

.about-copy.visible .about-point {
  animation: aboutPointIn 0.72s cubic-bezier(0.2, 0.75, 0, 1) forwards;
}

.about-copy.visible .about-point:nth-child(2) { animation-delay: 0.12s; }
.about-copy.visible .about-point:nth-child(3) { animation-delay: 0.24s; }

@keyframes aboutPointIn {
  to { opacity: 1; transform: none; }
}

.about-point > span {
  padding-top: 4px;
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.about-point p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.about-point:last-child p {
  color: var(--ink);
  font-weight: 600;
}

.about-signature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  overflow: hidden;
  padding: 28px 30px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(120deg, #302d33, #4a3340);
  box-shadow: 0 22px 55px rgba(55, 44, 50, 0.14);
}

.about-signature::after {
  position: absolute;
  top: -55px;
  right: 60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.about-signature span,
.about-signature strong {
  display: block;
}

.about-signature span {
  color: #efabc5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-signature strong {
  margin-top: 8px;
  font: 500 clamp(24px, 2.4vw, 35px)/1.05 var(--serif);
}

.about-signature i {
  position: relative;
  z-index: 1;
  color: #efabc5;
  font-size: 22px;
  font-style: normal;
}

.speaking {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding-block: clamp(100px, 13vw, 180px);
  gap: clamp(60px, 9vw, 130px);
}

.speaking-gallery {
  position: relative;
}

.speaking-gallery img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.3;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow);
  clip-path: inset(0 round 26px);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0, 1);
}

.speaking-gallery:hover img {
  transform: scale(1.035);
}

.gallery-backdrop {
  position: absolute;
  z-index: 1;
  top: -42px;
  right: -42px;
  width: 72%;
  height: 72%;
  border-radius: 28px;
  background: #d9d4ef;
}

.image-label {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(41, 42, 44, 0.72);
  backdrop-filter: blur(12px);
  font-size: 10px;
}

.speaking-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 27px;
  color: var(--muted);
}

.speaking-copy h2 {
  font-size: clamp(44px, 8vw, var(--speaking-title-size));
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  gap: 18px;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  font: 500 34px/1 var(--serif);
}

.metric-row span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.services {
  padding-block: clamp(100px, 12vw, 170px);
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
  gap: 50px;
}

.services-header > div:first-child {
  max-width: 720px;
}

.services-header h2 {
  font-size: clamp(44px, 8vw, var(--services-title-size));
}

.journey-intro {
  max-width: 430px;
  margin-bottom: 5px;
}

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

.journey-intro span {
  display: inline-flex;
  margin-top: 15px;
  padding: 7px 11px;
  border: 1px solid rgba(216, 137, 167, 0.38);
  border-radius: 999px;
  color: var(--rose-deep);
  background: rgba(251, 250, 247, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journey-roadmap {
  position: relative;
  min-height: 650px;
}

.journey-path {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.journey-path-base,
.journey-path-progress {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.journey-path-base {
  stroke: rgba(200, 111, 146, 0.18);
  stroke-width: 2;
}

.journey-path-progress {
  stroke: url("#journey-gradient");
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 3;
  transition: stroke-dashoffset 2.1s cubic-bezier(0.2, 0.75, 0, 1) 0.22s;
}

.journey-roadmap.visible .journey-path-progress {
  stroke-dashoffset: 0;
}

.journey-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 54px;
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 405px;
  overflow: visible;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(222, 215, 206, 0.95);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 247, 0.7));
  box-shadow: 0 18px 45px rgba(72, 59, 49, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.journey-card:nth-child(even) {
  margin-top: 150px;
}

.journey-node {
  position: absolute !important;
  z-index: 3 !important;
  top: -22px;
  left: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  border: 7px solid var(--paper-soft);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 1px rgba(200, 111, 146, 0.35);
  place-items: center;
  transform: translateX(-50%);
}

.journey-node i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
}

.journey-card.visible .journey-node {
  animation: journeyNodePulse 2.8s ease-in-out infinite 1.8s;
}

@keyframes journeyNodePulse {
  50% { box-shadow: 0 0 0 1px rgba(200, 111, 146, 0.35), 0 0 0 10px rgba(216, 137, 167, 0.08); }
}

.journey-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
}

.journey-stage {
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--rose-deep);
  background: linear-gradient(145deg, var(--rose-soft), rgba(217, 212, 239, 0.55));
  place-items: center;
  transition: transform 0.35s ease;
}

.journey-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card::after,
.testimonial-card::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    280px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(216, 137, 167, 0.17),
    transparent 68%
  );
  content: "";
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-card.pointer-card:hover::after,
.testimonial-card.pointer-card:hover::after {
  opacity: 1;
}

.service-card > *,
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: var(--rose);
  box-shadow: 0 26px 60px rgba(62, 53, 47, 0.11);
  transform: translateY(-7px);
}

.service-card:hover .journey-icon {
  transform: rotate(-6deg) scale(1.08);
}

.service-number {
  color: var(--rose-deep);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: 42px 0 14px;
  font: 500 clamp(27px, 2vw, 32px)/1.05 var(--serif);
}

.service-card p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.journey-outcome {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.journey-outcome span,
.journey-outcome strong {
  display: block;
}

.journey-outcome span {
  margin-bottom: 7px;
  color: var(--rose-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-outcome strong {
  font-size: 11px;
  line-height: 1.55;
}

.testimonials {
  padding-block: clamp(110px, 13vw, 190px);
}

.testimonial-heading {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: end;
  margin-bottom: 66px;
  gap: 30px;
}

.testimonial-heading .eyebrow {
  grid-column: 1 / -1;
}

.testimonial-heading h2 {
  font-size: clamp(44px, 8vw, var(--testimonials-title-size));
}

.testimonial-heading > p:last-child {
  max-width: 420px;
  justify-self: end;
  margin: 0 0 8px;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
  background: var(--paper-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:nth-child(even) {
  transform: translateY(32px);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.testimonial-card:nth-child(even):hover {
  transform: translateY(25px);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 48px;
  border: 2px solid white;
  border-radius: 50%;
  color: var(--rose-deep);
  background: var(--rose-soft);
  font-weight: 700;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-person strong,
.testimonial-person > div span {
  display: block;
}

.testimonial-person > div span {
  color: var(--muted);
  font-size: 10px;
}

.testimonial-link {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(9, 105, 201, 0.09);
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.testimonial-link:hover {
  color: white;
  background: var(--blue);
  transform: translateY(-2px);
}

.testimonial-link .linkedin-mark {
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  margin: 32px 0 0;
  color: #5d5e61;
  font: italic 22px/1.55 var(--serif);
}

.testimonial-quote::before {
  color: var(--rose);
  content: "„";
  margin-right: 2px;
  font-size: 1em;
  line-height: inherit;
  vertical-align: baseline;
}

.testimonial-quote::after {
  color: var(--rose);
  content: "“";
  margin-left: 2px;
  font-size: 1em;
  line-height: inherit;
}

.cta-band {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  padding: 100px 32px;
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    color-mix(in srgb, var(--rose-soft) 24%, var(--paper)) 52%,
    var(--paper-soft) 100%
  );
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: min(70vw, 880px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-soft), transparent 66%);
  animation: breathe 5s ease-in-out infinite alternate;
}

@keyframes breathe {
  to { transform: scale(1.13); opacity: 0.7; }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-content h2 {
  font-size: clamp(44px, 8vw, var(--cta-title-size));
}

.cta-content p:not(.eyebrow) {
  max-width: 570px;
  margin: 25px auto 32px;
  color: var(--muted);
}

.contact {
  padding-block: clamp(100px, 13vw, 170px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro h2 {
  font-size: clamp(44px, 8vw, var(--contact-title-size));
}

.contact-intro > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.contact-intro > a {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid var(--rose);
  font-weight: 600;
}

.contact-form {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(251, 250, 247, 0.75);
  box-shadow: 0 30px 70px rgba(73, 62, 53, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label,
.contact-form fieldset {
  display: block;
  margin: 0 0 22px;
}

.contact-form label > span,
.contact-form legend {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
}

.contact-form small {
  color: var(--muted);
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  transition: border 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose-deep);
}

.contact-form textarea {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  resize: vertical;
}

.contact-form fieldset {
  padding: 0;
  border: 0;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.interest-option {
  position: relative;
}

.interest-option input {
  position: absolute;
  opacity: 0;
}

.interest-option span {
  display: flex !important;
  align-items: center;
  min-height: 43px;
  margin: 0 !important;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500 !important;
  transition: border 0.2s ease, background 0.2s ease;
}

.interest-option input:checked + span {
  border-color: var(--rose);
  background: var(--rose-soft);
}

.form-submit {
  width: 100%;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
}

.form-status.success {
  color: #337255;
}

.form-status.error {
  color: #aa3f48;
}

.launch-experience {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(32px, 5vw, 60px);
  border-radius: 0;
  color: white;
  background:
    radial-gradient(circle at 50% 30%, rgba(216, 137, 167, 0.3), transparent 31%),
    radial-gradient(circle at 15% 80%, rgba(142, 128, 197, 0.3), transparent 26%),
    linear-gradient(145deg, #29252f, #3b2935 56%, #252932);
  opacity: 0;
  place-items: end center;
  text-align: center;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.launch-experience[hidden] {
  display: none;
}

.contact-form.is-launching .launch-experience {
  opacity: 1;
  transform: none;
}

.launch-stars {
  position: absolute;
  inset: 0;
}

.launch-stars i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px white;
  animation: starTwinkle 1.8s ease-in-out infinite alternate;
}

.launch-stars i:nth-child(1) { top: 12%; left: 13%; animation-delay: .2s; }
.launch-stars i:nth-child(2) { top: 20%; right: 16%; animation-delay: .8s; }
.launch-stars i:nth-child(3) { top: 43%; left: 8%; animation-delay: 1.2s; }
.launch-stars i:nth-child(4) { top: 48%; right: 10%; animation-delay: .4s; }
.launch-stars i:nth-child(5) { top: 66%; left: 21%; animation-delay: 1.5s; }
.launch-stars i:nth-child(6) { top: 70%; right: 23%; animation-delay: .9s; }

@keyframes starTwinkle {
  to { opacity: 0.25; transform: scale(0.55); }
}

.launch-orbit {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(68%, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.launch-orbit::before,
.launch-orbit::after {
  position: absolute;
  border: 1px solid rgba(216, 137, 167, 0.25);
  border-radius: 50%;
  content: "";
}

.launch-orbit::before { inset: 13%; }
.launch-orbit::after { inset: 29%; }

.launch-rocket-wrap {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: 50%;
  width: 94px;
  transform: translate(-50%, -50%);
  animation: rocketIdle 1.5s ease-in-out infinite alternate;
}

@keyframes rocketIdle {
  to { transform: translate(-50%, calc(-50% - 9px)) rotate(1deg); }
}

.launch-rocket {
  display: block;
  width: 100%;
  overflow: visible;
  filter: drop-shadow(0 17px 24px rgba(0, 0, 0, 0.23));
}

.rocket-body {
  fill: #fbfaf7;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
}

.rocket-window {
  fill: #8e80c5;
  stroke: #d9d4ef;
  stroke-width: 5;
}

.rocket-fin {
  fill: var(--rose);
  stroke: var(--rose-soft);
  stroke-linejoin: round;
  stroke-width: 2;
}

.rocket-flame {
  transform-box: fill-box;
  transform-origin: top center;
  animation: flamePulse 0.22s ease-in-out infinite alternate;
}

.rocket-flame-outer { fill: #f3a35e; }
.rocket-flame-inner { fill: #ffe29b; animation-delay: .1s; }

@keyframes flamePulse {
  to { transform: scaleY(0.72) scaleX(1.12); }
}

.contact-form.is-launched .launch-rocket-wrap {
  animation: rocketLaunch 1.8s cubic-bezier(0.48, 0.03, 0.78, 0.35) forwards;
}

@keyframes rocketLaunch {
  0% { transform: translate(-50%, -50%); }
  22% { transform: translate(-50%, calc(-50% + 16px)) rotate(-2deg); }
  100% { transform: translate(-43%, -120vh) rotate(5deg); }
}

.launch-success-mark {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 50%;
  display: grid;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(216, 137, 167, 0.94), rgba(142, 128, 197, 0.94));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.45) rotate(-18deg);
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.2, 0.9, 0.2, 1.2);
}

.launch-success-mark svg {
  width: 56px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.contact-form.is-complete .launch-success-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.launch-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 520px);
}

.launch-copy .eyebrow {
  color: #efabc5;
}

.launch-copy h3 {
  margin: 0;
  font: 500 clamp(38px, 5vw, 58px)/0.98 var(--serif);
  letter-spacing: -0.035em;
}

.launch-copy > p:not(.eyebrow) {
  margin: 18px auto 24px;
  color: rgba(255, 255, 255, 0.7);
}

.launch-copy .button {
  margin: 0 auto;
}

.honeypot {
  position: absolute !important;
  left: -10000px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  min-height: 210px;
  padding: 55px max(32px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  gap: 65px;
}

.site-footer > div p,
.site-footer > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 11px;
  gap: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.7, 0, 1),
    transform 0.85s cubic-bezier(0.2, 0.7, 0, 1);
}

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

.service-card.reveal:nth-child(2),
.testimonial-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.service-card.reveal:nth-child(3),
.testimonial-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.service-card.reveal:nth-child(4),
.testimonial-card.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 760px); }

  .site-header {
    min-height: 76px;
    padding-inline: 20px;
  }

  .menu-toggle {
    z-index: 102;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
    font: 500 40px/1.1 var(--serif);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .linkedin-button {
    font: 700 13px/1 var(--sans);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 75px 120px;
  }

  .hero-visual {
    width: min(90%, 520px);
    justify-self: center;
  }

  .hero-tags span:nth-child(1) { left: -5%; }
  .hero-tags span:nth-child(2) { right: -4%; }
  .hero-tags span:nth-child(3) { left: -3%; }

  .display-title {
    max-width: 760px;
  }

  .scroll-cue { left: 20px; }

  .services-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-roadmap {
    min-height: 0;
    padding-left: 34px;
  }

  .journey-roadmap::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background: linear-gradient(var(--rose), #8e80c5);
    content: "";
    opacity: 0.48;
  }

  .journey-path {
    display: none;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 20px;
  }

  .journey-card,
  .journey-card:nth-child(even) {
    min-height: 0;
    margin-top: 0;
  }

  .journey-node {
    top: 34px;
    left: -39px;
    transform: none;
  }

  .editorial-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .contact-intro {
    position: static;
  }

  .about-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 30px;
  }

  .about-heading .eyebrow,
  .about-heading h2 {
    grid-column: 1;
  }

  .brand-compass {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 220px;
    height: 220px;
    margin: 0 18px 0 0;
  }

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

  .speaking-copy {
    max-width: 650px;
  }

  .testimonial-heading {
    grid-template-columns: 1fr;
  }

  .testimonial-heading > p:last-child {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); }

  .display-title { font-size: clamp(52px, 17vw, var(--hero-mobile-title-size)); }
  h2 { font-size: clamp(45px, 14vw, 62px); }

  .hero {
    gap: 66px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-proof {
    margin-top: 35px;
  }

  .portrait-frame::before {
    top: -13px;
    right: -10px;
  }

  .hero-tags span {
    padding: 6px 9px;
    font-size: 7px;
  }

  .hero-tags span:nth-child(1) { top: 10%; left: -2%; }
  .hero-tags span:nth-child(2) { top: 49%; right: -2%; }
  .hero-tags span:nth-child(3) { bottom: 8%; left: 1%; }

  .editorial-grid {
    gap: 50px;
  }

  .about-heading {
    grid-template-columns: 1fr;
  }

  .about-heading .eyebrow,
  .about-heading h2,
  .brand-compass {
    grid-column: 1;
    grid-row: auto;
  }

  .brand-compass {
    width: 205px;
    height: 205px;
    margin: 24px auto 4px;
  }

  .compass-core {
    width: 102px;
    height: 102px;
  }

  .about-point {
    grid-template-columns: 32px 1fr;
    padding: 20px 18px;
    gap: 10px;
  }

  .about-point p {
    font-size: 15px;
  }

  .about-signature {
    padding: 24px 22px;
  }

  .testimonial-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .testimonial-card:nth-child(even) {
    min-height: 0;
    transform: none;
  }

  .testimonial-card:nth-child(even):hover {
    transform: translateY(-6px);
  }

  .metric-row {
    gap: 10px;
  }

  .metric-row strong {
    font-size: 28px;
  }

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

  .launch-experience {
    padding: 28px 22px;
  }

  .launch-orbit {
    width: 280px;
  }

  .launch-rocket-wrap {
    width: 78px;
  }

  .launch-success-mark {
    width: 94px;
    height: 94px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

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