:root {
  --paper: #f3f0e8;
  --panel: #fbfaf7;
  --ink: #24251f;
  --muted: #686b5f;
  --line: #dedbd2;
  --sage: #727a55;
  --sage-dark: #56603e;
  --soft: #ebe7dd;
  --photo-wall: #d7cfc1;
  --shadow: 0 18px 48px rgba(63, 58, 49, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.86), transparent 28rem),
    linear-gradient(110deg, #efede7 0%, var(--paper) 52%, #e9e6de 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 12px auto 0;
  border: 1px solid rgba(222, 219, 210, 0.9);
  border-radius: 8px;
  padding: 10px 14px 10px 20px;
  background: rgba(251, 250, 247, 0.88);
  box-shadow: 0 14px 34px rgba(63, 58, 49, 0.08);
  backdrop-filter: blur(18px);
}

.topbar-brand {
  flex: 0 0 auto;
  color: #4d5048;
  font-size: 15px;
  font-weight: 720;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar-nav::-webkit-scrollbar {
  display: none;
}

.topbar-nav a {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 10px 12px;
  color: #5f6257;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: var(--sage-dark);
  background: rgba(114, 122, 85, 0.1);
  outline: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 0;
}

.screen {
  margin-bottom: 18px;
}

.panel {
  overflow: hidden;
  border: 1px solid rgba(222, 219, 210, 0.75);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 12px 32px rgba(63, 58, 49, 0.07);
}

.hero-panel {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  background: var(--photo-wall);
}

.hero-copy {
  max-width: 570px;
  align-self: end;
  padding: clamp(44px, 6vw, 78px) clamp(34px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(215, 207, 193, 0) 0%, rgba(215, 207, 193, 0.2) 100%),
    var(--photo-wall);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.04;
  font-weight: 620;
  letter-spacing: 0;
}

.lead {
  max-width: 520px;
  color: var(--sage-dark);
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.18;
  font-weight: 520;
}

.signature {
  position: relative;
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: 28px;
}

.signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background: #8f927f;
}

