:root {
  --bg: #f7efe2;
  --surface: #ffffff;
  --soft: #e7dfcf;
  --ink: #183f43;
  --muted: #5f7171;
  --line: #d9cfc0;
  --green: #2f6265;
  --green-2: #244e52;
  --clay: #c8755c;
  --peach: #e7a37b;
  --sand: #f1d7a8;
  --sage: #9fb5a8;
  --focus: #c8755c;
  --shadow: 0 22px 60px rgba(24, 63, 67, 0.13);
  --radius: 8px;
  --max: 1120px;
  --header: 92px;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 24px); }
html.motion-ready { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 20;
  background: transparent;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-header.is-hidden {
  transform: translateY(calc(-100% - 4px));
}
.site-header.scrolled .header__inner {
  min-height: 60px;
  padding: 6px 10px 6px 16px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 226, 0.9)),
    radial-gradient(circle at 10% 0%, rgba(241, 215, 168, 0.32), transparent 34%);
  box-shadow: 0 14px 38px rgba(24, 63, 67, 0.18);
}
.site-header.scrolled .brand__meta {
  opacity: 0;
  max-height: 0;
  transition: opacity 220ms ease, max-height 220ms ease;
}
.brand__meta { transition: opacity 220ms ease, max-height 220ms ease; max-height: 1.4em; }

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clay), var(--green));
  transition: width 120ms linear;
}
.header-peek {
  position: fixed;
  top: 96px;
  right: max(18px, calc((100vw - var(--max)) / 2));
  z-index: 21;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 239, 226, 0.94);
  box-shadow: 0 12px 28px rgba(24, 63, 67, 0.12);
  cursor: pointer;
  transition: top 260ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 180ms ease, background 180ms ease;
}
.header-peek:hover { transform: translateY(-2px); background: var(--surface); }
.header-peek span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms ease;
}
.header-peek.is-collapsed {
  top: 12px;
}
.header-peek.is-collapsed span {
  transform: translateY(2px) rotate(225deg);
}
.header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(217, 207, 192, 0.78);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(247, 239, 226, 0.78)),
    radial-gradient(circle at 10% 0%, rgba(241, 215, 168, 0.28), transparent 34%);
  box-shadow: 0 18px 46px rgba(24, 63, 67, 0.13);
  backdrop-filter: blur(18px);
  padding: 10px 12px 10px 18px;
}
.brand { position: relative; display: grid; gap: 2px; min-width: max-content; padding-left: 13px; }
.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--clay), var(--green));
}
.brand__name { font-family: var(--font-serif); font-size: 1.24rem; font-weight: 600; }
.brand__meta { color: var(--muted); font-size: 0.76rem; }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 11px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(47, 98, 101, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}
.nav-cta {
  color: var(--surface) !important;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(47, 98, 101, 0.22);
  padding: 13px 20px !important;
}
.nav-cta:hover { background: var(--green-2) !important; color: var(--surface) !important; }

