:root {
  --ink: #143637;
  --ink-soft: #315457;
  --muted: #66797a;
  --line: #d8e1df;
  --paper: #ffffff;
  --mist: #f4f8f7;
  --sage: #dce9e4;
  --green: #064f3f;
  --green-dark: #03372d;
  --blue: #456f89;
  --wood: #b88b61;
  --shadow: 0 18px 45px rgba(13, 37, 38, 0.1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 44px;
  border-bottom: 1px solid rgba(216, 225, 223, 0.82);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(13, 37, 38, 0.06);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(13, 37, 38, 0.09);
}

.brand,
.main-nav,
.header-cta,
.button,
.text-link,
.contact-list a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.02rem;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.91rem;
  font-weight: 500;
}

.main-nav a,
.header-cta {
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.header-cta:hover {
  color: var(--green);
  opacity: 1;
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #27312c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 25, 23, 0.78) 0%, rgba(15, 25, 23, 0.48) 36%, rgba(15, 25, 23, 0.08) 76%),
    url("public/hero-career-coaching.png") center / cover no-repeat;
  transform: scale(1.01);
  animation: heroBreathe 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding-top: 72px;
  color: #fbfffc;
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-family: var(--serif);
  font-size: 5.4rem;
  line-height: 0.96;
  font-weight: 700;
  animation: heroCopyIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(251, 255, 252, 0.9);
  font-size: 1.24rem;
  line-height: 1.72;
  animation: heroCopyIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 240ms both;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
  animation: heroCopyIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 360ms both;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(6, 79, 63, 0.18);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-light {
  color: var(--green);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.scroll-cue span {
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) translate(-1px, -1px);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  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);
  will-change: opacity, transform;
}

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

.section-intro {
  padding-top: 84px;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker,
.section-note {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-note {
  color: var(--muted);
  font-weight: 500;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  line-height: 1.32;
}

p {
  color: var(--ink-soft);
}

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

.audience-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.audience-item:hover {
  border-color: rgba(6, 79, 63, 0.24);
  box-shadow: 0 14px 34px rgba(13, 37, 38, 0.08);
  transform: translateY(-3px);
}

.audience-item svg,
.offer-icon svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-item p,
.process-grid p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.split-copy > p:not(.section-kicker),
.ai-copy > p:not(.section-kicker),
.workbook-copy > p,
.contact-copy > p,
.section-heading > p:not(.section-kicker) {
  max-width: 640px;
  font-size: 1.06rem;
}

.check-list,
.compact-list {
  list-style: none;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.quote-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 43, 36, 0.84)),
    url("public/hero-career-coaching.png") 62% 50% / cover no-repeat;
  box-shadow: var(--shadow);
  color: #ffffff;
  animation: calmLift 6s ease-in-out infinite alternate;
}

.quote-panel p {
  max-width: 480px;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.18;
}

.quote-panel span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.team-section {
  border-top: 1px solid var(--line);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 36px;
}

.team-heading h2 {
  max-width: 760px;
}

.team-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.person-card {
  animation: personCardIn 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--delay);
}

.person-card-button {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  appearance: none;
  background: #ffffff;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.person-card-button:hover,
.person-card-button:focus-visible {
  border-color: rgba(6, 79, 63, 0.28);
  box-shadow: 0 18px 42px rgba(13, 37, 38, 0.12);
  transform: translateY(-4px);
}

.person-card-button:focus-visible {
  outline: 3px solid rgba(6, 79, 63, 0.16);
  outline-offset: 3px;
}

.person-image-frame {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 4.55;
  place-items: end center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.88), transparent 36%),
    linear-gradient(155deg, #e5efeb 0%, #f8fbfa 52%, #d9e8e2 100%);
}

.person-image-frame::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: rgba(6, 79, 63, 0.12);
}

.person-image-frame img {
  position: relative;
  z-index: 1;
  width: 94%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 26px rgba(13, 37, 38, 0.12));
  transform: translateY(10px) scale(1.01);
  transition: transform 240ms ease, filter 240ms ease;
}

.person-card-button:hover .person-image-frame img,
.person-card-button:focus-visible .person-image-frame img {
  filter: drop-shadow(0 30px 30px rgba(13, 37, 38, 0.16));
  transform: translateY(2px) scale(1.035);
}

