:root {
  --aubergine: #4b2438;
  --earth: #876044;
  --clay: #b85b4d;
  --ochre: #c99043;
  --ember: #d63d66;
  --silver: #d7d2cc;
  --cream: #f8f3eb;
  --warm: #efe3d2;
  --ink: #111111;
  --muted: #111111;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(50, 30, 20, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.content-column { max-width: 820px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(248, 243, 235, .92);
  border-bottom: 1px solid rgba(75, 36, 56, .12);
  backdrop-filter: blur(18px);
}
.brand img { width: 210px; height: auto; }
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.site-nav a, .nav-parent, .footer-grid nav a {
  padding: 8px 10px;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-group.is-current > .nav-parent,
.nav-parent:hover { color: var(--aubergine); }
.nav-group:hover .nav-arrow,
.nav-group:focus-within .nav-arrow {
  transform: translateY(1px) rotate(225deg);
}
.nav-group {
  position: relative;
}
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: none;
  min-width: 190px;
  padding: 10px;
  background: rgba(255, 253, 249, .98);
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}
.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.submenu a:hover,
.submenu a[aria-current="page"] {
  background: var(--warm);
}
.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  display: grid;
}
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  max-width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--aubergine);
  background: var(--aubergine);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(75, 36, 56, .16);
  text-align: center;
  white-space: normal;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.header-cta::after,
.button::after {
  content: "→";
  font-weight: 900;
  line-height: 1;
}
.button:hover, .header-cta:hover {
  background: #3b1b2b;
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: scale(1.035);
}
.button.ghost {
  background: transparent;
  color: var(--aubergine);
  box-shadow: none;
}
.button.light {
  background: var(--white);
  color: var(--aubergine);
  border-color: var(--white);
}
.menu-toggle { display: none; }
.hero {
  min-height: clamp(560px, 78vh, 780px);
  display: grid;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(31, 17, 13, .72), rgba(31, 17, 13, .28), rgba(31, 17, 13, .1)), var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  color: var(--white);
}
.hero.is-home {
  align-items: center;
  background-color: #211611;
  background-image:
    linear-gradient(90deg, rgba(31, 17, 13, .9) 0%, rgba(31, 17, 13, .74) 42%, rgba(31, 17, 13, .16) 72%),
    var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-position: center, center right;
}
.hero-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 92px;
}
.hero.is-home .hero-content {
  width: min(700px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1120px) / 2));
  margin-right: auto;
  padding: 112px 0 88px;
}
.kicker {
  margin: 0 0 12px;
  color: var(--ochre);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}