.language-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
}
.language-switch__button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 9px;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.language-switch__button.active {
  background: var(--ink);
  box-shadow: 0 5px 14px rgba(24, 63, 67, 0.16);
  color: var(--surface);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  place-items: center;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 2px 0;
}

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header) + 90px) 0 52px;
  color: var(--surface);
  background: #202320;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image: url("assets/studio.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroPan 18s ease-out both;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 63, 67, 0.86), rgba(36, 78, 82, 0.54) 58%, rgba(200, 117, 92, 0.22));
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.hero__content > .eyebrow,
.hero__content > h1,
.hero__content > .hero__lead,
.hero__content > .hero__actions,
.hero__signals div {
  animation: heroIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__content > h1 {
  animation: heroTitleIn 920ms cubic-bezier(0.2, 0.8, 0.2, 1) 90ms both;
  clip-path: inset(0 0 0 0);
}
.hero__content > .hero__lead { animation-delay: 180ms; }
.hero__content > .hero__actions { animation-delay: 270ms; }
.hero__signals div:nth-child(1) { animation-delay: 380ms; }
.hero__signals div:nth-child(2) { animation-delay: 470ms; }
.hero__signals div:nth-child(3) { animation-delay: 560ms; }

.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f8d5bd; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 10ch; margin-bottom: 18px; font-size: clamp(4rem, 12vw, 8.8rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { color: var(--muted); }
.hero__lead {
  max-width: 62ch;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.button {
  --hover-x: 0px;
  --hover-y: 0px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  padding: 12px 20px;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translate3d(var(--hover-x), var(--hover-y), 0) scale(var(--btn-scale, 1));
}
.button:hover {
  box-shadow: 0 12px 26px rgba(24, 63, 67, 0.18);
  transform: translate3d(var(--hover-x), calc(var(--hover-y) - 2px), 0) scale(var(--btn-scale, 1));
}
.button--primary { background: var(--green); color: var(--surface); }
.button--primary:hover {
  background: var(--green-2);
  box-shadow: 0 14px 30px rgba(47, 98, 101, 0.34), 0 0 0 4px rgba(47, 98, 101, 0.12);
}
.button--secondary { border-color: rgba(255, 255, 255, 0.55); color: var(--surface); }
.button--secondary:hover { background: rgba(255, 255, 255, 0.12); }
.button--quiet { border-color: rgba(24, 63, 67, 0.22); color: var(--ink); background: rgba(255, 255, 255, 0.42); }
.button--quiet:hover { background: rgba(255, 255, 255, 0.7); border-color: rgba(24, 63, 67, 0.36); }

.hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 850px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}
.hero__signals div { padding: 18px; background: rgba(255, 255, 255, 0.08); }
.hero__signals dt { font-weight: 800; }
.hero__signals dd { margin: 4px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 0.88rem; }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section--soft { background: var(--soft); }
.intro-band { padding: 44px 0; background: var(--ink); }

.intro-band, .book-section { position: relative; overflow: hidden; }
.intro-band > .container, .book-section > .container { position: relative; z-index: 1; }
.intro-band::after, .book-section::after {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 30%, rgba(231, 163, 123, 0.2), transparent 42%),
    radial-gradient(circle at 72% 70%, rgba(159, 181, 168, 0.16), transparent 45%);
  transform: translate3d(0, var(--blob-shift, 0px), 0);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}
/* When the motion layer is active it drives drift via scroll parallax,
   so the looping keyframe animation is disabled to avoid conflicts. */
html.lenis .intro-band::after,
html.lenis .book-section::after { animation: none; }

@keyframes ambientDrift {
  from { transform: translate3d(-4%, -2%, 0) rotate(0deg); }
  to { transform: translate3d(4%, 3%, 0) rotate(4deg); }
}
.intro-band__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: start;
}
.intro-band h2 {
  max-width: 860px;
  margin-bottom: 16px;
  color: var(--surface);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}
.intro-band p:not(.section-kicker) { max-width: 78ch; color: rgba(255, 255, 255, 0.72); }

