@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --ink: #272223;
  --ink-soft: #3d3638;
  --text: #5d5557;
  --muted: #7b7274;
  --ivory: #fbf9f6;
  --paper: #ffffff;
  --blush: #f5ecea;
  --blush-deep: #ead8d5;
  --rose: #b76e79;
  --rose-dark: #8f505b;
  --rose-pale: #d9afb5;
  --sage: #7a857c;
  --line: rgba(39, 34, 35, 0.12);
  --line-rose: rgba(183, 110, 121, 0.26);
  --shadow: 0 24px 70px rgba(48, 37, 39, 0.11);
  --shadow-small: 0 12px 34px rgba(48, 37, 39, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(3.25rem, 7vw, 6.45rem);
}
h2 {
  font-size: clamp(2.55rem, 4.7vw, 4.65rem);
}
h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}
h4 {
  font-size: 1.45rem;
}
p {
  color: var(--text);
}
strong {
  color: var(--ink);
}
::selection {
  background: var(--rose-pale);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  transform: translateY(0);
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.narrow {
  max-width: 830px;
}
.section {
  padding: 112px 0;
}
.section-paper {
  background: var(--paper);
}
.section-blush {
  background: var(--blush);
}
.section-ink {
  background: var(--ink);
  color: white;
}
.section-ink p,
.section-ink li {
  color: #ded6d7;
}
.section-ink strong {
  color: white;
}
.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}
.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading p {
  max-width: 680px;
  font-size: 1.06rem;
}
.section-heading.center p {
  margin-right: auto;
  margin-left: auto;
}
.lead {
  font-size: clamp(1.12rem, 1.75vw, 1.38rem);
  line-height: 1.7;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section-ink .eyebrow {
  color: #efcbd0;
}
.kicker {
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(183, 110, 121, 0.14);
  background: rgba(251, 249, 246, 0.95);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 40px), 1320px);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 600;
}
.brand-role {
  margin-top: 7px;
  color: var(--rose-dark);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  position: relative;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--rose);
  transition: right 180ms ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
}
.menu-button span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose);
  border-radius: 2px;
  background: var(--rose);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--rose-dark);
  box-shadow: 0 12px 30px rgba(183, 110, 121, 0.2);
}
.button:focus-visible,
.nav-link:focus-visible,
.text-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(183, 110, 121, 0.42);
  outline-offset: 4px;
}
.button-outline {
  background: transparent;
  color: var(--ink);
}
.button-outline:hover {
  color: white;
}
.button-light {
  border-color: white;
  background: white;
  color: var(--rose-dark);
}
.button-light:hover {
  background: var(--blush);
  color: var(--ink);
}
.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.61rem;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--rose-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}
.text-link:hover::after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
  background: radial-gradient(
      circle at 82% 14%,
      rgba(183, 110, 121, 0.16),
      transparent 31%
    ),
    linear-gradient(135deg, #fbf9f6 0%, #f4eae8 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -230px;
  left: -200px;
  border: 1px solid var(--line-rose);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.75fr);
  gap: 72px;
  align-items: center;
}
.hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--rose-dark);
  font-weight: 500;
}
.hero-copy {
  max-width: 680px;
  font-size: clamp(1.1rem, 1.8vw, 1.33rem);
}
.hero-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}
.hero-visual {
  position: relative;
  padding: 0 18px 18px 0;
}
.hero-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 82%;
  height: 82%;
  border: 1px solid var(--rose);
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  min-height: 620px;
  object-fit: cover;
  object-position: 50% 25%;
  box-shadow: var(--shadow);
}
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 46px;
  width: 168px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(39, 34, 35, 0.93);
  color: white;
  box-shadow: var(--shadow-small);
}
.hero-stamp strong {
  display: block;
  color: white;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.08;
}
.hero-stamp span {
  display: block;
  margin-top: 8px;
  color: #ddced0;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  padding: 24px 25px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child {
  border-right: 0;
}
.proof-item strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.proof-item span {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
}

.page-hero {
  padding: 76px 0 84px;
  background: linear-gradient(135deg, var(--ivory), var(--blush));
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.74fr;
  gap: 70px;
  align-items: center;
}
.page-hero h1 {
  max-width: 820px;
  margin-bottom: 25px;
}
.page-hero p {
  max-width: 700px;
  font-size: 1.12rem;
}
.photo-frame {
  position: relative;
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--rose-pale);
}
.photo-frame img {
  position: relative;
  min-height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}