.person-card-content {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.person-role,
.person-summary,
.person-link {
  display: block;
}

.person-role {
  min-height: 46px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.person-card-content strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.1;
}

.person-summary {
  color: var(--muted);
  font-size: 0.94rem;
}

.person-link {
  position: relative;
  width: fit-content;
  margin-top: 6px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.person-link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.team-note {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 233, 228, 0.76), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 8% 10%, rgba(184, 139, 97, 0.16), transparent 34%);
}

.team-note p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.person-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.person-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.person-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 24, 0.54);
  backdrop-filter: blur(12px);
}

.person-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  width: min(1160px, calc(100vw - 48px));
  height: min(92vh, 900px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(6, 35, 35, 0.26);
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.person-modal.is-open .person-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.person-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 225, 223, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.person-modal-close:hover,
.person-modal-close:focus-visible {
  background: #ffffff;
  transform: rotate(6deg);
}

.person-modal-close:focus-visible {
  outline: 3px solid rgba(6, 79, 63, 0.14);
  outline-offset: 3px;
}

.person-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.person-dialog-image {
  position: relative;
  display: grid;
  min-height: 0;
  height: 100%;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(150deg, #d9e8e2 0%, #f7fbfa 50%, #cfdfd9 100%);
}

.person-dialog-image::before {
  content: "";
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(6, 79, 63, 0.1);
  border-radius: 50%;
}

.person-dialog-image img {
  position: relative;
  z-index: 1;
  width: min(108%, 460px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 34px rgba(13, 37, 38, 0.16));
  transform: translateY(16px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.person-modal.is-open .person-dialog-image img {
  transform: translateY(0) scale(1.03);
}

.person-dialog-content {
  min-height: 0;
  overflow-y: auto;
  padding: 38px 42px 34px;
  scrollbar-gutter: stable;
}

.person-dialog-content h2 {
  margin-bottom: 8px;
  font-size: 2.68rem;
}

.person-modal-role {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.45;
}

.person-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.person-modal-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.person-modal-credentials {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.person-modal-credentials h3 {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.person-modal-credentials ul {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.person-modal-credentials li {
  break-inside: avoid;
  margin-bottom: 7px;
}

.person-modal-bio {
  display: grid;
  max-width: 700px;
  gap: 12px;
}

.person-modal-bio p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.56;
}

.person-modal-quote {
  margin: 22px 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.person-modal-quote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.28;
}

.person-modal-secondary {
  width: auto;
  padding: 0;
  border: 0;
  appearance: none;
  background: none;
  cursor: pointer;
}

.offer-section,
.process-section,
.faq-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: var(--mist);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
}

.offer-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-card:hover,
.price-card:hover,
details:hover {
  border-color: rgba(6, 79, 63, 0.22);
  box-shadow: 0 14px 34px rgba(13, 37, 38, 0.08);
  transform: translateY(-3px);
}

.offer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding: 34px;
}

.offer-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.offer-icon svg {
  margin: 0;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.compact-list li {
  position: relative;
  padding-left: 18px;
}

.compact-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.price-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.price-card strong {
  margin: 2px 0 4px;
  font-family: var(--serif);
  font-size: 3.7rem;
  line-height: 1;
}

.price-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 56px;
  align-items: center;
}

.ai-preview {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #eef6f4, #ffffff);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ai-preview:hover {
  box-shadow: 0 24px 58px rgba(13, 37, 38, 0.13);
  transform: translateY(-4px);
}

.ai-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.ai-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.ai-topbar small {
  position: relative;
  color: var(--muted);
  font-weight: 700;
}

.ai-topbar small::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #2fbf72;
}

.ai-messages {
  display: grid;
  gap: 14px;
  padding: 26px 20px 18px;
  background: #fbfdfc;
}

.message {
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.96rem;
}

.user-message {
  justify-self: end;
  color: #ffffff;
  background: var(--green);
  animation: messageIn 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.coach-message {
  border: 1px solid var(--line);
  background: #ffffff;
  animation: messageIn 560ms cubic-bezier(0.2, 0.8, 0.2, 1) 140ms both;
}

.ai-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 20px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-input svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-section {
  background: linear-gradient(180deg, var(--mist), #ffffff);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.process-grid article {
  position: relative;
  padding: 28px 22px;
  border-top: 1px solid var(--line);
  transition: transform 180ms ease;
}

.process-grid article:hover {
  transform: translateY(-3px);
}

.process-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-weight: 800;
}

.workbook-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.book-mockup {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(220, 233, 228, 0.64), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 30% 20%, rgba(184, 139, 97, 0.22), transparent 42%);
}

.book-cover {
  width: 230px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transform: rotate(-5deg);
  border: 1px solid #dde6e2;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(13, 37, 38, 0.16);
  animation: bookFloat 5.8s ease-in-out infinite alternate;
}

.book-cover span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.book-cover strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1.08;
}

.newsletter-form {
  margin-top: 26px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 13px 14px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(6, 79, 63, 0.1);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 700;
}

.faq-section {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

summary {
  cursor: pointer;
  padding: 22px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr minmax(0, 1.2fr);
  gap: 58px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 700;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 44px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #f8fbfa;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer nav a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 24px;
  }

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .ai-section,
  .workbook-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .team-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .offer-layout {
    max-width: none;
  }

  .price-card {
    min-height: 260px;
  }

  .person-dialog {
    grid-template-columns: 1fr;
    height: 90vh;
    min-height: 0;
    max-height: 90vh;
  }

  .person-dialog-image {
    min-height: 310px;
    max-height: 340px;
    place-items: end center;
  }

  .person-dialog-image::before {
    top: auto;
    bottom: 8%;
    transform: none;
  }

  .person-dialog-image img {
    width: min(62%, 320px);
    height: 100%;
    max-height: none;
    object-position: center bottom;
  }

  .person-modal.is-open .person-dialog-image img {
    transform: translateY(8px) scale(1);
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(15, 25, 23, 0.82) 0%, rgba(15, 25, 23, 0.62) 56%, rgba(15, 25, 23, 0.24) 100%),
      url("public/hero-career-coaching.png") 58% center / cover no-repeat;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin: 0 16px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.68rem;
    line-height: 1.03;
  }

  .hero p {
    max-width: 470px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero p,
  .hero-actions {
    max-width: 340px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(calc(100% - 32px), 1180px);
    padding: 70px 0;
    scroll-margin-top: 70px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .offer-section,
  .process-section,
  .faq-section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .person-image-frame {
    aspect-ratio: 16 / 12;
  }

  .person-image-frame img {
    width: 78%;
  }

  .person-role {
    min-height: auto;
  }

  .team-note {
    display: grid;
    padding: 22px;
  }

  h2 {
    font-size: 2.28rem;
  }

  .section-heading.centered {
    max-width: 340px;
  }

  .section-note {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
  }

  .audience-item,
  .offer-card,
  .price-card,
  .contact-form {
    padding: 22px;
  }

  .offer-layout,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    min-height: 340px;
    padding: 24px;
  }

  .quote-panel p {
    font-size: 1.65rem;
  }

  .ai-preview {
    padding: 14px;
  }

  .message {
    max-width: 92%;
  }

  .newsletter-form div,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .person-modal {
    align-items: end;
    padding: 10px;
  }

  .person-dialog {
    width: 100%;
    height: 92vh;
    min-height: 0;
    max-height: 92vh;
    border-radius: 8px 8px 0 0;
  }

  .person-dialog-image {
    min-height: 210px;
    max-height: 250px;
  }

  .person-dialog-image img {
    width: min(64%, 250px);
  }

  .person-dialog-content {
    padding: 26px 20px 28px;
  }

  .person-dialog-content h2 {
    font-size: 2.05rem;
  }

  .person-modal-credentials ul {
    columns: 1;
  }

  .person-modal-secondary {
    width: fit-content;
  }
}

@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;
  }
}

@keyframes heroBreathe {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-10px, -6px, 0);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: rotate(45deg) translate(-1px, -1px);
  }

  50% {
    transform: rotate(45deg) translate(3px, 3px);
  }
}

@keyframes calmLift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bookFloat {
  from {
    transform: rotate(-5deg) translateY(0);
  }

  to {
    transform: rotate(-3deg) translateY(-8px);
  }
}

@keyframes personCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