.pathfinder-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(231, 163, 123, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 100%);
}
.pathfinder-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.08fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}
.pathfinder-copy {
  align-self: center;
}
.pathfinder-copy h2 { margin-bottom: 14px; }
.pathfinder-options {
  display: grid;
  gap: 12px;
}
.pathfinder-option {
  --hover-x: 0px;
  --hover-y: 0px;
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 112px;
  border: 1px solid rgba(24, 63, 67, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  padding: 18px;
  text-align: left;
  transform: translate3d(var(--hover-x), var(--hover-y), 0);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pathfinder-option::after {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 0 6px rgba(47, 98, 101, 0.05);
  transition: background 200ms ease, transform 200ms ease;
}
.pathfinder-option span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pathfinder-option strong {
  max-width: 24ch;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.2;
}
.pathfinder-option:hover,
.pathfinder-option:focus-visible,
.pathfinder-option.is-selected {
  border-color: rgba(47, 98, 101, 0.34);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(24, 63, 67, 0.1);
  transform: translate3d(calc(var(--hover-x) + 4px), var(--hover-y), 0);
}
.pathfinder-option.is-selected::after {
  background: var(--green);
  transform: scale(1.2);
}
.pathfinder-result {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(47, 98, 101, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(47, 98, 101, 0.12), rgba(241, 215, 168, 0.32)),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 32px);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.pathfinder-result::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 150px;
  height: 150px;
  border-radius: 42% 58% 48% 52%;
  background: rgba(200, 117, 92, 0.2);
}
.pathfinder-result__label {
  position: relative;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pathfinder-result h3,
.pathfinder-result p,
.pathfinder-result ul,
.pathfinder-result a { position: relative; }
.pathfinder-result h3 { margin-bottom: 10px; }
.pathfinder-result__list {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}
.pathfinder-result__list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 700;
}
.pathfinder-result__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 12px;
  height: 2px;
  background: var(--green);
}
.pathfinder-result__cta { margin-top: auto; width: max-content; }
.pathfinder-result.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 78px);
  align-items: center;
}
.profile-visual { position: relative; }
.profile-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.profile-visual__note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  border-radius: var(--radius);
  background: rgba(247, 239, 226, 0.94);
  box-shadow: 0 16px 40px rgba(24, 63, 67, 0.16);
  padding: 18px;
}
.profile-visual__note span {
  display: block;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.profile-visual__note strong { display: block; line-height: 1.35; }
.copy-block p { font-size: 1.02rem; }
.credential-list { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.credential-list li { position: relative; padding-left: 28px; color: var(--ink); font-weight: 650; }
.credential-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--clay);
}
.trust-snapshot {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid rgba(47, 98, 101, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(241, 215, 168, 0.22));
  padding: 18px;
}
.trust-snapshot__mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, var(--green), var(--clay));
  color: var(--surface);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 650;
}
.trust-snapshot p:first-child {
  margin-bottom: 2px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-snapshot h3 {
  margin-bottom: 4px;
  font-size: 1.25rem;
}
.trust-snapshot p:last-child {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading p:not(.section-kicker) { font-size: 1.05rem; }
.process-grid, .service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.process-step, .service-card, .price-panel, .contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.process-step { min-height: 390px; padding: 26px; }
.process-step {
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease, border-color 300ms ease;
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(241, 215, 168, 0.38) 42%, transparent 70%);
  opacity: 0;
  transform: translateX(-80%);
}
.process-step.is-active,
.process-step:hover,
.process-step:focus-within {
  border-color: rgba(200, 117, 92, 0.4);
  box-shadow: 0 22px 52px rgba(24, 63, 67, 0.12);
  transform: translateY(-8px);
}
.process-step.is-active::before,
.process-step:hover::before {
  animation: cardSweep 1500ms ease both;
  opacity: 1;
}
.process-step span { position: relative; z-index: 1; display: inline-flex; margin-bottom: 18px; color: var(--clay); font-weight: 800; }
.process-step h3,
.process-step p { position: relative; z-index: 1; }

.process-visual {
  position: relative;
  z-index: 1;
  height: 116px;
  margin: 0 0 26px;
  border: 1px solid rgba(47, 98, 101, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 239, 226, 0.5);
  overflow: hidden;
}

.process-visual--map {
  background:
    linear-gradient(90deg, rgba(47, 98, 101, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(47, 98, 101, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(255, 250, 240, 0.72);
}

.process-visual--map::before,
.process-visual--map::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
}
.process-visual--map::before {
  left: 43px;
  top: 66px;
  width: calc(48% - 36px);
  transform: rotate(-9deg);
}
.process-visual--map::after {
  left: calc(48% + 17px);
  top: 48px;
  width: calc(52% - 55px);
  transform: rotate(8deg);
}

.process-visual--map i {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--clay);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.process-visual--map i:nth-child(1) { left: 28px; top: 62px; }
.process-visual--map i:nth-child(2) { left: 48%; top: 32px; border-color: var(--green); }
.process-visual--map i:nth-child(3) { right: 28px; top: 54px; }

.process-visual--workable {
  background:
    linear-gradient(90deg, rgba(47, 98, 101, 0.06) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(47, 98, 101, 0.06) 1px, transparent 1px) 0 0 / 38px 38px,
    rgba(255, 250, 240, 0.74);
}
.process-visual--workable::before {
  content: "";
  position: absolute;
  left: 18%;
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
  border: 4px solid var(--green);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 7px rgba(47, 98, 101, 0.08);
}
.process-visual--workable::after {
  content: "";
  position: absolute;
  left: calc(18% + 30px);
  right: 20%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(47, 98, 101, 0.18));
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.process-visual--workable i {
  position: absolute;
  display: block;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 260ms ease;
}
.process-visual--workable i:nth-child(1) {
  left: calc(64% - 28px);
  top: calc(50% - 18px);
  width: 56px;
  height: 36px;
  border-radius: 10px;
  background: var(--sand);
  border: 3px solid rgba(47, 98, 101, 0.24);
  transform: translateX(22px);
}
.process-visual--workable i:nth-child(2),
.process-visual--workable i:nth-child(3) {
  left: calc(64% - 42px);
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  transform: translateX(22px);
}
.process-visual--workable i:nth-child(2) { top: calc(50% - 9px); }
.process-visual--workable i:nth-child(3) { top: calc(50% + 7px); }
.process-visual--workable i:nth-child(4) {
  left: calc(18% + 6px);
  top: calc(50% - 5px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clay);
  opacity: 0;
  transform: scale(0.4);
}

.process-visual--build::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 23px;
  width: 4px;
  height: 70px;
  border-radius: 999px;
  background: var(--green);
  transform: translateX(-50%);
}

.process-visual--build i {
  position: absolute;
  left: 50%;
  height: 16px;
  border-radius: 999px;
  background: var(--sand);
  border: 2px solid rgba(24, 63, 67, 0.18);
  box-shadow: 0 8px 18px rgba(24, 63, 67, 0.08);
  transform: translateX(calc(-50% - 94px)) translateY(-4px) rotate(-5deg);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-visual--build i:nth-child(1) { width: 102px; bottom: 24px; background: var(--green); }
.process-visual--build i:nth-child(2) { width: 78px; bottom: 44px; background: var(--sage); transition-delay: 80ms; }
.process-visual--build i:nth-child(3) { width: 54px; bottom: 64px; background: var(--peach); transition-delay: 160ms; }
.process-visual--build i:nth-child(4) { width: 30px; bottom: 84px; background: var(--sand); transition-delay: 240ms; }

.process-step.is-active .process-visual--map::before,
.process-step:hover .process-visual--map::before {
  transform: rotate(-9deg) translateY(-1px);
  filter: drop-shadow(0 3px 6px rgba(47, 98, 101, 0.18));
}
.process-step.is-active .process-visual--map::after,
.process-step:hover .process-visual--map::after {
  transform: rotate(8deg) translateY(-1px);
  filter: drop-shadow(0 3px 6px rgba(47, 98, 101, 0.18));
}
.process-step.is-active .process-visual--map i,
.process-step:hover .process-visual--map i {
  transform: rotate(-45deg) translate(1px, -1px) scale(1.05);
}

.process-step.is-active .process-visual--workable::after,
.process-step:hover .process-visual--workable::after {
  transform: scaleX(1);
}
.process-step.is-active .process-visual--workable i:nth-child(1),
.process-step:hover .process-visual--workable i:nth-child(1),
.process-step.is-active .process-visual--workable i:nth-child(2),
.process-step:hover .process-visual--workable i:nth-child(2),
.process-step.is-active .process-visual--workable i:nth-child(3),
.process-step:hover .process-visual--workable i:nth-child(3) {
  transform: translateX(-42px);
}
.process-step.is-active .process-visual--workable i:nth-child(4),
.process-step:hover .process-visual--workable i:nth-child(4) {
  opacity: 1;
  transform: scale(1);
}

.process-step.is-active .process-visual--build i:nth-child(1),
.process-step:hover .process-visual--build i:nth-child(1) { transform: translateX(-50%) translateY(0); }
.process-step.is-active .process-visual--build i:nth-child(2),
.process-step:hover .process-visual--build i:nth-child(2) { transform: translateX(-50%) translateY(-2px); }
.process-step.is-active .process-visual--build i:nth-child(3),
.process-step:hover .process-visual--build i:nth-child(3) { transform: translateX(-50%) translateY(-4px); }
.process-step.is-active .process-visual--build i:nth-child(4),
.process-step:hover .process-visual--build i:nth-child(4) { transform: translateX(-50%) translateY(-6px); }
.service-card {
  --service-glow: rgba(200, 117, 92, 0.18);
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--service-glow), transparent 68%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 220ms ease, transform 220ms ease;
}
.service-card:hover,
.service-card.is-selected {
  border-color: rgba(47, 98, 101, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.service-card:hover::before,
.service-card.is-selected::before {
  opacity: 1;
  transform: scale(1);
}
.service-card__label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-card a { margin-top: auto; color: var(--green); font-weight: 800; }
.service-card__more {
  position: relative;
  z-index: 1;
  width: max-content;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 98, 101, 0.1);
  color: var(--green-2);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: 14px;
  padding: 8px 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.service-card__more:hover { background: var(--green); color: var(--surface); transform: translateX(3px); }
.service-card h3,
.service-card p,
.service-card a { position: relative; z-index: 1; }

.service-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(47, 98, 101, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47, 98, 101, 0.1), rgba(241, 215, 168, 0.28));
  box-shadow: 0 18px 48px rgba(24, 63, 67, 0.08);
  padding: clamp(22px, 4vw, 32px);
  transition: transform 260ms ease, opacity 260ms ease;
}
.service-panel[hidden] {
  display: none;
}
.service-panel.is-changing {
  opacity: 0;
  transform: translateY(10px);
}
.service-panel__label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-panel h3 { margin-bottom: 10px; }
.service-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.service-panel__list li {
  border: 1px solid rgba(47, 98, 101, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 11px;
}
.service-panel__visual {
  position: relative;
  min-height: 170px;
}
.service-panel__visual span {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(24, 63, 67, 0.12);
}
.service-panel__visual span:nth-child(1) {
  inset: 16px 48px 34px 16px;
  background: var(--green);
}
.service-panel__visual span:nth-child(2) {
  inset: 42px 16px 18px 76px;
  background: var(--sand);
}
.service-panel__visual span:nth-child(3) {
  width: 74px;
  height: 74px;
  right: 30px;
  top: 18px;
  border-radius: 50%;
  background: var(--clay);
  animation: softOrbit 7s ease-in-out infinite alternate;
}

.cbt-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(231, 163, 123, 0.22), transparent 28%),
    linear-gradient(135deg, #f7efe2 0%, #efe3ce 100%);
}

.cbt-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.cbt-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  perspective: 1000px;
}
.cbt-stack::before {
  content: "";
  position: absolute;
  inset: -18px -14px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(47, 98, 101, 0.12), rgba(241, 215, 168, 0.16)),
    repeating-linear-gradient(90deg, rgba(24, 63, 67, 0.05) 0 1px, transparent 1px 44px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 28px 80px rgba(24, 63, 67, 0.08);
}

.cbt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-shift: 0px;
  position: relative;
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(24, 63, 67, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(24, 63, 67, 0.12);
  color: var(--ink);
  padding: clamp(22px, 4vw, 34px);
  transform: translate3d(0, 0, 0) rotate(var(--stack-r)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 260ms ease, border-color 260ms ease;
  will-change: transform;
}

.cbt-card.is-active,
.cbt-card:hover,
.cbt-card:focus-visible {
  border-color: rgba(200, 117, 92, 0.38);
  box-shadow: 0 34px 72px rgba(24, 63, 67, 0.18);
  transform: translateY(-8px) rotate(0deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  z-index: 3;
}

.cbt-card span,
.writing-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cbt-card h3 { margin-bottom: 14px; }
.cbt-card p { margin-bottom: 0; }
.cbt-card--thoughts { --stack-r: -1.4deg; background: #fff8ec; }
.cbt-card--feelings { --stack-r: 1.2deg; background: #f3dec6; }
.cbt-card--actions { --stack-r: -0.8deg; background: #e6eee2; }
.cbt-card--patterns { --stack-r: 1deg; background: #dbe9e8; }

.writing-section {
  background:
    linear-gradient(115deg, rgba(24, 63, 67, 0.94), rgba(47, 98, 101, 0.91)),
    radial-gradient(circle at 78% 0%, rgba(241, 215, 168, 0.38), transparent 34%);
  color: var(--surface);
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 78px);
  align-items: center;
}

.writing-copy p:not(.section-kicker) {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.writing-title {
  max-width: none;
  margin-bottom: 18px;
  color: var(--sand);
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}

.split-letter {
  display: inline-block;
  transform: translateY(0) rotate(0);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), color 300ms ease;
  transition-delay: calc(var(--letter-index) * 28ms);
}

.writing-title:hover .split-letter,
.writing-title:focus-visible .split-letter {
  color: #ffe0c7;
  transform: translateY(-0.12em) rotate(var(--letter-rotate, 0deg));
}

.writing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.writing-cards {
  display: grid;
  gap: 16px;
}

.writing-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: block;
  min-height: 245px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
  padding: clamp(22px, 4vw, 30px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms ease, border-color 220ms ease;
}

.writing-card:nth-child(2) {
  margin-left: clamp(0px, 8vw, 72px);
  background: rgba(241, 215, 168, 0.14);
}
.writing-card:nth-child(3) {
  margin-left: clamp(0px, 4vw, 36px);
  background: rgba(231, 163, 123, 0.13);
}

.writing-card:hover,
.writing-card:focus-visible {
  border-color: rgba(241, 215, 168, 0.5);
  background: rgba(255, 255, 255, 0.14);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-6px);
}

.writing-card h3 {
  color: var(--surface);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.writing-card p { margin-bottom: 0; color: rgba(255, 255, 255, 0.72); }

.writing-card--has-image { padding-top: 0; overflow: hidden; }
.writing-card__cover {
  width: calc(100% + 2px);
  height: 150px;
  margin: -1px -1px clamp(18px, 3vw, 24px);
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.writing-card--has-image:hover .writing-card__cover,
.writing-card--has-image:focus-visible .writing-card__cover {
  transform: scale(1.04);
}
.writing-card--live h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

.pricing-section { background: var(--sand); }
.pricing-layout { display: grid; grid-template-columns: 1fr 360px; gap: 42px; align-items: center; }
.price-panel { padding: 30px; }
.price-panel p {
  margin-bottom: 8px;
  color: var(--clay);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-panel strong { display: block; font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; }
.price-amount {
  position: relative;
  width: max-content;
  margin-bottom: 28px;
}
.price-amount::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clay), var(--green));
  transform: scaleX(0);
  transform-origin: left;
}
.price-panel.is-visible .price-amount::after {
  animation: priceUnderline 920ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.price-panel span, .price-panel small { display: block; color: var(--muted); }
.price-amount span { display: inline; color: var(--ink); }
.price-amount + span { margin-top: 18px; }
.price-panel small { margin-top: 18px; }

.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: 42px; }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0 20px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
details[open] {
  border-color: rgba(49, 95, 79, 0.36);
  box-shadow: 0 14px 32px rgba(32, 35, 32, 0.08);
}
summary {
  cursor: pointer;
  font-weight: 800;
  padding: 18px 0;
}
details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 280ms ease, content-visibility 280ms ease allow-discrete;
}
details[open]::details-content {
  block-size: auto;
}
details p {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 220ms ease;
}
details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.first-call-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(159, 181, 168, 0.22), transparent 30%),
    linear-gradient(180deg, var(--bg), #fffaf0);
}
.first-call-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}
.first-call-copy p:not(.section-kicker) {
  max-width: 62ch;
  font-size: 1.05rem;
}
.first-call-steps {
  counter-reset: callStep;
  display: grid;
  gap: 14px;
}
.first-call-card {
  --hover-x: 0px;
  --hover-y: 0px;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(24, 63, 67, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(24, 63, 67, 0.07);
  padding: 20px;
  transform: translate3d(var(--hover-x), var(--hover-y), 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.first-call-card::before {
  content: "";
  position: absolute;
  left: 51px;
  top: 78px;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(var(--line), transparent);
}
.first-call-card:last-child::before { display: none; }
.first-call-card span {
  grid-row: 1 / span 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 98, 101, 0.1);
  color: var(--green);
  font-weight: 850;
}
.first-call-card h3 { grid-column: 2; margin-bottom: 4px; font-size: 1.35rem; }
.first-call-card p { grid-column: 2; margin-bottom: 0; }
.first-call-card:hover,
.first-call-card:focus-within {
  border-color: rgba(200, 117, 92, 0.35);
  box-shadow: 0 22px 54px rgba(24, 63, 67, 0.12);
  transform: translate3d(calc(var(--hover-x) + 4px), var(--hover-y), 0);
}

.book-section { background: var(--ink); color: var(--surface); }
.book-section p { color: rgba(255, 255, 255, 0.72); }
.book-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}
.book-copy h2 { color: var(--surface); }
.booking-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.booking-card {
  --hover-x: 0px;
  --hover-y: 0px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--surface);
  padding: 18px;
  transform: translate3d(var(--hover-x), var(--hover-y), 0);
  transition: background 180ms ease, border-color 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.booking-card span {
  color: #f8d5bd;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-card strong {
  color: var(--surface);
  font-size: 1.2rem;
}
.booking-card small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.booking-card--primary {
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}
.booking-card:hover,
.booking-card:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translate3d(calc(var(--hover-x) + 4px), var(--hover-y), 0);
}
.booking-card--primary:hover,
.booking-card--primary:focus-visible {
  background: #347174;
}
.booking-flow {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}
.booking-flow h3 {
  color: var(--surface);
  font-size: 1.2rem;
}
.booking-flow ol {
  display: grid;
  gap: 12px;
  list-style: none;
  counter-reset: none;
}
.booking-flow li {
  display: grid;
  gap: 3px;
}
.booking-flow strong {
  color: var(--surface);
}
.booking-flow span,
.booking-flow p {
  color: rgba(255, 255, 255, 0.72);
}
.contact-options { display: grid; gap: 10px; margin-top: 28px; }
.contact-option {
  --hover-x: 0px;
  --hover-y: 0px;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--surface);
  font-weight: 800;
  padding: 14px 16px;
  transition: background 180ms ease, border-color 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translate3d(var(--hover-x), var(--hover-y), 0);
}
.contact-option::after { content: ">"; color: #f8d5bd; }
.contact-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translate3d(calc(var(--hover-x) + 4px), var(--hover-y), 0);
}
.contact-form { display: grid; gap: 16px; padding: clamp(22px, 4vw, 34px); color: var(--ink); }
.field { display: grid; gap: 7px; }
.field label { font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--ink);
  padding: 12px 13px;
}
.field textarea { min-height: 130px; resize: vertical; }
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
}
.consent input { margin-top: 4px; }
.form-submit { width: 100%; }
.form-note { margin-bottom: 0; color: var(--muted) !important; font-size: 0.86rem; text-align: center; }