.split.top {
  align-items: start;
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card,
.offer-card,
.proof-card,
.resource-card,
.credential-card {
  padding: 34px;
  border: 1px solid var(--line-rose);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-small);
}
.card h3,
.offer-card h3,
.resource-card h3,
.credential-card h3 {
  margin-bottom: 15px;
}
.card p:last-child,
.offer-card p:last-child,
.resource-card p:last-child {
  margin-bottom: 0;
}
.card-number,
.offer-label,
.credential-meta {
  display: block;
  margin-bottom: 24px;
  color: var(--rose-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offer-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.offer-card ul {
  padding-left: 19px;
  color: var(--text);
}
.offer-card li {
  margin-bottom: 7px;
}
.offer-card .text-link {
  margin-top: auto;
  padding-top: 12px;
}
.featured {
  position: relative;
  border-color: var(--rose);
  background: white;
  transform: translateY(-8px);
}
.featured::before {
  content: "Most complete";
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 11px;
  background: var(--ink);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.problem-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.problem-item {
  padding: 25px 27px;
  background: var(--paper);
}
.problem-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
}
.problem-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}
.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.diagnostic-item {
  padding: 32px 26px;
  background: var(--ink-soft);
}
.diagnostic-item span {
  display: block;
  margin-bottom: 20px;
  color: #eec6cc;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.diagnostic-item h3 {
  color: white;
  font-size: 1.7rem;
}

.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.process-step {
  position: relative;
  padding: 38px 28px 29px;
  border-top: 1px solid var(--rose);
  background: white;
}
.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  top: 14px;
  right: 20px;
  color: var(--rose-pale);
  font-family: var(--serif);
  font-size: 1.25rem;
}
.process-step p {
  margin-bottom: 0;
}
.measure-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  padding: 0;
  list-style: none;
}
.measure-list li {
  padding: 16px 18px 16px 43px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ded6d7;
}
.measure-list li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  color: #edc5cb;
  font-weight: 700;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.quote-card {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line-rose);
  background: white;
}
.quote-card blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.34;
}
.quote-card cite {
  color: var(--rose-dark);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.reference-card {
  padding: 39px;
  background: var(--ink);
  color: white;
}
.reference-card blockquote {
  margin: 0 0 21px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.28;
}
.reference-card cite {
  color: #e7c0c6;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.reference-card .text-link {
  color: white;
}

.funnel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.funnel-step {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--line-rose);
  background: white;
}
.funnel-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  text-align: center;
  line-height: 23px;
}
.funnel-step strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.15;
}
.funnel-step p {
  margin: 0;
  font-size: 0.82rem;
}

.cta-band {
  padding: 66px 0;
  background: var(--rose);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}