.signature span {
  display: block;
  color: #34362f;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signature strong {
  display: block;
  margin-top: 10px;
  color: #62665a;
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero-media {
  display: block;
  min-height: 440px;
  background: url("assets/monika-hero.jpeg") center right / cover no-repeat;
}

.text-panel,
.about-panel,
.process-panel,
.question-panel,
.split-panel,
.contact-panel {
  padding: clamp(34px, 5vw, 58px) clamp(28px, 5vw, 56px);
}

.text-panel {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.text-panel h2,
.about-panel h2,
.process-intro h2,
.question-panel h2,
.podcast-block h2,
.career-block h2,
.contact-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.18;
  font-weight: 600;
}

.text-panel > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.text-panel > h2 {
  max-width: 520px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.48;
}

.about-panel {
  min-height: 0;
}

.about-panel > .eyebrow {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.about-left h2 {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.48;
}

.about-label {
  margin-bottom: 16px;
}

.about-content {
  max-width: 520px;
  border-left: 1px solid var(--line);
  padding-left: clamp(34px, 5vw, 72px);
}

.about-content p,
.about-label,
.soft-list,
.quiet-list,
.process-step p,
.podcast-block p,
.career-block p,
.contact-copy p {
  color: #33352f;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.58;
}

.soft-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.soft-list svg,
.quiet-list svg {
  width: 24px;
  height: 24px;
  color: var(--sage-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.quiet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--sage-dark);
  list-style: none;
}

.quiet-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.quiet-list svg {
  width: 22px;
  height: 22px;
}

.process-panel {
  display: block;
}

.process-intro {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.process-intro .eyebrow {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 620;
  letter-spacing: 0;
  text-transform: none;
}

.process-intro h2 {
  display: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-step {
  min-height: 260px;
  padding: 4px clamp(12px, 2vw, 22px) 0;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  counter-increment: process;
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  content: counter(process);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage-dark);
  font-size: 12px;
  font-weight: 760;
}

.process-step h3 {
  margin: 0 0 10px;
  color: #34362f;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1.34;
  text-transform: uppercase;
}

.process-step p {
  max-width: 190px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.62;
}

.question-panel {
  min-height: 0;
  text-align: center;
}

.question-panel h2 {
  max-width: 940px;
  margin: 0 auto 10px;
  font-size: clamp(22px, 2.5vw, 34px);
}

.divider {
  width: 86px;
  height: 1px;
  margin: 0 auto 28px;
  background: #a8a99d;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: process;
}

.question-note {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px auto 0;
  color: #8f8d82;
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  line-height: 1;
}

.question-note svg {
  width: 54px;
  height: 26px;
  flex: 0 0 auto;
  margin-top: -4px;
  fill: none;
  stroke: #9a988c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.choice-card {
  min-height: 170px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #34362f;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.choice-card:hover,
.choice-card:focus-visible,
.choice-card.is-selected {
  border-color: var(--sage);
  background: #f6f7f1;
  outline: none;
  transform: translateY(-2px);
}

.choice-card svg {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  color: var(--sage);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.choice-card span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}

.podcast-block,
.career-block {
  padding: 0 clamp(10px, 3vw, 34px);
}

.podcast-icon {
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  color: var(--sage);
}

.podcast-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.podcast-block {
  border-right: 1px solid var(--line);
}

.podcast-block p,
.career-block p {
  max-width: 560px;
  font-size: clamp(14px, 1.35vw, 17px);
}

.podcast-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.outline-button,
.text-button {
  min-width: 164px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #b9b9ae;
  border-radius: 8px;
  padding: 0 22px;
  color: #62665a;
  background: #fbfaf7;
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.outline-button:hover,
.outline-button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: #fff;
  border-color: var(--sage);
  background: var(--sage);
  outline: none;
}

.brand-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.contact-photo {
  width: 190px;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  justify-self: start;
  align-self: center;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center 34%;
}

.contact-copy h2 {
  max-width: 450px;
  font-size: clamp(24px, 3vw, 38px);
}

.contact-copy p {
  max-width: 380px;
}

.contact-form {
  border-left: 1px solid var(--line);
  padding-left: clamp(0px, 2vw, 28px);
}

.leadagent-form .laf_container {
  width: 100%;
  min-height: 180px;
}

.site-footer {
  width: min(1084px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto 26px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #4d5048;
  font-size: 14px;
  font-weight: 650;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--sage-dark);
  outline: none;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.project-link img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.project-link span {
  color: #65685d;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .hero-panel {
    min-height: 420px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-media {
    min-height: 420px;
    order: initial;
    background-position: center right;
  }

  h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 28px;
  }

  .process-panel,
  .split-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 34px;
  }

  .about-content {
    padding-left: 34px;
  }

  .contact-photo {
    width: 240px;
    max-width: 58%;
  }

  .process-intro,
  .podcast-block p,
  .career-block p {
    max-width: none;
  }

  .choice-grid,
  .process-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-step,
  .process-step:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .process-step:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .podcast-block,
  .career-block {
    padding: 0;
  }

  .podcast-block {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 34px;
  }

  .career-block {
    padding-top: 34px;
  }

  .contact-form {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 112px;
  }

  .topbar {
    width: min(100% - 20px, 560px);
    min-height: 0;
    display: block;
    margin-top: 10px;
    padding: 12px;
  }

  .topbar-brand {
    display: block;
    margin-bottom: 8px;
  }

  .topbar-nav {
    margin: 0 -4px;
  }

  .topbar-nav a {
    padding: 9px 10px;
  }

  .page-shell {
    width: min(100% - 20px, 560px);
    padding-top: 12px;
  }

  .screen {
    margin-bottom: 12px;
  }

  .hero-panel {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-media {
    order: -1;
    min-height: 300px;
    background-position: center top;
  }

  .hero-copy,
  .about-panel,
  .text-panel,
  .process-panel,
  .question-panel,
  .split-panel,
  .contact-panel {
    padding: 24px;
  }

  h1 {
    max-width: none;
    font-size: 34px;
    line-height: 1.08;
  }

  .lead {
    max-width: none;
    font-size: 24px;
    line-height: 1.22;
  }

  .signature {
    margin-top: 32px;
  }

  .text-panel {
    min-height: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-content {
    max-width: none;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }

  .quiet-list {
    display: grid;
    gap: 14px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
    padding-bottom: 22px;
  }

  .process-step:last-child {
    border-bottom: 0;
    grid-column: auto;
  }

  .choice-card {
    min-height: 128px;
  }

  .contact-photo {
    width: 190px;
    max-width: 72%;
  }

  .podcast-actions,
  .outline-button,
  .text-button {
    width: 100%;
  }

  .site-footer {
    width: min(100% - 28px, 560px);
    justify-content: flex-start;
    gap: 14px 22px;
    padding-bottom: 22px;
  }
}