.site-footer { background: #123236; color: rgba(255, 255, 255, 0.78); padding: 34px 0; }
.footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.site-footer p { margin: 4px 0 0; color: rgba(255, 255, 255, 0.58); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-nav a { color: rgba(255, 255, 255, 0.72); font-weight: 700; }
.footer-small { display: grid; gap: 4px; font-size: 0.82rem; text-align: right; }

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal--fade {
  transform: none;
}

.motion-ready .reveal--soft {
  transform: translateY(16px) scale(0.985);
}

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

.motion-ready .cbt-card.reveal {
  opacity: 0;
  transform: translateY(38px) rotate(calc(var(--stack-r) * 5)) scale(0.9);
}

.motion-ready .cbt-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--stack-r)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1);
}

.motion-ready .cbt-card.reveal.is-visible.is-active {
  transform: translateY(-8px) rotate(0deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(40px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroPan {
  from {
    transform: scale(1.06) translate3d(-1.5%, 1%, 0);
  }
  to {
    transform: scale(1.015) translate3d(1%, -1%, 0);
  }
}

@keyframes cardSweep {
  0% { transform: translateX(-90%); }
  100% { transform: translateX(90%); }
}

@keyframes processPulse {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  42% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes softOrbit {
  from { transform: translate3d(-8px, 6px, 0) scale(0.96); }
  to { transform: translate3d(8px, -8px, 0) scale(1.04); }
}

@keyframes priceUnderline {
  to { transform: scaleX(1); }
}

@media (max-width: 920px) {
  .nav-toggle { display: grid; }
  .site-nav {
    position: fixed;
    inset: var(--header) 16px auto;
    display: none;
    max-height: calc(100svh - var(--header) - 24px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
  }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-cta { padding: 11px 10px; }
  .language-switch { width: max-content; }
  .header-peek {
    right: 18px;
  }
  .hero { min-height: 88svh; }
  .hero__content { margin-left: auto; }
  .hero__signals,
  .intro-band__grid,
  .pathfinder-layout,
  .split,
  .process-grid,
  .service-grid,
  .cbt-layout,
  .writing-layout,
  .pricing-layout,
  .faq-layout,
  .first-call-layout,
  .book-layout,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .pathfinder-result__cta { width: 100%; }
  .cbt-stack {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 14px;
  }
  .cbt-stack::before { display: none; }
  .cbt-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    transform: none;
  }
  .cbt-card.is-active {
    transform: none;
  }
  .cbt-card--thoughts,
  .cbt-card--feelings,
  .cbt-card--actions,
  .cbt-card--patterns {
    top: auto;
    left: auto;
    right: auto;
  }
  .motion-ready .cbt-card.reveal,
  .motion-ready .cbt-card.reveal.is-visible,
  .motion-ready .cbt-card.reveal.is-visible.is-active {
    transform: translateY(0) scale(1);
  }
  .service-panel {
    grid-template-columns: 1fr;
  }
  .service-panel__visual {
    min-height: 110px;
  }
  .writing-card:nth-child(2),
  .writing-card:nth-child(3) { margin-left: 0; }
  .footer-small { text-align: left; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding-bottom: 28px; }
  .hero::before { background-position: 58% center; }
  .hero__overlay { background: rgba(20, 24, 22, 0.74); }
  h1 { font-size: clamp(3.3rem, 18vw, 5.8rem); }
  .hero__actions { display: grid; }
  .writing-actions { display: grid; }
  .button { width: 100%; }
  .hero__signals div { padding: 15px; }
  .profile-visual__note { position: static; width: 100%; margin-top: 12px; }
  .trust-snapshot,
  .first-call-card {
    grid-template-columns: 1fr;
  }
  .first-call-card span,
  .first-call-card h3,
  .first-call-card p {
    grid-column: auto;
  }
  .first-call-card::before { display: none; }
  .pathfinder-option strong { max-width: none; }
  .section { padding: 64px 0; }
  .writing-title { font-size: clamp(3rem, 17vw, 5.2rem); }
}

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

  .hero::before {
    animation: none !important;
    transform: none;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .cbt-card,
  .writing-card,
  .pathfinder-option,
  .first-call-card,
  .booking-card,
  .button,
  .contact-option {
    transform: none !important;
  }

  .split-letter {
    transform: none !important;
  }

  .price-panel.is-visible .price-amount::after {
    transform: scaleX(1);
  }
}

/* ============================================================
   Portrait-led hero + editorial direction (promoted from preview)
   ============================================================ */
.hero--portrait {
  display: block;
  min-height: auto;
  overflow: visible;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(231, 163, 123, 0.18), transparent 40%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 100%);
  padding: calc(var(--header) + 64px) 0 84px;
}
.hero--portrait::before { content: none; }

.hero--portrait__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}
.hero--portrait__copy { margin-left: 0; max-width: none; }

/* Centered, text-only hero (portrait moved to About) */
.hero--centered { text-align: center; }
.hero--centered__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero--centered .hero--portrait__copy { max-width: 920px; }
.hero--centered h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.hero--centered .hero__lead { margin-left: auto; margin-right: auto; }
.hero--centered .hero__actions { justify-content: center; }
.hero--centered .hero__signals { margin-left: auto; margin-right: auto; }

.hero--portrait .eyebrow { color: var(--clay); }
.hero--portrait h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  max-width: 14ch;
}
.hero--portrait .hero__lead { color: var(--muted); max-width: 52ch; }

.hero-title-accent { position: relative; display: inline; }
.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: -4px;
  bottom: -0.22em;
  height: 0.34em;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 16' preserveAspectRatio='none'%3E%3Cpath d='M2 11 C 45 3, 70 15, 110 8 S 190 2, 230 10 S 292 13, 298 7' fill='none' stroke='%23c8755c' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  animation: underlineDraw 760ms 640ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes underlineDraw {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

.hero--portrait .hero__signals {
  border-color: rgba(24, 63, 67, 0.14);
  background: rgba(47, 98, 101, 0.08);
  backdrop-filter: none;
}
.hero--portrait .hero__signals div { background: rgba(255, 255, 255, 0.6); }
.hero--portrait .hero__signals dt { color: var(--ink); }
.hero--portrait .hero__signals dd { color: var(--muted); }

.hero-portrait {
  position: relative;
  margin: 0;
  animation: heroIn 760ms 220ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 2px solid var(--clay);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-portrait__frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--green) 0%, var(--green-2) 45%, var(--clay) 100%);
}
.hero-portrait__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-portrait__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(47, 98, 101, 0.22), rgba(200, 117, 92, 0.16));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-portrait__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.hero-portrait__mark {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1;
}
.hero-portrait__hint {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-portrait__cap {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-portrait__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(47, 98, 101, 0.12);
}

/* Testimonials (social proof) */
.testimonials-section { background: var(--surface); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 215, 168, 0.18));
  box-shadow: 0 14px 38px rgba(24, 63, 67, 0.07);
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 117, 92, 0.4);
  box-shadow: var(--shadow);
}
.testimonial-card__stars { color: var(--clay); letter-spacing: 3px; font-size: 0.9rem; }
.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.16rem;
  line-height: 1.42;
  color: var(--ink);
}
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card__avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--clay));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}
.testimonial-card figcaption strong { display: block; color: var(--ink); }
.testimonial-card figcaption small { color: var(--muted); }