.cta-inner h2 {
  max-width: 770px;
  margin-bottom: 10px;
  color: white;
}
.cta-inner p {
  max-width: 730px;
  margin-bottom: 0;
  color: #fff1f3;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.logo-card {
  display: flex;
  min-height: 120px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
}
.logo-card img {
  max-width: 250px;
  max-height: 90px;
  object-fit: contain;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery img {
  height: 390px;
  object-fit: cover;
  box-shadow: var(--shadow-small);
}
.caption {
  margin-top: 10px;
  font-size: 0.74rem;
}

.resource-hero {
  padding: 72px 0;
  background: var(--ink);
  color: white;
}
.resource-hero p {
  color: #ded6d7;
}
.scorecard {
  padding: 42px;
  border: 1px solid var(--line-rose);
  background: white;
  box-shadow: var(--shadow);
}
.score-intro {
  max-width: 760px;
  margin-bottom: 30px;
}
.question {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.question {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
.question legend {
  margin-bottom: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.28;
}
.choices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice label {
  display: block;
  min-height: 100%;
  padding: 12px 10px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.72rem;
  text-align: center;
  transition:
    background 150ms ease,
    border 150ms ease,
    color 150ms ease;
}
.choice input:checked + label {
  border-color: var(--rose);
  background: var(--blush);
  color: var(--ink);
  font-weight: 700;
}
.choice input:focus-visible + label {
  outline: 3px solid rgba(183, 110, 121, 0.35);
  outline-offset: 2px;
}
.score-result {
  display: none;
  margin-top: 32px;
  padding: 34px;
  border-left: 4px solid var(--rose);
  background: var(--blush);
}
.score-result.visible {
  display: block;
}
.score-result h3 {
  margin-bottom: 10px;
}
.score-email-capture {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line-rose);
  background: rgba(255, 255, 255, 0.78);
}
.score-email-capture .ml-form-embedContainer {
  margin: 0 auto;
}
.score-email-alternative {
  margin: 18px 0 0;
  text-align: center;
}
.score-email-privacy {
  margin: 8px auto 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}
.score-number {
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--rose-dark);
}
.score-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.tool-sheet {
  padding: 42px;
  border: 1px solid var(--line);
  background: white;
}
.tool-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.tool-section:first-of-type {
  border-top: 0;
}
.tool-line {
  min-height: 42px;
  margin-top: 10px;
  border-bottom: 1px solid #aaa;
}

.action-plan {
  padding: 54px;
}
.plan-document-header {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-rose);
}
.plan-document-header h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}
.plan-step {
  display: block;
  margin-bottom: 9px;
  color: var(--rose-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.plan-meta-grid,
.plan-prompt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.plan-prompt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.plan-field {
  display: block;
  margin-top: 20px;
}
.plan-field > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.plan-field input,
.plan-field textarea,
.plan-week textarea,
.plan-measure-row > input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  color: var(--ink);
  padding: 13px 14px;
}
.plan-field textarea,
.plan-week textarea {
  resize: vertical;
}
.plan-field-full {
  grid-column: 1 / -1;
}
.plan-input-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}
.plan-input-wrap input {
  min-width: 0;
}
.plan-input-wrap small {
  color: var(--muted);
  white-space: nowrap;
}
.plan-score-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 4px;
  border: 1px solid var(--line);
  background: var(--line);
}
.plan-score-guide div {
  padding: 18px;
  background: var(--blush);
}
.plan-score-guide strong,
.plan-score-guide span {
  display: block;
}
.plan-score-guide strong {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.45rem;
}
.plan-score-guide span {
  color: var(--text);
  font-size: 0.7rem;
}
.plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 22px;
}
.plan-choice,
.plan-intervention {
  padding: 20px;
  border: 1px solid var(--line-rose);
  background: var(--ivory);
}
.plan-choice {
  display: flex;
  gap: 13px;
  cursor: pointer;
}
.plan-intervention label {
  display: flex;
  gap: 13px;
  cursor: pointer;
}
.plan-choice input,
.plan-intervention input,
.plan-week input,
.plan-measure-row input[type="checkbox"],
.plan-decision input {
  flex: 0 0 auto;
  accent-color: var(--rose-dark);
}
.plan-choice strong,
.plan-intervention strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.12;
}
.plan-choice span,
.plan-intervention span {
  color: var(--text);
  font-size: 0.83rem;
  line-height: 1.55;
}
.plan-interventions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.plan-intervention a {
  display: block;
  margin-top: 8px;
  color: var(--rose-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-formula {
  padding: 22px 24px;
  border-left: 3px solid var(--rose);
  background: var(--blush);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}
.plan-measures {
  margin-top: 24px;
  border: 1px solid var(--line);
}
.plan-measure-heading,
.plan-measure-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(100px, 0.55fr) minmax(
      100px,
      0.55fr
    );
  gap: 12px;
  align-items: center;
}
.plan-measure-heading {
  padding: 11px 15px;
  background: var(--ink);
  color: white;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-measure-row {
  padding: 13px 15px;
  border-top: 1px solid var(--line);
}
.plan-measure-row:first-of-type {
  border-top: 0;
}
.plan-measure-row > label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 0.76rem;
}
.plan-measure-row > input {
  padding: 9px 10px;
}
.plan-week-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.plan-week {
  padding: 23px;
  border: 1px solid var(--line-rose);
  background: var(--ivory);
}
.plan-week > span {
  color: var(--rose-dark);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plan-week h4 {
  margin: 7px 0 10px;
}
.plan-week p {
  min-height: 78px;
  font-size: 0.78rem;
}
.plan-week label {
  display: block;
  margin: 12px 0;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.plan-decision {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line-rose);
  background: var(--blush);
}
.plan-decision > strong {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.plan-decision label {
  color: var(--text);
  font-size: 0.8rem;
}
.plan-document-footer {
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.plan-document-footer p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.68rem;
}
.plan-cta-buttons {
  margin-top: 0;
}

.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  position: relative;
  padding: 22px 46px 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.43rem;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--rose);
  font-family: var(--sans);
  font-size: 1.25rem;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 800px;
  padding: 0 0 23px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}
.contact-card {
  padding: 34px;
  background: var(--ink);
  color: white;
}
.contact-card p,
.contact-card a {
  color: #ded6d7;
}
.contact-card a:hover {
  color: white;
}
.contact-form {
  padding: 42px;
  border: 1px solid var(--line-rose);
  background: white;
  box-shadow: var(--shadow-small);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  color: var(--ink);
  padding: 14px 15px;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.form-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.status-message {
  display: none;
  margin-top: 18px;
  padding: 14px;
  background: var(--blush);
  color: var(--ink);
}
.status-message.visible {
  display: block;
}

.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 1px;
  background: var(--rose-pale);
}
.timeline-item {
  position: relative;
  margin-bottom: 34px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -30px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  background: var(--ivory);
}
.timeline-item span {
  color: var(--rose-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.timeline-item h3 {
  margin: 6px 0 9px;
}
.notice {
  padding: 26px 30px;
  border-left: 3px solid var(--rose);
  background: white;
}
.notice p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 72px 0 28px;
  background: #201c1d;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.25fr;
  gap: 46px;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 2rem;
}
.footer-copy,
.site-footer p {
  color: #cfc5c6;
  font-size: 0.78rem;
}
.footer-heading {
  margin-bottom: 17px;
  color: white !important;
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer a:not(.footer-brand) {
  display: block;
  margin: 10px 0;
  color: #d9cfd1;
  font-size: 0.76rem;
}
.site-footer a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #a99fa0;
  font-size: 0.65rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 13px;
  }
  .nav-link {
    font-size: 0.63rem;
  }
  .hero-grid,
  .page-hero-grid {
    gap: 44px;
  }
  .hero-visual img {
    min-height: 540px;
  }
  .grid-4,
  .diagnostic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .funnel {
    grid-template-columns: repeat(3, 1fr);
  }
  .funnel-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
    position: relative;
    z-index: 82;
  }
  .main-nav {
    position: fixed;
    inset: 84px 0 0;
    display: none;
    padding: 34px 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
    background: var(--ivory);
    overflow-y: auto;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-link {
    font-family: var(--serif);
    font-size: 1.65rem;
  }
  .main-nav .button {
    margin-top: 12px;
  }
  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 62px;
  }
  .hero-visual {
    max-width: 600px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-item:nth-child(2) {
    border-right: 0;
  }
  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .grid-3,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.25fr 1fr;
  }
  .featured {
    transform: none;
  }
  .plan-meta-grid,
  .plan-prompt-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: clamp(2.85rem, 15vw, 4.4rem);
  }
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
  }
  .section {
    padding: 82px 0;
  }
  .brand-role {
    max-width: 220px;
    font-size: 0.48rem;
  }
  .hero-visual img,
  .photo-frame img {
    min-height: 420px;
  }
  .hero-stamp {
    right: -2px;
    width: 148px;
  }
  .proof-grid,
  .grid-4,
  .diagnostic-grid,
  .process,
  .measure-list,
  .gallery,
  .footer-grid,
  .form-grid,
  .funnel {
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-item:last-child {
    border-bottom: 0;
  }
  .choices {
    grid-template-columns: 1fr 1fr;
  }
  .card,
  .offer-card,
  .resource-card,
  .credential-card,
  .scorecard,
  .tool-sheet,
  .contact-form {
    padding: 28px 23px;
  }
  .plan-score-guide,
  .plan-choice-grid,
  .plan-week-grid {
    grid-template-columns: 1fr;
  }
  .plan-measure-heading {
    display: none;
  }
  .plan-measure-row {
    grid-template-columns: 1fr 1fr;
  }
  .plan-measure-row > label {
    grid-column: 1 / -1;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .button,
  .cta-band,
  .resource-hero .button {
    display: none !important;
  }
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
  .section,
  .resource-hero {
    padding: 20px 0;
    background: white !important;
    color: black !important;
  }
  .tool-sheet,
  .scorecard {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .container {
    width: 100%;
  }
  p,
  .resource-hero p {
    color: black;
  }
  .score-result {
    display: block;
  }
  .plan-page-break {
    break-before: page;
  }
  .plan-field input,
  .plan-field textarea,
  .plan-week textarea,
  .plan-measure-row > input {
    background: white;
  }
  .plan-choice,
  .plan-intervention,
  .plan-week,
  .plan-score-guide div,
  .plan-decision,
  .plan-formula {
    background: white;
    break-inside: avoid;
  }
  .plan-week-grid,
  .plan-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
