
    :root {
      --porcelain: #f8f7f4;
      --paper: #ffffff;
      --ink: #291b25;
      --ink-soft: #5c5058;
      --mulberry: #713c58;
      --mulberry-dark: #4b263b;
      --rose: #d7a8b5;
      --rose-pale: #f1e4e8;
      --sage: #a7b2a0;
      --sage-pale: #edf0ea;
      --hairline: #ded8d8;
      --shadow: 0 18px 60px rgba(41, 27, 37, 0.09);
      --radius-small: 8px;
      --radius: 18px;
      --content: 1180px;
      --display: "Cormorant Garamond", Georgia, serif;
      --body: "Manrope", system-ui, sans-serif;
      --utility: "IBM Plex Mono", ui-monospace, monospace;
    }

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

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

    body {
      margin: 0;
      color: var(--ink);
      background: var(--porcelain);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.7;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body::before {
      position: fixed;
      z-index: -1;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
      content: "";
      pointer-events: none;
    }

    a {
      color: inherit;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.22em;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    button:focus-visible,
    a:focus-visible {
      outline: 3px solid var(--rose);
      outline-offset: 4px;
    }

    .skip-link {
      position: fixed;
      z-index: 100;
      top: 12px;
      left: 12px;
      padding: 10px 14px;
      color: white;
      background: var(--ink);
      transform: translateY(-160%);
      transition: transform 160ms ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .shell {
      width: min(calc(100% - 48px), var(--content));
      margin-inline: auto;
    }

    .topbar {
      position: sticky;
      z-index: 50;
      top: 0;
      border-bottom: 1px solid rgba(222, 216, 216, 0.82);
      background: rgba(248, 247, 244, 0.92);
      backdrop-filter: blur(18px);
    }

    .topbar-inner {
      display: flex;
      min-height: 78px;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      color: var(--ink);
    }

    .brand-mark svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    .brand-copy {
      display: grid;
      line-height: 1.15;
    }

    .brand-copy strong {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 600;
    }

    .brand-copy span {
      color: var(--ink-soft);
      font-family: var(--utility);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav a {
      position: relative;
      color: var(--ink-soft);
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
    }

    .nav a::after {
      position: absolute;
      right: 0;
      bottom: -9px;
      left: 0;
      height: 2px;
      background: var(--mulberry);
      content: "";
      opacity: 0;
      transform: scaleX(0.2);
      transition: opacity 160ms ease, transform 160ms ease;
    }

    .nav a:hover,
    .nav a[aria-current="true"] {
      color: var(--ink);
    }

    .nav a[aria-current="true"]::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .print-button {
      display: inline-flex;
      min-height: 42px;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid var(--ink);
      border-radius: 999px;
      color: var(--ink);
      background: transparent;
      font: 700 12px/1 var(--body);
      cursor: pointer;
      transition: background 160ms ease, color 160ms ease;
    }

    .print-button:hover {
      color: white;
      background: var(--ink);
    }

    .print-button svg {
      width: 15px;
      height: 15px;
    }

    .hero {
      padding: 92px 0 82px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.68fr);
      align-items: center;
      gap: clamp(48px, 8vw, 104px);
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 0 0 20px;
      color: var(--mulberry);
      font-family: var(--utility);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 34px;
      height: 1px;
      background: currentColor;
      content: "";
    }

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

    h1 {
      max-width: 760px;
      margin-bottom: 28px;
      font-family: var(--display);
      font-size: clamp(58px, 7.2vw, 102px);
      font-weight: 500;
      letter-spacing: -0.045em;
      line-height: 0.88;
    }

    h1 em {
      display: block;
      color: var(--mulberry);
      font-weight: 500;
    }

    .hero-lead {
      max-width: 660px;
      margin-bottom: 34px;
      color: var(--ink-soft);
      font-size: clamp(17px, 2vw, 20px);
      line-height: 1.65;
    }

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

    .button {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 20px;
      border: 1px solid var(--mulberry);
      border-radius: 999px;
      color: white;
      background: var(--mulberry);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    .button:hover {
      border-color: var(--mulberry-dark);
      background: var(--mulberry-dark);
      transform: translateY(-2px);
    }

    .button.secondary {
      color: var(--ink);
      border-color: var(--hairline);
      background: transparent;
    }

    .button.secondary:hover {
      border-color: var(--ink);
      background: white;
    }

    .micro-note {
      margin: 18px 0 0;
      color: var(--ink-soft);
      font-size: 13px;
    }

    .product-dossier {
      position: relative;
      min-height: 590px;
      padding: 36px 34px;
      overflow: hidden;
      border: 1px solid var(--ink);
      border-radius: 145px 145px 22px 22px;
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .product-dossier::before,
    .product-dossier::after {
      position: absolute;
      content: "";
    }

    .product-dossier::before {
      top: 38px;
      right: 38px;
      width: 62px;
      height: 62px;
      border: 1px solid var(--rose);
      border-radius: 50%;
    }

    .product-dossier::after {
      top: 68px;
      right: 68px;
      width: 148px;
      height: 1px;
      background: var(--rose);
      transform: rotate(-30deg);
      transform-origin: right center;
    }

    .dossier-kicker {
      margin: 102px 0 36px;
      font-family: var(--utility);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .dossier-title {
      max-width: 270px;
      margin-bottom: 34px;
      font-family: var(--display);
      font-size: 42px;
      font-weight: 500;
      line-height: 0.98;
    }

    .dossier-list {
      margin: 0;
      border-top: 1px solid var(--hairline);
    }

    .dossier-row {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--hairline);
    }

    .dossier-row dt {
      font: 500 20px/1 var(--utility);
    }

    .dossier-row dd {
      margin: 0;
      color: var(--ink-soft);
      font-size: 13px;
      line-height: 1.35;
    }

    .dossier-seal {
      position: absolute;
      right: 28px;
      bottom: 25px;
      padding: 8px 11px;
      border: 1px solid var(--sage);
      border-radius: 999px;
      color: #5b6757;
      background: var(--sage-pale);
      font: 500 10px/1 var(--utility);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transform: rotate(-3deg);
    }

    .section {
      padding: 100px 0;
      border-top: 1px solid var(--hairline);
    }

    .section-tint {
      background: var(--paper);
    }

    .section-ink {
      color: white;
      border-top: 0;
      background: var(--ink);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.15fr);
      align-items: end;
      gap: 72px;
      margin-bottom: 58px;
    }

    .section-number {
      display: block;
      margin-bottom: 12px;
      color: var(--mulberry);
      font: 500 11px/1 var(--utility);
      letter-spacing: 0.12em;
    }

    .section-ink .section-number {
      color: var(--rose);
    }

    h2 {
      margin-bottom: 0;
      font-family: var(--display);
      font-size: clamp(44px, 5.4vw, 72px);
      font-weight: 500;
      letter-spacing: -0.035em;
      line-height: 0.98;
    }

    .section-intro {
      max-width: 650px;
      margin-bottom: 3px;
      color: var(--ink-soft);
      font-size: 18px;
      line-height: 1.75;
    }

    .section-ink .section-intro {
      color: rgba(255, 255, 255, 0.7);
    }

    .fact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--hairline);
      border-left: 1px solid var(--hairline);
    }

    .fact {
      min-height: 220px;
      padding: 28px;
      border-right: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
    }

    .fact strong {
      display: block;
      margin-bottom: 34px;
      font: 500 clamp(42px, 5vw, 64px)/0.9 var(--display);
      letter-spacing: -0.04em;
    }

    .fact span {
      display: block;
      max-width: 180px;
      color: var(--ink-soft);
      font-size: 14px;
      line-height: 1.5;
    }

    .reality-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 28px;
      margin-top: 28px;
    }

    .feature-panel,
    .caution-panel {
      padding: 36px;
      border-radius: var(--radius);
    }

    .feature-panel {
      border: 1px solid var(--hairline);
      background: var(--porcelain);
    }

    .caution-panel {
      color: white;
      background: var(--mulberry);
    }

    .panel-label {
      display: block;
      margin-bottom: 22px;
      font: 500 11px/1 var(--utility);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .feature-panel h3,
    .caution-panel h3,
    .beauty-card h3,
    .process-step h3 {
      margin-bottom: 16px;
      font-family: var(--display);
      font-size: 30px;
      font-weight: 600;
      line-height: 1.08;
    }

    .plain-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 24px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .plain-list li {
      position: relative;
      padding-left: 20px;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .plain-list li::before {
      position: absolute;
      top: 0.72em;
      left: 0;
      width: 7px;
      height: 1px;
      background: var(--mulberry);
      content: "";
    }

    .caution-panel p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.82);
    }

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

    .beauty-card {
      min-height: 280px;
      padding: 30px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-small);
      background: var(--paper);
    }

    .beauty-card:nth-child(2) {
      background: var(--rose-pale);
    }

    .beauty-card:nth-child(3) {
      background: var(--sage-pale);
    }

    .beauty-icon {
      display: grid;
      width: 44px;
      height: 44px;
      margin-bottom: 46px;
      place-items: center;
      border: 1px solid currentColor;
      border-radius: 50%;
      font: 500 12px/1 var(--utility);
    }

    .beauty-card p {
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .budget-note {
      display: grid;
      grid-template-columns: 0.75fr 1.25fr;
      gap: 60px;
      margin-bottom: 42px;
      padding: 34px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .budget-note strong {
      font: 500 42px/1 var(--display);
    }

    .budget-note p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
    }

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

    .scalability-note {
      margin-top: 28px;
      padding: 24px 28px;
      border-left: 4px solid #a8c0a5;
      background: rgba(255, 255, 255, 0.08);
    }

    .scalability-note strong {
      display: block;
      margin-bottom: 7px;
      color: white;
      font: 500 25px/1.15 var(--display);
    }

    .scalability-note p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
    }

    .package {
      position: relative;
      min-width: 0;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
    }

    .package.recommended {
      color: var(--ink);
      background: var(--paper);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
      transform: translateY(-14px);
    }

    .package-badge {
      position: absolute;
      top: -13px;
      right: 24px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--ink);
      background: var(--rose);
      font: 500 10px/1 var(--utility);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .package-code {
      display: block;
      margin-bottom: 22px;
      color: var(--rose);
      font: 500 11px/1 var(--utility);
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .recommended .package-code {
      color: var(--mulberry);
    }

    .package h3 {
      min-height: 58px;
      margin-bottom: 16px;
      font-family: var(--display);
      font-size: 34px;
      font-weight: 600;
      line-height: 0.98;
    }

    .price {
      display: flex;
      align-items: end;
      gap: 8px;
      margin-bottom: 6px;
    }

    .price strong {
      font: 500 clamp(48px, 4.6vw, 68px)/0.88 var(--display);
      letter-spacing: -0.05em;
    }

    .price span {
      padding-bottom: 5px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 12px;
    }

    .recommended .price span {
      color: var(--ink-soft);
    }

    .price-total {
      min-height: 44px;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.62);
      font: 400 11px/1.4 var(--utility);
    }

    .recommended .price-total {
      color: var(--ink-soft);
    }

    .package-summary {
      min-height: 85px;
      margin-bottom: 22px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
    }

    .recommended .package-summary {
      color: var(--ink-soft);
    }

    .package-list {
      display: grid;
      gap: 11px;
      margin: 0;
      padding: 22px 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.17);
      list-style: none;
    }

    .recommended .package-list {
      border-color: var(--hairline);
    }

    .package-list li {
      position: relative;
      padding-left: 20px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      line-height: 1.5;
    }

    .recommended .package-list li {
      color: var(--ink-soft);
    }

    .package-list li::before {
      position: absolute;
      top: 0.62em;
      left: 0;
      width: 8px;
      height: 8px;
      border: 1px solid var(--rose);
      border-radius: 50%;
      content: "";
    }

    .recommended .package-list li::before {
      border-color: var(--mulberry);
      background: var(--rose-pale);
    }

    .package-limit {
      margin: 22px 0 0;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-small);
      color: rgba(255, 255, 255, 0.62);
      font-size: 12px;
      line-height: 1.55;
    }

    .recommended .package-limit {
      color: var(--ink-soft);
      border-color: var(--hairline);
      background: var(--rose-pale);
    }

    .package-offer {
      margin: 14px 0 0;
      padding: 18px;
      border: 2px solid var(--rose);
      border-radius: var(--radius-small);
      color: white;
      background: rgba(215, 168, 181, 0.14);
      font-size: 13px;
      line-height: 1.55;
    }

    .package-offer strong {
      display: block;
      margin-bottom: 5px;
      color: var(--rose);
      font-family: var(--display);
      font-size: 21px;
      font-weight: 600;
      line-height: 1.1;
    }

    .recommended .package-offer {
      color: var(--ink);
      border-color: var(--mulberry);
      background: var(--rose-pale);
    }

    .recommended .package-offer strong {
      color: var(--mulberry);
    }

    .comparison-wrap {
      margin-top: 42px;
      overflow-x: auto;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
    }

    .comparison-note {
      margin: 14px 0 0;
      padding: 18px 20px;
      border-left: 4px solid var(--rose);
      color: rgba(255, 255, 255, 0.76);
      background: rgba(255, 255, 255, 0.06);
      font-size: 13px;
    }

    .comparison {
      width: 100%;
      min-width: 760px;
      border-collapse: collapse;
      font-size: 13px;
    }

    .comparison th,
    .comparison td {
      padding: 16px 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.13);
      text-align: center;
    }

    .comparison th:first-child,
    .comparison td:first-child {
      width: 40%;
      text-align: left;
    }

    .comparison th {
      color: white;
      font: 500 11px/1.2 var(--utility);
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .comparison td {
      color: rgba(255, 255, 255, 0.7);
    }

    .comparison tr:last-child td {
      border-bottom: 0;
    }

    .check {
      color: var(--rose);
      font-weight: 700;
    }

    .cost-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .cost-item {
      display: grid;
      grid-template-columns: 190px 1fr;
      gap: 28px;
      padding: 28px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-small);
      background: white;
    }

    .cost-item h3 {
      margin-bottom: 0;
      font-family: var(--display);
      font-size: 24px;
      font-weight: 600;
      line-height: 1.05;
    }

    .cost-item p {
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .mydata-note {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 24px;
      margin-top: 18px;
      padding: 26px 28px;
      border-left: 4px solid var(--sage);
      background: var(--sage-pale);
    }

    .mydata-note strong {
      font-family: var(--display);
      font-size: 26px;
      font-weight: 600;
      white-space: nowrap;
    }

    .mydata-note p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .source-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin: 54px 0 22px;
    }

    .source-heading h3 {
      margin: 0;
      font-family: var(--display);
      font-size: 34px;
      font-weight: 600;
      line-height: 1;
    }

    .source-heading p {
      max-width: 500px;
      margin: 0;
      color: var(--ink-soft);
      font-size: 13px;
      text-align: right;
    }

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

    .source-card {
      padding: 24px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-small);
      background: white;
    }

    .source-card strong {
      display: block;
      margin-bottom: 10px;
      font-family: var(--display);
      font-size: 24px;
      font-weight: 600;
      line-height: 1.05;
    }

    .source-card p {
      margin-bottom: 14px;
      color: var(--ink-soft);
      font-size: 13px;
    }

    .source-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
    }

    .source-links a {
      color: var(--mulberry);
      font-size: 12px;
      font-weight: 700;
    }

    .seo-explainer {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 24px;
      margin-top: 24px;
      padding: 28px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-small);
      background: var(--rose-pale);
    }

    .seo-explainer strong {
      color: var(--mulberry);
      font: 500 24px/1 var(--display);
      white-space: nowrap;
    }

    .seo-explainer p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .seo-explainer p + p {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(113, 60, 88, 0.18);
    }

    .seo-explainer b {
      color: var(--ink);
    }

    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .delivery-card {
      min-height: 230px;
      padding: 28px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-small);
      background: white;
    }

    .delivery-card span {
      display: block;
      margin-bottom: 44px;
      color: var(--mulberry);
      font: 500 11px/1 var(--utility);
      letter-spacing: 0.1em;
    }

    .delivery-card h3 {
      margin-bottom: 12px;
      font-family: var(--display);
      font-size: 27px;
      font-weight: 600;
      line-height: 1.05;
    }

    .delivery-card p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .aftercare {
      margin-top: 54px;
      padding: 38px;
      border-radius: var(--radius);
      color: white;
      background: var(--ink);
    }

    .aftercare-head {
      display: grid;
      grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
      align-items: end;
      gap: 48px;
      margin-bottom: 30px;
    }

    .aftercare-head .panel-label {
      margin-bottom: 14px;
      color: var(--rose);
    }

    .aftercare-head h3 {
      margin-bottom: 0;
      font-family: var(--display);
      font-size: 38px;
      font-weight: 600;
      line-height: 1;
    }

    .aftercare-head p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
    }

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

    .aftercare-card {
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius-small);
      background: rgba(255, 255, 255, 0.05);
    }

    .aftercare-card.featured {
      color: var(--ink);
      border-color: var(--rose);
      background: var(--rose-pale);
    }

    .aftercare-price {
      display: block;
      margin-bottom: 18px;
      color: var(--rose);
      font-family: var(--display);
      font-size: 30px;
      font-weight: 600;
      line-height: 1;
    }

    .featured .aftercare-price {
      color: var(--mulberry);
    }

    .aftercare-card h4 {
      margin: 0 0 12px;
      font-family: var(--display);
      font-size: 24px;
      font-weight: 600;
      line-height: 1.05;
    }

    .aftercare-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
    }

    .aftercare-card.featured p {
      color: var(--ink-soft);
    }

    .aftercare-card p + p {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .aftercare-card.featured p + p {
      border-color: rgba(113, 60, 88, 0.18);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      counter-reset: process;
    }

    .process-step {
      position: relative;
      min-height: 280px;
      padding: 28px;
      border-top: 1px solid var(--hairline);
      border-right: 1px solid var(--hairline);
      counter-increment: process;
    }

    .process-step:first-child {
      border-left: 1px solid var(--hairline);
    }

    .process-step::before {
      display: block;
      margin-bottom: 62px;
      color: var(--mulberry);
      content: "0" counter(process);
      font: 500 12px/1 var(--utility);
      letter-spacing: 0.1em;
    }

    .process-step p {
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .client-needs {
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 64px;
      margin-top: 56px;
      padding: 44px;
      border-radius: var(--radius);
      background: var(--rose-pale);
    }

    .client-needs h3 {
      margin-bottom: 0;
      font-family: var(--display);
      font-size: 38px;
      font-weight: 600;
      line-height: 1;
    }

    .number-list {
      display: grid;
      gap: 16px;
      margin: 0;
      padding: 0;
      list-style: none;
      counter-reset: needs;
    }

    .number-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      color: var(--ink-soft);
      font-size: 15px;
      counter-increment: needs;
    }

    .number-list li::before {
      color: var(--mulberry);
      content: "0" counter(needs);
      font: 500 11px/1.7 var(--utility);
    }

    .terms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .term-card {
      padding: 28px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-small);
      background: white;
    }

    .term-card strong {
      display: block;
      margin-bottom: 18px;
      font-family: var(--display);
      font-size: 25px;
      font-weight: 600;
      line-height: 1.05;
    }

    .term-card p {
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

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

    .collaborator-card {
      min-height: 310px;
      padding: 34px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      background: white;
    }

    .collaborator-card:first-child {
      color: white;
      border-color: var(--ink);
      background: var(--ink);
    }

    .collaborator-card:last-child {
      background: var(--rose-pale);
    }

    .collaborator-role {
      display: block;
      margin-bottom: 42px;
      color: var(--mulberry);
      font: 500 11px/1.3 var(--utility);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .collaborator-card:first-child .collaborator-role {
      color: var(--rose);
    }

    .collaborator-card h3 {
      margin-bottom: 14px;
      font-family: var(--display);
      font-size: 38px;
      font-weight: 600;
      line-height: 1;
    }

    .collaborator-card p {
      margin-bottom: 22px;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .collaborator-card:first-child p {
      color: rgba(255, 255, 255, 0.76);
    }

    .collaborator-card a {
      color: var(--mulberry);
      font-size: 13px;
      font-weight: 700;
    }

    .collaborator-card:first-child a {
      color: var(--rose);
    }

    .partner-benefit {
      display: grid;
      grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
      gap: 42px;
      margin-top: 18px;
      padding: 30px 32px;
      border-left: 4px solid var(--sage);
      background: var(--sage-pale);
    }

    .partner-benefit strong {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 600;
      line-height: 1.05;
    }

    .partner-benefit p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .closing {
      padding: 112px 0;
      color: white;
      background: var(--mulberry);
    }

    .closing-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
      align-items: end;
      gap: 72px;
    }

    .closing h2 {
      max-width: 760px;
      font-size: clamp(52px, 7vw, 86px);
    }

    .closing h2 em {
      color: var(--rose);
      font-weight: 500;
    }

    .closing p {
      max-width: 560px;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, 0.78);
    }

    .contact-card {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.07);
    }

    .contact-logo {
      display: block;
      width: 42px;
      height: 42px;
      margin-bottom: 24px;
      color: white;
    }

    .contact-card .panel-label {
      color: var(--rose);
    }

    .contact-card strong {
      display: block;
      margin-bottom: 2px;
      font-family: var(--display);
      font-size: 30px;
      font-weight: 600;
    }

    .contact-card > span {
      display: block;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
    }

    .contact-links {
      display: grid;
      gap: 8px;
    }

    .contact-links a {
      color: white;
      font-size: 14px;
      text-decoration-color: rgba(255, 255, 255, 0.35);
    }

    footer {
      padding: 28px 0;
      color: var(--ink-soft);
      background: var(--porcelain);
      font-size: 12px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-inner p {
      margin: 0;
    }

    .mobile-cta {
      display: none;
    }

    @media (max-width: 1050px) {
      .nav a:not(:last-of-type) {
        display: none;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 48px;
      }

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

      .package,
      .package.recommended {
        display: grid;
        grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
        gap: 34px;
        transform: none;
      }

      .package-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 0;
        border-top: 0;
      }

      .package-limit {
        grid-column: 2;
      }

      .package-offer {
        grid-column: 2;
      }

      .package-summary {
        min-height: 0;
      }

      .cost-item {
        grid-template-columns: 1fr;
        gap: 12px;
      }
    }

    @media (max-width: 900px) {
      .hero {
        padding-top: 64px;
      }

      .hero-grid,
      .section-head,
      .reality-grid,
      .budget-note,
      .aftercare-head,
      .collaborator-grid,
      .partner-benefit,
      .client-needs,
      .closing-grid {
        grid-template-columns: 1fr;
      }

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

      h1 {
        max-width: 700px;
      }

      .product-dossier {
        width: min(100%, 560px);
        min-height: 520px;
        margin-inline: auto;
        border-radius: 120px 120px 22px 22px;
      }

      .dossier-kicker {
        margin-top: 70px;
      }

      .section-head,
      .closing-grid {
        gap: 28px;
      }

      .fact-grid,
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .beauty-grid,
      .terms-grid,
      .delivery-grid {
        grid-template-columns: 1fr;
      }

      .beauty-card {
        min-height: 0;
      }

      .beauty-icon {
        margin-bottom: 30px;
      }

      .process-step:nth-child(3) {
        border-left: 1px solid var(--hairline);
      }

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

      .source-heading {
        align-items: start;
        flex-direction: column;
      }

      .source-heading p {
        text-align: left;
      }

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

      .closing-grid {
        align-items: start;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-bottom: 74px;
        font-size: 15px;
      }

      .shell {
        width: min(calc(100% - 30px), var(--content));
      }

      .topbar-inner {
        min-height: 66px;
      }

      .brand-copy span,
      .nav {
        display: none;
      }

      .hero {
        padding: 50px 0 64px;
      }

      h1 {
        font-size: clamp(50px, 16vw, 74px);
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .product-dossier {
        min-height: 485px;
        padding: 28px 24px;
        border-radius: 88px 88px 18px 18px;
      }

      .product-dossier::before {
        top: 28px;
        right: 28px;
        width: 46px;
        height: 46px;
      }

      .product-dossier::after {
        top: 51px;
        right: 51px;
        width: 100px;
      }

      .dossier-kicker {
        margin: 58px 0 28px;
      }

      .dossier-title {
        margin-bottom: 26px;
        font-size: 36px;
      }

      .section,
      .closing {
        padding: 74px 0;
      }

      .section-head {
        margin-bottom: 38px;
      }

      h2 {
        font-size: clamp(40px, 13vw, 56px);
      }

      .section-intro {
        font-size: 16px;
      }

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

      .fact {
        min-height: 0;
      }

      .plain-list {
        grid-template-columns: 1fr;
      }

      .feature-panel,
      .caution-panel,
      .beauty-card,
      .cost-item,
      .collaborator-card,
      .term-card,
      .contact-card {
        padding: 24px;
      }

      .aftercare {
        padding: 26px;
      }

      .budget-note {
        gap: 18px;
      }

      .package,
      .package.recommended {
        display: block;
        padding: 26px;
      }

      .package h3,
      .package-summary {
        min-height: 0;
      }

      .package-list {
        grid-template-columns: 1fr;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.17);
      }

      .recommended .package-list {
        border-color: var(--hairline);
      }

      .package-limit {
        margin-top: 20px;
      }

      .mydata-note {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .mydata-note strong {
        white-space: normal;
      }

      .seo-explainer {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .seo-explainer strong {
        white-space: normal;
      }

      .process-step,
      .process-step:nth-child(3) {
        min-height: 0;
        border-right: 1px solid var(--hairline);
        border-left: 1px solid var(--hairline);
      }

      .process-step::before {
        margin-bottom: 32px;
      }

      .client-needs {
        gap: 30px;
        padding: 28px;
      }

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .mobile-cta {
        position: fixed;
        z-index: 48;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px 12px;
        border-top: 1px solid var(--hairline);
        background: rgba(248, 247, 244, 0.96);
        backdrop-filter: blur(18px);
      }

      .mobile-cta .button {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 11px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media print {
      @page {
        size: A4;
        margin: 15mm;
      }

      :root {
        --porcelain: #ffffff;
      }

      body {
        padding: 0;
        color: #111;
        background: white;
        font-size: 10pt;
      }

      body::before,
      .topbar,
      .hero-actions,
      .mobile-cta,
      .print-button {
        display: none !important;
      }

      .shell {
        width: 100%;
      }

      .hero,
      .section,
      .closing {
        padding: 26px 0;
      }

      .hero-grid,
      .section-head,
      .reality-grid,
      .beauty-grid,
      .budget-note,
      .package-grid,
      .cost-grid,
      .process-grid,
      .aftercare-head,
      .aftercare-grid,
      .collaborator-grid,
      .partner-benefit,
      .client-needs,
      .terms-grid,
      .delivery-grid,
      .closing-grid {
        display: block;
      }

      h1 {
        font-size: 48pt;
      }

      h2 {
        font-size: 30pt;
      }

      .product-dossier {
        min-height: 0;
        margin-top: 24px;
        border-radius: 16px;
        box-shadow: none;
      }

      .dossier-kicker {
        margin-top: 0;
      }

      .fact-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .fact {
        min-height: 0;
        padding: 14px;
      }

      .feature-panel,
      .caution-panel,
      .beauty-card,
      .package,
      .cost-item,
      .mydata-note,
      .source-card,
      .seo-explainer,
      .delivery-card,
      .aftercare,
      .aftercare-card,
      .collaborator-card,
      .partner-benefit,
      .process-step,
      .client-needs,
      .term-card,
      .contact-card {
        margin-bottom: 14px;
        break-inside: avoid;
      }

      .section-ink,
      .closing,
      .caution-panel,
      .aftercare,
      .collaborator-card:first-child {
        color: #111;
        background: #f0f0f0;
      }

      .collaborator-card:first-child p,
      .collaborator-card:first-child a {
        color: #333;
      }

      .aftercare-card,
      .aftercare-card.featured {
        color: #111;
        border-color: #bbb;
        background: white;
      }

      .aftercare-price,
      .featured .aftercare-price {
        color: #333;
      }

      .section-ink .section-intro,
      .budget-note p,
      .package-summary,
      .package-list li,
      .price span,
      .price-total,
      .package-limit,
      .package-offer,
      .comparison-note,
      .closing p,
      .contact-card > span,
      .contact-links a,
      .aftercare-head p,
      .aftercare-card p,
      .caution-panel p {
        color: #333;
      }

      .package,
      .package.recommended {
        display: block;
        color: #111;
        border-color: #bbb;
        background: white;
        box-shadow: none;
        transform: none;
      }

      .package-offer strong,
      .recommended .package-offer strong {
        color: #333;
      }

      .package-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }

      .comparison-wrap {
        border-color: #aaa;
      }

      .comparison {
        min-width: 0;
      }

      .comparison th,
      .comparison td {
        color: #111;
        border-color: #ccc;
      }

      a {
        text-decoration: none;
      }
    }
  
.proposal-body {max-width: 900px;} .proposal-body p, .proposal-body li {max-width: 78ch;} .proposal-body h3 {margin-top:32px;} .proposal-body table {width:100%;border-collapse:collapse;margin:28px 0;font-size:15px;} .proposal-body th,.proposal-body td {padding:16px;text-align:left;border-bottom:1px solid var(--hairline);vertical-align:top;} .proposal-body th {background:var(--rose-pale);color:var(--ink);} .proposal-body li {margin:12px 0;} .proposal-price {display:grid;grid-template-columns: minmax(0,1fr) minmax(260px,.7fr);gap:48px;align-items:start;} .proposal-price .package {color:var(--ink);background:white;} .proposal-price .price strong {font-size:64px;} .draft-note {padding:12px 0;color:var(--ink-soft);font-size:13px;} .proposal-body a {overflow-wrap:anywhere;} @media(max-width:760px){.proposal-price{grid-template-columns:1fr;gap:24px}.proposal-body th,.proposal-body td{padding:10px;font-size:13px}.hero h1{font-size:48px}} @media print{.proposal-price{display:block}.section-ink{color:#291b25!important;background:white!important}.proposal-body table{font-size:10pt}.proposal-body th,.proposal-body td{padding:8px}.section{break-inside:auto}.proposal-price .package{break-inside:avoid}}

.proposal-packages{display:grid;gap:28px;min-width:0}.proposal-price .price{flex-wrap:wrap}.proposal-price .price strong{font-size:clamp(42px,4vw,64px)}.proposal-price .proposal-body{min-width:0}.proposal-body table{table-layout:fixed;overflow-wrap:anywhere}
.proposal-packages .package .price span,.proposal-packages .package .price-total{color:var(--ink-soft)}.proposal-packages .package .package-code{color:var(--mulberry)}

.proposal-packages .package{text-align:center}.proposal-packages .price{justify-content:center}.proposal-packages .button{align-self:center}.micro-note{text-align:center}

/* Center the entire proposal's editorial content. */
main, footer { text-align: center; }
.hero-actions, .price { justify-content: center; }
.hero-lead, .micro-note, .draft-note, .proposal-body, .proposal-body p, .proposal-body ul, .proposal-body ol, .closing p { margin-left: auto; margin-right: auto; }
.section-head { display: block; text-align: center; }
.section-head > div, .section-head h2 { max-width: none; }
.proposal-body th, .proposal-body td { text-align: center; }
.proposal-body ul, .proposal-body ol { padding-left: 0; list-style-position: inside; }
.product-dossier, .dossier-row, .contact-card { text-align: center; }
.dossier-row { justify-items: center; }
.contact-card { align-items: center; }
.closing h2 em { display: block; }
.footer-inner { justify-content: center; flex-wrap: wrap; }

/* Justified reading text, with centered headings and pricing cards. */
.proposal-body p,
.proposal-body li {
  text-align: justify;
  text-align-last: start;
  hyphens: auto;
}
.proposal-body ul,
.proposal-body ol {
  list-style-position: outside;
  padding-inline-start: 1.5em;
}
.proposal-body li {
  padding-inline-start: 0.35em;
  margin-inline: 0;
  max-width: none;
}

#references .proposal-body ul {
  padding: 0;
  list-style: none;
  width: 100%;
}
#references .proposal-body li {
  padding: 0;
  text-align: center;
  text-align-last: center;
  hyphens: none;
}
#references .proposal-body li a {
  display: inline-block;
  padding: 6px 12px;
}

/* Keep the dossier content centered and let its height follow the copy. */
.dossier-title {
  max-width: none;
  margin-inline: auto;
  text-wrap: balance;
}
.dossier-row {
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
}
.dossier-row dd {
  width: 100%;
  text-wrap: balance;
}
.dossier-seal {
  position: relative;
  display: table;
  right: auto;
  bottom: auto;
  max-width: 100%;
  margin: 28px auto 0;
  line-height: 1.5;
  text-wrap: balance;
}

.proposal-shared-terms {
  width: 100%;
  margin: 48px auto 0;
}
