:root {
  --brown: #6b4f3b;
  --beige: #cdb8a3;
  --cream: #f5efe6;
  --white: #ffffff;
  --ivory: #faf6f0;
  --light-brown: #e4cdb2;
  --silver: #c0c0c0;
  --ink: #2c1f17;
  --text-mid: #5a4033;
  --muted: #8a7060;
  --line: rgba(107, 79, 59, 0.2);
  --shadow: 0 2px 24px rgba(107, 79, 59, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.75;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--light-brown);
}

.nav {
  min-height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--brown);
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.3vw, 34px);
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-dropdown {
  position: relative;
  padding: 20px 0;
  margin: -20px 0;
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 2px);
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 12px 0;
  background: var(--cream);
  border: 1px solid var(--light-brown);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  border-bottom: 0;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: rgba(107, 79, 59, 0.06);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

.discovery-link {
  flex: 0 0 auto;
  border: 1px solid var(--brown);
  color: var(--brown);
  background: transparent;
  padding: 9px 20px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.discovery-link:hover {
  background: var(--brown);
  color: var(--white);
}

.hero {
  min-height: calc(90vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  background: var(--ivory);
}

.hero-content,
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wide {
  width: 100%;
  background: var(--cream);
}

.hero-wide img {
  width: 100%;
  height: auto;
}

.eyebrow,
.hero-eyebrow,
.section-eyebrow {
  margin: 0 0 18px;
  color: var(--brown);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

h1,
.hero-title {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: 0;
  text-transform: none;
}

h2,
.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.lead,
.hero-sub {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

p {
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 100px 80px;
}

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

.section-white {
  background: var(--ivory);
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
  margin: 0 auto;
}

.section-centered {
  text-align: center;
}

.section-centered .lead,
.section-centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.section-centered .offer-grid {
  text-align: left;
}

.split,
.question-section,
.poetry-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.text-only {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

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

.portrait,
.question-image img,
.poetry-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: none;
}

.soft-img {
  border-radius: 2px;
}

.button-row,
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn,
.btn-primary,
.btn-secondary {
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid var(--brown);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn,
.btn-primary {
  background: var(--brown);
  color: var(--white);
}

.btn:hover,
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn.secondary,
.btn-secondary {
  background: transparent;
  color: var(--brown);
}

.btn.secondary:hover,
.btn-secondary:hover {
  background: var(--brown);
  color: var(--white);
}

.quote,
.quote-block {
  background: var(--cream);
  margin: 0;
  padding: 80px;
  text-align: center;
}

.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.35;
  color: var(--ink);
}

.story-highlight {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.34;
  color: var(--ink);
}

.story-highlight-centered {
  text-align: center;
}

.story-highlight-box {
  margin: 34px 0;
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-highlight-centered p {
  margin: 0 auto 8px;
  color: var(--ink);
  font: inherit;
  line-height: inherit;
}

.story-highlight-centered p:last-child {
  margin-bottom: 0;
}

.story-highlight strong {
  font-weight: 600;
}

.story-highlight-center-text {
  text-align: center;
}

.quote-small {
  font-size: clamp(22px, 3vw, 36px);
}

.story-highlight + .quote {
  margin-top: clamp(54px, 8vw, 96px);
}

.quote-big {
  max-width: 820px;
  margin: 0 auto 40px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.35;
  color: var(--ink);
}

.quote-divider {
  width: 40px;
  height: 1px;
  background: var(--beige);
  margin: 0 auto 40px;
}

.quote-body {
  max-width: 660px;
  margin: 0 auto 18px;
  color: var(--text-mid);
  line-height: 1.9;
}

.quote-body.spaced {
  margin-bottom: 32px;
}

.quote-bold {
  color: var(--ink);
  font-weight: 500;
}

.poetry-section {
  background: var(--ivory);
  padding: 80px;
}

.poetry-box {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  padding: 52px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.poetry-box::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--beige);
  border-radius: 2px;
}

.journey-poetry {
  margin: 36px 0;
}

.poetry-line {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 2;
  color: var(--text-mid);
}

.poetry-line.bold {
  color: var(--ink);
  font-weight: 500;
}

.poetry-heart {
  display: block;
  margin-top: 8px;
  color: var(--beige);
}

.guide-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.systeme-form {
  min-height: 260px;
  align-content: start;
}

.systeme-form iframe,
.systeme-form form {
  width: 100%;
  max-width: 100%;
}

.systeme-form iframe {
  min-height: 260px;
  border: 0;
}

.systeme-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-message {
  min-height: 1.4em;
  margin: 0;
  color: var(--text-mid);
  font-size: 14px;
}

.form-message.error {
  color: #8a3d2f;
}

.guide-success {
  margin-top: 28px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-success h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.guide-success p {
  margin: 0 0 14px;
}

.guide-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.phase-nav {
  position: sticky;
  top: 72px;
  z-index: 12;
  background: rgba(245, 239, 230, 0.96);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.phase-nav-inner {
  width: min(1040px, calc(100% - 16px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 5vw, 74px);
  min-width: 720px;
}

.phase-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 24px 0 20px;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 400;
}

.phase-nav a:hover,
.phase-nav a:focus {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

.phase {
  scroll-margin-top: 170px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(48px, 7vw, 86px) 0;
  border-bottom: 1px solid var(--line);
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.phase-card {
  display: block;
  padding: 30px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 79, 59, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.phase-card h3 {
  font-size: clamp(26px, 2.6vw, 36px);
}

.phase-card .lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
}

.phase-card .phase-list {
  gap: 8px;
  margin-top: 20px;
}

.phase-card .phase-list li {
  padding: 12px 0;
  background: transparent;
  border-left: 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
}

.phase-symbol {
  font-size: 2rem;
}

.phase-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.phase-list li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border-left: 2px solid var(--beige);
  color: var(--muted);
}

.phase-list strong {
  color: var(--brown);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.journey-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.focus-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.focus-journey {
  scroll-margin-top: 170px;
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.focus-journey summary {
  list-style: none;
  min-height: 112px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
}

.focus-journey summary::-webkit-details-marker {
  display: none;
}

.focus-journey summary::after {
  content: "⌄";
  color: var(--brown);
  font-size: 32px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.2s;
}

.focus-journey[open] summary::after {
  transform: rotate(180deg);
}

.focus-journey summary strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
}

.focus-body {
  padding: 0 34px 34px;
  max-width: 880px;
}

.focus-body p {
  font-size: 16px;
  line-height: 1.85;
}

.journey-card,
.offer-card,
.result-panel,
.question {
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.12);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.journey-card {
  scroll-margin-top: 170px;
}

.journey-card h3,
.offer-card h3 {
  margin-bottom: 8px;
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.offer-card {
  padding: clamp(34px, 4vw, 54px);
}

.offer-card h3 {
  font-size: clamp(34px, 4vw, 54px);
}

.offer-card p {
  font-size: 16px;
}

.pill {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brown);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.quiz {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.answers {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.answers label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  color: var(--muted);
}

.answers input[type="checkbox"] {
  margin-top: 7px;
}

.result-panel {
  display: none;
  margin-top: 24px;
  border-color: var(--light-brown);
}

.result-panel.visible {
  display: block;
}

.faq-section {
  background: var(--cream);
  padding: 100px 80px;
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-brown);
  padding: 28px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
}

.faq-question::after {
  content: "+";
  color: var(--brown);
  font-size: 20px;
  font-weight: 300;
}

.faq-answer {
  display: none;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.footer {
  background: var(--brown);
  color: var(--light-brown);
  padding: 60px 80px;
}

.footer .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--light-brown);
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--beige);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer p,
.footer a,
.footer span {
  color: var(--light-brown);
  font-size: 13px;
  text-decoration: none;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  background: var(--ink);
  color: var(--silver);
  width: auto;
  margin: 48px -80px -60px;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer small,
.footer-bottom {
  font-size: 11px;
}

@media (max-width: 980px) {
  .nav {
    padding: 16px 24px;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    font-size: 12px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 16px;
  }

  .discovery-link {
    align-self: flex-end;
  }

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

  .hero-content,
  .hero-copy {
    padding: 60px 32px;
  }

  .hero-media {
    min-height: 50vw;
    order: -1;
  }

  .section,
  .question-section,
  .poetry-section,
  .quote-block,
  .faq-section {
    padding: 60px 32px;
  }

  .split,
  .split.reverse,
  .question-section,
  .poetry-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse .portrait,
  .split.reverse img {
    order: -1;
  }

  .portrait,
  .question-image img,
  .poetry-image img {
    min-height: 320px;
  }

  .phase-nav {
    top: 154px;
  }

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

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

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

  .footer {
    padding: 48px 32px;
  }

  .footer .wrap {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    margin: 40px -32px -48px;
    padding: 18px 32px;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-links {
    font-size: 10px;
    gap: 12px;
  }

  .discovery-link {
    align-self: flex-end;
  }

  .hero-title,
  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .phase-nav {
    top: 190px;
  }
}