/* Newsletter subscribe embed (writing section) */
.writing-subscribe { margin-top: 26px; }
.writing-subscribe__label {
  margin-bottom: 10px;
  color: #f8d5bd;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.writing-subscribe__cta { width: max-content; }

/* Editorial refinement */
h2 { letter-spacing: -0.012em; }

/* Sticky mobile booking CTA */
.sticky-book {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  box-shadow: 0 16px 32px rgba(47, 98, 101, 0.36);
}

@media (max-width: 920px) {
  .hero--portrait__grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 440px; }
  .hero-portrait::before { inset: 14px -14px -14px 14px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sticky-book { display: inline-flex; }
  .book-section { padding-bottom: 96px; }
}

/* ============================================================
   Motion layer (motion.js)
   ============================================================ */
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Phase 1: per-word headline reveals */
.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.reveal-word__inner {
  display: inline-block;
  will-change: transform;
}

/* Phase 4: brand load curtain */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;               /* shown only when JS activates it */
  place-items: center;
  background: var(--ink);
  pointer-events: none;
}
.curtain.is-active { display: grid; }
.curtain__inner {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0;
}
.curtain__name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--surface);
}
.curtain__tag {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.curtain.is-done { display: none !important; }

/* Phase 2: pinned card stack (Maxima-style) */
.process-grid { position: relative; }
.process-dots { display: none; }

.process-grid.is-stack {
  display: block;          /* cards are absolutely stacked by motion.js */
  position: relative;
  height: clamp(380px, 46vh, 460px);
  max-width: 600px;
  margin: 0 auto;
  perspective: 1400px;
}

/* Reset the legacy card chrome; build the Maxima-style solid card */
.process-grid.is-stack .process-step {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: clamp(32px, 5vw, 56px);
  border: 0;
  border-radius: 28px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 40px 90px rgba(24, 63, 67, 0.28);
  overflow: hidden;
  will-change: transform;
}
.process-grid.is-stack .process-step::before { content: none; }

/* Cycle warm brand colours so each reveal feels distinct */
.process-grid.is-stack .process-step:nth-child(1) { background: linear-gradient(155deg, #2f6265, #244e52); }
.process-grid.is-stack .process-step:nth-child(2) { background: linear-gradient(155deg, #c8755c, #b15f49); }
.process-grid.is-stack .process-step:nth-child(3) { background: linear-gradient(155deg, #347174, #2b5e60); }

.process-grid.is-stack .process-step__num {
  display: block;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
}
.process-grid.is-stack .process-step h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}
.process-grid.is-stack .process-step p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.process-grid.is-stack ~ .process-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}
.process-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(47, 98, 101, 0.22);
  transition: background 280ms ease, transform 280ms ease;
}
.process-dots span.is-on {
  background: var(--green);
  transform: scale(1.3);
}