.hero .kicker { color: #ffd08c; }
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: none;
}
h1 { font-size: 76px; max-width: 860px; }
.hero.is-home h1 {
  max-width: 700px;
  font-size: clamp(40px, 3.7vw, 44px);
  line-height: 1.1;
}
.hero.is-home p {
  max-width: 520px;
}
h2 { font-size: 52px; color: var(--aubergine); }
h3 { font-size: 24px; color: var(--aubergine); }
.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 22px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero.is-home .hero-actions {
  margin-top: 30px;
}
.hero .hero-actions .button:not(.ghost) {
  border-color: var(--ochre);
  background: var(--ochre);
  color: var(--aubergine);
}
.hero .hero-actions .button:not(.ghost):hover {
  background: #d8a052;
  border-color: #d8a052;
  color: var(--aubergine);
}
.hero .button.ghost {
  border-color: rgba(255,255,255,.75);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.section-actions {
  display: flex;
  margin-top: 30px;
}
.section-actions.center {
  justify-content: center;
}
.section {
  padding: 92px 0;
  background: var(--white);
  border-top: 1px solid rgba(75, 36, 56, .08);
}
.section.warm { background: var(--warm); }
.section.compact { padding: 54px 0; }
.section-lead { max-width: 790px; margin: 18px 0 34px; color: var(--muted); font-size: 18px; }
.text-section p, .split p, .section p { font-size: 18px; }
.text-section p { margin: 22px 0 0; }
.story-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(214, 61, 102, .08), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.story-section .split,
.story-section.split {
  align-items: start;
}
.story-section figure,
.reverse figure {
  margin: 0;
}
.reverse {
  direction: rtl;
}
.reverse > * {
  direction: ltr;
}
.text-flow {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.text-flow p,
.text-flow li {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.text-flow p:first-child {
  color: var(--ink);
}
.text-flow ul {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}
.text-flow li {
  position: relative;
  padding-left: 24px;
}
.text-flow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ember);
}
.text-flow blockquote {
  margin: 4px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--ember);
  border-radius: 8px;
  background: rgba(255, 253, 249, .78);
  color: var(--aubergine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.45;
}
.focus-panel {
  max-width: 920px;
  padding: 38px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 12px 34px rgba(80, 55, 40, .07);
}
.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.statement-card,
.section-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: rgba(255, 253, 249, .84);
  box-shadow: 0 10px 30px rgba(80, 55, 40, .07);
  overflow-wrap: break-word;
}
.statement-card span,
.section-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}
.statement-card p {
  margin: 0;
  color: var(--muted);
}
.transformation-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.about-home-section {
  background: var(--white);
}
.home-offers-section {
  background: linear-gradient(180deg, #f4dfd0 0%, var(--warm) 100%);
}
.coaching-steps-section {
  background: var(--cream);
}
.review-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f7e7dd 100%);
}
.transformation-intro {
  max-width: none;
  margin-bottom: 38px;
}
.transformation-intro h2 {
  max-width: none;
  font-size: 46px;
}
.transformation-intro > p:not(.kicker) {
  max-width: 730px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.comparison-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.comparison-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(75, 36, 56, .11);
  border-radius: 8px;
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 14px 34px rgba(80, 55, 40, .07);
}
.comparison-card.is-after {
  border-color: rgba(201, 144, 67, .34);
  background: rgba(255, 253, 249, .94);
}
.comparison-card h3 {
  margin-bottom: 22px;
  font-size: 30px;
}
.comparison-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.comparison-card li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(75, 36, 56, .08);
}
.comparison-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.comparison-card li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(75, 36, 56, .1);
  color: var(--aubergine);
  font-weight: 900;
}
.comparison-card.is-after li > span {
  background: var(--ochre);
}
.comparison-card p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.52;
  overflow-wrap: break-word;
}
.comparison-card.is-after p {
  color: var(--ink);
}
.steps-intro {
  max-width: 760px;
  margin-bottom: 34px;
}
.steps-intro h2 {
  max-width: 720px;
  font-size: 46px;
}
.step-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
.step-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(80, 55, 40, .07);
}
.step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 850;
}
.step-card h3 {
  font-size: 24px;
  line-height: 1.15;
}
.step-card p {
  margin: 14px 0 0;
}
.step-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 144, 67, .42);
  border-radius: 999px;
  color: var(--aubergine);
  background: rgba(255, 253, 249, .86);
  font-size: 22px;
  font-weight: 900;
}
.review-intro {
  max-width: 760px;
  margin-bottom: 30px;
}
.review-intro h2 {
  max-width: 980px;
  font-size: 42px;
}
.review-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
}
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.review-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(80, 55, 40, .07);
  scroll-snap-align: start;
}
.review-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--aubergine);
  color: var(--white);
  font-weight: 850;
}
.review-head strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
  min-height: 40px;
}
.review-head small {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}
.review-stars {
  margin-top: 18px;
  color: #f6a800;
  font-size: 18px;
  letter-spacing: .04em;
}
.review-card p {
  margin: 16px 0 0;
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 100%;
}
.review-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(201, 144, 67, .42);
  border-radius: 999px;
  background: rgba(255, 253, 249, .9);
  color: var(--aubergine);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.offer-intro-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.offer-intro-points div {
  padding-left: 18px;
  border-left: 3px solid var(--ochre);
}
.offer-intro-points strong {
  display: block;
  color: var(--aubergine);
}
.offer-intro-points span {
  display: block;
}
.offer-method-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.offer-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.offer-method-card,
.offer-package-card,
.offer-note,
.offer-more-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(80, 55, 40, .07);
}
.offer-method-card span,
.offer-package-card span,
.offer-more-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 850;
}
.offer-method-card h3,
.offer-package-card h3,
.offer-note h3,
.offer-more-card h3 {
  font-size: 26px;
  line-height: 1.14;
}
.offer-method-card p,
.offer-package-card p,
.offer-note p,
.offer-more-card p {
  margin: 14px 0 0;
}
.offer-check-list,
.offer-package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.offer-check-list li,
.offer-package-card li {
  position: relative;
  padding-left: 28px;
}
.offer-check-list li::before,
.offer-package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ochre);
  font-weight: 900;
}
.offer-packages-section {
  background: var(--cream);
}
.offer-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.offer-package-card {
  display: grid;
  grid-template-rows: auto minmax(60px, auto) minmax(82px, auto) 1fr auto;
}
.offer-package-card .button {
  margin-top: 24px;
}
.offer-note {
  margin-top: 18px;
  background: rgba(255, 253, 249, .72);
}
.offer-more-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f7e7dd 100%);
}
.offer-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.offer-more-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
.offer-more-card .button {
  margin-top: 24px;
}
.mother-strength-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.father-strength-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.grandparents-strength-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.family-strength-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.mother-pressure-section {
  background: var(--cream);
}
.father-pressure-section {
  background: var(--cream);
}
.grandparents-pressure-section {
  background: var(--cream);
}
.family-pressure-section {
  background: var(--cream);
}
.mother-pressure-stack {
  display: grid;
  gap: 14px;
}
.mother-return-section {
  background: var(--white);
}
.father-return-section {
  background: var(--white);
}
.grandparents-return-section {
  background: var(--white);
}
.family-return-section {
  background: var(--white);
}
.frankfurt-format-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.frankfurt-online-section {
  background: var(--cream);
}
.frankfurt-choice-section {
  background: var(--white);
}
.frankfurt-choice-section .focus-panel {
  max-width: none;
}
.frankfurt-choice-section .focus-panel h2 {
  max-width: none;
}
.about-values-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f4dfd0 100%);
}
.about-effect-section {
  background: var(--cream);
}
.about-vision-section {
  background: var(--white);
}
.about-vision-panel {
  max-width: none;
}
.about-vision-panel h2 {
  max-width: none;
}
.about-credentials-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f7e7dd 100%);
}
.about-stance-card {
  min-width: 0;
  padding: 32px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 12px 34px rgba(80, 55, 40, .08);
}
.about-stance-card p {
  margin: 16px 0 0;
  color: var(--muted);
}
.section-card h3 {
  font-size: 30px;
}
.section-card .text-flow {
  margin-top: 18px;
}
.processed-offers .text-flow p,
.processed-prices .text-flow p {
  font-size: 16px;
}
.original-designed-intro {
  background:
    radial-gradient(circle at 12% 14%, rgba(214, 61, 102, .12), transparent 28%),
    var(--cream);
}
.original-content-section {
  position: relative;
}
.original-content-section.warm {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .28), rgba(255, 253, 249, 0)),
    var(--warm);
}
.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}
.section-heading h2 {
  max-width: 820px;
}
.original-split {
  align-items: start;
}
.original-split > div {
  max-width: 760px;
}
.original-split figure {
  position: sticky;
  top: 112px;
}
.original-split figure img {
  min-height: 420px;
  object-position: center;
}
.designed-copy,
.copy-deck {
  display: grid;
  gap: 16px;
}
.copy-deck {
  margin-top: 28px;
}
.original-content-section .copy-deck {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.original-content-section .copy-deck > *:only-child {
  max-width: 820px;
}
.original-content-section .copy-quote {
  grid-column: 1 / -1;
}
.designed-copy p,
.copy-panel {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.designed-copy p:first-child,
.copy-panel:first-child {
  color: var(--ink);
}
.copy-panel,
.copy-quote,
.original-designed-intro .copy-list {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(75, 36, 56, .10);
  border-radius: 8px;
  background: rgba(255, 253, 249, .76);
  box-shadow: 0 8px 22px rgba(80, 55, 40, .045);
}
.copy-panel {
  border-left: 4px solid rgba(201, 144, 67, .72);
}
.content-card .copy-panel {
  background: rgba(248, 243, 235, .6);
}
.original-designed-intro .designed-copy p,
.original-designed-intro .copy-list {
  border-left: 4px solid rgba(201, 144, 67, .72);
}
.copy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.copy-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}
.copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ember);
}
.designed-copy blockquote,
.copy-quote {
  margin: 8px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--ember);
  background: rgba(255, 253, 249, .72);
  color: var(--aubergine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.45;
}
.copy-quote {
  margin: 0;
}
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.content-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: rgba(255, 253, 249, .84);
  box-shadow: 0 10px 30px rgba(80, 55, 40, .07);
  overflow-wrap: break-word;
}
.content-card h3 {
  font-size: 30px;
}
.content-card-lead {
  margin: 10px 0 18px !important;
  color: var(--ember) !important;
  font-weight: 800;
}
.content-card .designed-copy {
  margin-top: 16px;
}
.content-card .copy-deck {
  margin-top: 18px;
}
.original-copy > * + * { margin-top: 18px; }
.original-copy h2 + p,
.original-copy h3 + p { margin-top: 14px; }
.original-copy h2:not(:first-child) { margin-top: 46px; }
.original-copy h2 {
  max-width: 780px;
  font-size: 38px;
  line-height: 1.14;
}
.original-copy h3 {
  margin-top: 34px;
  max-width: 760px;
  font-size: 25px;
  line-height: 1.2;
}
.original-copy p {
  max-width: 760px;
  margin-bottom: 0;
}
.original-copy blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 3px solid var(--ochre);
  color: var(--aubergine);
  font-size: 20px;
  line-height: 1.55;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.card, .testimonial, .price-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(80, 55, 40, .07);
  overflow-wrap: break-word;
}
.card p, .price-card p { color: var(--muted); margin-bottom: 0; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(75, 36, 56, .12);
  box-shadow: var(--shadow);
}
.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.offer-card div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 24px;
}
.offer-card span, .price-card span {
  color: var(--ember);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.offer-card h3 {
  font-size: 26px;
  line-height: 1.12;
}
.offer-card p {
  margin: 0;
}
.offer-card a {
  color: var(--aubergine);
  font-weight: 850;
  text-decoration-thickness: 2px;
  overflow-wrap: break-word;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 58px;
  align-items: center;
}
.split figure { margin: 0; }
.split figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.mini-list div {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 3px solid var(--ochre);
}
.mini-list strong { color: var(--aubergine); }
.mini-list span { color: var(--muted); }
.testimonial-grid, .price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.testimonial img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}
.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  overflow-wrap: break-word;
}
.testimonial p { margin-bottom: 0; }
.testimonial span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.cta-band {
  background: var(--aubergine);
  color: var(--white);
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 760px; color: rgba(255,255,255,.82); }
.booking {
  background: linear-gradient(180deg, var(--warm), #f7e7dd);
}
.booking-inner {
  text-align: left;
  max-width: 820px;
}
.booking-inner p {
  color: var(--muted);
  margin: 18px 0;
  max-width: 680px;
}
.contact-line {
  font-size: 15px !important;
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
details {
  background: var(--white);
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  color: var(--aubergine);
  font-weight: 850;
}
details p { margin-bottom: 0; color: var(--muted); }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chip-row span {
  display: inline-flex;
  min-width: 0;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid rgba(75, 36, 56, .14);
  border-radius: 999px;
  color: var(--aubergine);
  font-weight: 750;
  overflow-wrap: anywhere;
}
.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.signup-form label {
  display: grid;
  gap: 6px;
  color: var(--aubergine);
  font-weight: 750;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(75, 36, 56, .2);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--aubergine) 50%), linear-gradient(135deg, var(--aubergine) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-form-section {
  background: linear-gradient(180deg, var(--warm) 0%, #f7e7dd 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 24px;
  align-items: start;
}
.contact-form,
.contact-side {
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: rgba(255, 253, 249, .86);
  box-shadow: 0 12px 34px rgba(80, 55, 40, .08);
}
.contact-form h2,
.contact-side h2 {
  font-size: 42px;
}
.contact-form > p {
  margin: 14px 0 24px;
  color: var(--muted);
}
.contact-form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--aubergine);
  font-weight: 750;
}
.form-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--ink) !important;
  font-weight: 500 !important;
}
.form-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 5px;
}
.form-check span {
  display: block;
  line-height: 1.55;
}
.contact-card-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-info-card {
  padding: 22px;
  border: 1px solid rgba(75, 36, 56, .12);
  border-radius: 8px;
  background: var(--white);
}
.contact-info-card h3 {
  font-size: 24px;
}
.contact-info-card p {
  margin: 10px 0 12px;
  color: var(--muted);
}
.contact-info-card a {
  color: var(--aubergine);
  font-weight: 850;
  overflow-wrap: anywhere;
}
.site-footer {
  background: #2c1721;
  color: rgba(255,255,255,.82);
  padding: 60px 0;
}
.footer-cta {
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(75, 36, 56, .96), rgba(135, 68, 60, .94)),
    var(--aubergine);
  color: var(--white);
}
.footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .5fr);
  gap: 38px;
  align-items: center;
}
.footer-cta h2 {
  max-width: 980px;
  color: var(--white);
  font-size: 44px;
}
.footer-cta h2 span {
  display: block;
  white-space: nowrap;
}
.footer-cta p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
}
.footer-cta .kicker {
  color: #ffd08c;
}
.footer-cta-actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}
.footer-cta-actions p {
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}
.footer-grid img { width: 250px; max-width: 100%; }
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.footer-social svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-grid a { color: var(--white); }
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 190px auto auto;
  }
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    justify-self: end;
    border: 1px solid rgba(75, 36, 56, .2);
    border-radius: 999px;
    background: var(--white);
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--aubergine);
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    align-items: stretch;
    flex-direction: column;
    padding-top: 12px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a,
  .nav-parent {
    width: 100%;
    padding: 10px 0;
    text-align: left;
  }
  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 2px 0 8px 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }
  .submenu::before { display: none; }
  .submenu a {
    padding: 8px 0;
    white-space: normal;
  }
  .submenu a:hover,
  .submenu a[aria-current="page"] {
    background: transparent;
  }
  .header-cta { min-height: 42px; padding: 10px 14px; }
  h1 { font-size: 62px; }
  h2 { font-size: 42px; }
  h3 { font-size: 23px; }
  .original-copy h2 { font-size: 34px; }
  .original-copy h3 { font-size: 23px; }
  .hero p { font-size: 20px; }
  .hero.is-home .hero-content {
    margin-left: max(20px, calc((100vw - 1120px) / 2));
  }
  .card-grid, .offer-grid, .testimonial-grid, .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .statement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-card-grid { grid-template-columns: 1fr; }
  .original-content-section .copy-deck { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .original-split figure { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { width: min(1120px, calc(100% - 40px)); }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px;
  }
  .brand img { width: 185px; }
  .header-cta { grid-column: 1 / -1; width: 100%; }
  .hero {
    min-height: 690px;
    background-image: linear-gradient(180deg, rgba(31, 17, 13, .36), rgba(31, 17, 13, .82)), var(--hero-image);
    background-position: center top;
  }
  .hero.is-home {
    min-height: 720px;
    background-image:
      linear-gradient(180deg, rgba(31, 17, 13, .16), rgba(31, 17, 13, .8) 54%, rgba(31, 17, 13, .92)),
      var(--hero-image);
    background-size: cover, cover;
    background-position: 72% top;
    align-items: end;
  }
  .hero-content { width: calc(100% - 44px); padding-bottom: 48px; }
  .hero.is-home .hero-content {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 300px 0 44px;
  }
  .section { padding: 64px 0; }
  h1 { font-size: 32px; line-height: 1.1; }
  h2 { font-size: 32px; line-height: 1.14; }
  h3 { font-size: 22px; }
  .hero h1,
  .hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero.is-home h1 {
    max-width: 342px;
    font-size: 21px;
    line-height: 1.16;
  }
  .hero.is-home p {
    max-width: 342px;
    font-size: 15px;
  }
  .original-copy h2 { font-size: 28px; }
  .original-copy h3 { font-size: 21px; }
  .hero p, .text-section p, .split p, .section p, .section-lead { font-size: 17px; }
  .kicker { font-size: 12px; }
  .transformation-intro h2 {
    max-width: 320px;
    font-size: 30px;
  }
  .transformation-intro > p:not(.kicker) {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.55;
  }
  .card-grid, .offer-grid, .testimonial-grid, .price-grid { grid-template-columns: 1fr; }
  .statement-grid,
  .content-card-grid { grid-template-columns: 1fr; }
  .comparison-duo {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .focus-panel,
  .statement-card,
  .section-card {
    padding: 22px;
  }
  .comparison-card {
    padding: 20px;
  }
  .comparison-card p {
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .step-flow {
    grid-template-columns: 1fr;
  }
  .step-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .step-card {
    padding: 22px;
  }
  .step-card h3 {
    font-size: 23px;
  }
  .review-intro h2 {
    font-size: 30px;
  }
  .review-carousel {
    grid-template-columns: 1fr;
  }
  .review-track {
    grid-auto-columns: 100%;
    order: 1;
  }
  .review-control {
    display: none;
  }
  .offer-method-grid,
  .offer-package-grid,
  .offer-more-grid {
    grid-template-columns: 1fr;
  }
  .offer-method-card,
  .offer-package-card,
  .offer-note,
  .offer-more-card {
    padding: 22px;
  }
  .contact-form,
  .contact-side {
    padding: 22px;
  }
  .contact-form h2,
  .contact-side h2 {
    font-size: 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .offer-method-card h3,
  .offer-package-card h3,
  .offer-note h3,
  .offer-more-card h3 {
    font-size: 23px;
  }
  .content-card {
    padding: 22px;
  }
  .content-card h3 {
    font-size: 25px;
  }
  .original-split figure img {
    min-height: 300px;
  }
  .cta-band .wrap { display: grid; }
  .footer-cta { padding: 58px 0; }
  .button, .header-cta { width: 100%; }
}
