    :root {
      --bg: #f6f1ea;
      --bg-soft: #fcfaf7;
      --paper: #fffdf8;
      --ink: #1f2624;
      --forest: #25322d;
      --muted: #5f6a67;
      --line: rgba(31, 38, 36, 0.12);
      --accent: #7a8a7b;
      --accent-2: #d9c4b7;
      --card: rgba(255,255,255,0.78);
      --shadow: 0 20px 52px rgba(27, 36, 33, 0.08);
      --shadow-soft: 0 12px 28px rgba(27, 36, 33, 0.06);
      --radius-lg: 24px;
      --max: 1160px;
      --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
      --font-body: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-main: var(--font-body);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    .skip-link {
      position: absolute;
      left: 16px;
      top: 12px;
      transform: translateY(-140%);
      z-index: 80;
      padding: 10px 14px;
      border-radius: 999px;
      background: #1f2624;
      color: #fff;
      transition: transform .18s ease;
    }
    .skip-link:focus-visible { transform: translateY(0); }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 10%, rgba(217,196,183,0.48), transparent 26%),
        radial-gradient(circle at 88% 4%, rgba(122,138,123,0.16), transparent 22%),
        linear-gradient(180deg, #faf6f0 0%, #f6f1ea 36%, #faf7f1 100%);
      line-height: 1.62;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      outline: 2px solid rgba(92, 109, 93, 0.7);
      outline-offset: 3px;
    }
    img { max-width: 100%; display: block; }
    .wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
    .nav .wrap { width: min(1320px, calc(100% - 48px)); }
    .section { padding: clamp(64px, 7vw, 88px) 0; }
    section[id] { scroll-margin-top: 110px; }
    h1,
    h2,
    h3,
    .brand-title,
    .start-path strong,
    .trust-strip-card strong,
    .slot-day-head strong,
    .price-card .price,
    .blog-card h3,
    .lead-card h3,
    .cta-panel h2 {
      font-family: var(--font-display);
      font-weight: 600;
    }
    .eyebrow {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      padding: 11px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(31,38,36,0.10);
      box-shadow: var(--shadow-soft);
      color: var(--muted);
      font-size: 14px;
      letter-spacing: .02em;
    }
    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(122,138,123,0.10);
    }
    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      overflow: visible;
      backdrop-filter: blur(20px);
      background: rgba(252,250,247,0.82);
      border-bottom: 1px solid rgba(31, 38, 36, 0.08);
      box-shadow: 0 10px 24px rgba(27, 36, 33, 0.04);
    }
    .nav-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .brand {
      display: flex;
      gap: 12px;
      align-items: center;
      flex: 0 0 auto;
      min-width: 0;
      min-height: 44px;
      margin-right: 18px;
    }
    .logo {
      width: 48px; height: 48px; border-radius: 18px;
      display: grid; place-items: center;
      flex: 0 0 auto;
      overflow: hidden;
      background: rgba(255,255,255,0.82);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .logo img {
      display: block;
      width: 100%;
      height: 100%;
    }
    .brand-title {
      margin: 0;
      font-size: 17px;
      line-height: 1;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }
    .brand-subtitle {
      display: block;
      color: var(--muted);
      font-size: 10px;
      margin-top: 6px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: flex-end;
      flex: 1 1 auto;
      min-width: 0;
      flex-wrap: nowrap;
    }
    .nav-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      min-width: 44px;
      color: var(--muted);
      font-size: 13.5px;
      font-family: var(--font-body);
      letter-spacing: 0.01em;
      white-space: nowrap;
      transition: color .2s ease;
    }
    .nav-links a.active { color: var(--ink); font-weight: 600; }
    .nav-links .btn {
      margin-left: 16px;
      flex: 0 0 auto;
    }
    .burger-toggle {
      display: none;
      width: 44px; height: 44px;
      border: 0; background: transparent;
      cursor: pointer;
      position: relative;
      flex: 0 0 auto;
    }
    .burger-toggle span,
    .burger-toggle span::before,
    .burger-toggle span::after {
      display: block;
      width: 22px; height: 2px;
      background: var(--ink);
      border-radius: 2px;
      position: absolute;
      left: 11px;
      transition: transform .25s ease, opacity .2s ease;
    }
    .burger-toggle span { top: 21px; }
    .burger-toggle span::before { content: ""; top: -7px; }
    .burger-toggle span::after { content: ""; top: 7px; }
    .nav.menu-open .burger-toggle span { background: transparent; }
    .nav.menu-open .burger-toggle span::before { transform: rotate(45deg) translate(5px, 5px); }
    .nav.menu-open .burger-toggle span::after { transform: rotate(-45deg) translate(5px, -5px); }
    .mobile-menu {
      display: none;
      position: absolute;
      top: calc(100% - 1px);
      left: 0;
      right: 0;
      height: calc(100dvh - 72px);
      min-height: calc(100vh - 72px);
      z-index: 35;
      padding: 18px 24px calc(32px + env(safe-area-inset-bottom, 0px));
      background: rgba(248,244,238,0.98);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(31, 38, 36, 0.08);
      box-shadow: 0 18px 36px rgba(27, 36, 33, 0.08);
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu[hidden] { display: none !important; }
    .mobile-menu a {
      display: block;
      padding: 14px 18px;
      font-size: 18px;
      border-radius: 16px;
      transition: background .15s ease;
    }
    .mobile-menu a:hover { background: rgba(122,138,123,0.08); }
    .mobile-menu .btn.primary { margin-top: 12px; text-align: center; }
    body.menu-open .mobile-menu { display: flex; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 22px;
      min-height: 52px;
      border-radius: 999px;
      font-weight: 600;
      font-family: var(--font-body);
      font-size: 14px;
      letter-spacing: 0.01em;
      border: 1px solid transparent;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn.primary {
      background: linear-gradient(135deg, var(--forest), #33423a);
      color: #fff;
      border-color: rgba(37,50,45,0.16);
      box-shadow: 0 18px 36px rgba(37, 50, 45, 0.18);
    }
    .btn.ghost {
      background: rgba(255,255,255,0.70);
      border-color: rgba(31,38,36,0.12);
      color: var(--ink);
    }
    .btn.ghost:hover { box-shadow: var(--shadow-soft); }
    .hero {
      position: relative;
      padding: clamp(20px, 3.2vw, 34px) 0 22px;
      overflow: clip;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: min(780px, calc(100svh - 78px));
      background:
        radial-gradient(circle at 14% 16%, rgba(217,196,183,0.68), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(122,138,123,0.16), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.42) 58%, rgba(255,255,255,0));
      z-index: 0;
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(31,38,36,0.10), transparent);
      z-index: 0;
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
      gap: clamp(28px, 4vw, 56px);
      align-items: center;
      min-height: min(640px, calc(100svh - 138px));
    }
    .hero-copy {
      padding: 4px 0 18px;
      max-width: 640px;
    }
    .hero-signature {
      display: grid;
      gap: 6px;
      margin: 16px 0 12px;
    }
    .hero-signature strong {
      font-family: var(--font-display);
      font-size: clamp(28px, 2.8vw, 36px);
      line-height: 0.94;
      letter-spacing: -0.02em;
    }
    .hero-signature span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.58;
      max-width: 40ch;
    }
    .hero h1 {
      margin: 0 0 12px;
      font-size: clamp(38px, 4.6vw, 62px);
      line-height: 0.94;
      letter-spacing: -0.04em;
      font-weight: 600;
      max-width: 11ch;
      text-wrap: balance;
    }
    .hero p.lead {
      margin: 0 0 18px;
      font-size: 16px;
      line-height: 1.68;
      color: var(--muted);
      max-width: 46ch;
    }
    .button-row { display: flex; gap: 12px 14px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
    .button-row.flush { margin-top: 18px; margin-bottom: 0; }
    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: underline;
      text-decoration-color: rgba(122,138,123,0.34);
      text-underline-offset: 4px;
      transition: text-decoration-color .18s ease, color .18s ease;
    }
    .text-link:hover {
      color: #435044;
      text-decoration-color: var(--accent);
    }
    .text-link::after {
      content: "→";
      font-size: 18px;
      line-height: 1;
    }
    .hero-facts {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 14px;
      color: var(--ink);
      font-size: 13px;
      line-height: 1.45;
    }
    .hero-facts span {
      display: inline-flex;
      align-items: center;
      padding: 10px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,0.76);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      font-weight: 600;
    }
    .pill {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(31,38,36,0.08);
      font-size: 14px;
      color: var(--ink);
    }
    .hero-note {
      display: grid;
      gap: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      max-width: 44ch;
      padding-top: 14px;
      border-top: 1px solid rgba(31,38,36,0.10);
    }
    .hero-note strong {
      color: var(--ink);
      font-weight: 700;
    }
    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 16px;
      margin-top: 18px;
      font-size: 14px;
    }
    .hero-proof a {
      color: var(--ink);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: rgba(122,138,123,0.35);
      text-underline-offset: 4px;
    }
    .hero-proof a:hover {
      text-decoration-color: var(--accent);
    }
    .hero-card {
      position: relative;
      border-radius: 38px;
      min-height: 520px;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(217,196,183,0.68), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.58));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: 0 28px 56px rgba(27, 36, 33, 0.12);
      display: grid;
      align-items: end;
      gap: 0;
      padding: 16px;
      isolation: isolate;
    }
    .hero-card::before,
    .hero-card::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(4px);
      z-index: -1;
    }
    .hero-card::before {
      width: 320px;
      height: 320px;
      right: -40px;
      top: -34px;
      background: radial-gradient(circle, rgba(122,138,123,0.18), rgba(122,138,123,0));
    }
    .hero-card::after {
      width: 220px;
      height: 220px;
      left: -60px;
      bottom: -60px;
      background: radial-gradient(circle, rgba(217,196,183,0.26), rgba(217,196,183,0));
    }
    .portrait-placeholder {
      width: 100%;
      aspect-ratio: 0.86;
      border-radius: 30px;
      margin: 0 auto 14px;
      background: linear-gradient(180deg, rgba(250,247,243,0.98), rgba(230,220,211,0.94));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: 0 28px 62px rgba(31,38,36,0.18);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .portrait-placeholder::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 46%;
      background: linear-gradient(180deg, rgba(31,38,36,0), rgba(31,38,36,0.28));
      z-index: 1;
      pointer-events: none;
    }
    .portrait-media {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 14%;
      transform: scale(1.005);
      filter: saturate(0.98) contrast(1.02);
    }
    .initials {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.92);
      background: rgba(31,38,36,0.42);
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(10px);
      border-radius: 999px;
      padding: 8px 12px;
    }
    .hero-overlay {
      display: flex;
      flex-direction: column;
      background: rgba(252,250,247,0.92);
      border: 1px solid rgba(31,38,36,0.10);
      border-radius: 24px;
      padding: 20px 22px;
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow-soft);
    }
    .hero-overlay-label {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #4c5a51;
    }
    .mini-list { display: grid; gap: 8px; color: var(--muted); font-size: 15px; line-height: 1.6; }
    .mini-list span { display: flex; gap: 10px; align-items: start; }
    .mini-list span::before { content: "•"; color: var(--forest); font-weight: 700; }

    .section-tight {
      padding-top: 8px;
      padding-bottom: 20px;
    }
    .trust-strip-section {
      padding-top: 8px;
      padding-bottom: 12px;
    }
    .start-paths {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .start-path {
      display: grid;
      gap: 10px;
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .start-path:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(25,33,31,0.10);
      border-color: rgba(122,138,123,0.22);
    }
    .start-path-kicker {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #5a695b;
    }
    .start-path strong {
      font-size: 24px;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }
    .start-path span:last-child {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
    }
    .trust-strip-head {
      display: grid;
      gap: 6px;
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 15px;
    }
    .trust-strip-head strong {
      color: var(--ink);
      font-size: 18px;
    }
    .trust-strip-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .trust-strip-card {
      display: grid;
      gap: 8px;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .trust-strip-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(25,33,31,0.10);
      border-color: rgba(122,138,123,0.22);
    }
    .trust-strip-kicker {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #5a695b;
    }
    .trust-strip-card strong {
      font-size: 20px;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }
    .trust-strip-card span:last-child {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 34px;
    }
    .section-head.compact { margin-bottom: 18px; }
    .section-head.compact-lg { margin-bottom: 22px; }
    .section-head h2 {
      margin: 0;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 0.94;
      letter-spacing: -0.035em;
      text-wrap: balance;
    }
    .section-head p {
      margin: 0;
      max-width: 58ch;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.72;
      text-wrap: pretty;
    }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
    .card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(27,36,33,0.10); border-color: rgba(122,138,123,0.22); }
    .card h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.02; letter-spacing: -0.03em; }
    .card p { margin: 0; color: var(--muted); flex: 1; line-height: 1.7; }
    .card .btn { width: max-content; margin-top: 18px; }
    .soft-panel {
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 32px;
      border: 1px solid rgba(31,38,36,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.64));
      box-shadow: var(--shadow-soft);
      padding: 28px;
    }
    .benefit {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 26px;
      border-radius: 24px;
      background: rgba(255,255,255,0.72);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .benefit h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.02; letter-spacing: -0.03em; }
    .benefit p { margin: 0; color: var(--muted); flex: 1; line-height: 1.7; }

    .about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; align-items: start; }
    .stat-column { display: grid; gap: 14px; }
    .stat-box {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 24px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(244,238,231,0.86));
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .stat-box strong { display: block; font-size: 36px; margin-bottom: 8px; letter-spacing: -0.05em; line-height: 0.92; }
    .bullet-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
    .bullet-list li {
      display: flex; gap: 12px; align-items: start;
      color: var(--ink);
      padding-bottom: 12px;
      border-bottom: 1px dashed rgba(31,38,36,0.10);
    }
    .bullet-list li:last-child { padding-bottom: 0; border-bottom: 0; }
    .bullet-list li::before {
      content: "";
      width: 10px; height: 10px; border-radius: 50%;
      margin-top: 9px; flex: 0 0 auto;
      background: linear-gradient(135deg, #7a8a7b, #d9c4b7);
      box-shadow: 0 0 0 5px rgba(122,138,123,0.10);
    }
    .method-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
    .method-pills abbr { text-decoration: none; }

    .timeline { display: grid; gap: 18px; }
    .timeline-item {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 22px 22px 22px 24px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.72);
      box-shadow: var(--shadow-soft);
    }
    .timeline-item h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.02; letter-spacing: -0.03em; }
    .timeline-item p { margin: 0; color: var(--muted); line-height: 1.7; }

    .price-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px; align-items: start; }
    .price-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 30px;
      border-radius: 28px;
      border: 1px solid rgba(31,38,36,0.08);
      background: linear-gradient(180deg, rgba(122,138,123,0.10), rgba(255,255,255,0.88));
      box-shadow: 0 18px 44px rgba(27,36,33,0.08);
    }
    .price-card h3 { margin: 0 0 8px; font-size: 28px; line-height: 1.02; letter-spacing: -0.03em; }
    .price-card .price { font-size: clamp(44px, 5vw, 62px); font-weight: 600; letter-spacing: -0.05em; margin: 8px 0 16px; line-height: 0.92; }
    .price-card p { margin: 0 0 16px; color: var(--muted); line-height: 1.7; }
    .booking-inline-note {
      display: grid;
      gap: 6px;
      margin: 0 0 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(122,138,123,0.08);
      border: 1px solid rgba(122,138,123,0.14);
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }
    .booking-inline-note strong { color: var(--ink); }

    .booking-preview {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 22px;
      align-items: start;
    }
    .booking-preview-copy {
      display: grid;
      gap: 18px;
      align-content: start;
    }
    .booking-preview-note {
      display: grid;
      gap: 8px;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(122,138,123,0.08);
      border: 1px solid rgba(122,138,123,0.14);
      color: var(--muted);
      font-size: 15px;
    }
    .booking-preview-note strong {
      color: var(--ink);
      font-size: 16px;
    }
    .booking-widget {
      display: grid;
      gap: 14px;
      padding: 24px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(248,244,238,0.76));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
    }
    .slot-day {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
    }
    .slot-day-head {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: baseline;
      flex-wrap: wrap;
    }
    .slot-day-head strong {
      font-size: 21px;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }
    .slot-day-head span {
      color: var(--muted);
      font-size: 14px;
    }
    .slot-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .slot-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 86px;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(31,38,36,0.10);
      font-size: 15px;
      font-weight: 600;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .slot-pill:hover {
      transform: translateY(-1px);
      border-color: rgba(122,138,123,0.28);
      box-shadow: 0 10px 24px rgba(25,33,31,0.08);
    }
    .booking-widget-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 6px;
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: underline;
      text-decoration-color: rgba(122,138,123,0.3);
      text-underline-offset: 4px;
    }
    .booking-widget-link::after {
      content: "→";
      font-size: 18px;
      line-height: 1;
    }

    .booking-page {
      padding: 34px 0 72px;
    }
    .booking-hero {
      display: grid;
      gap: 12px;
      max-width: none;
      margin: 0;
    }
    .booking-hero .lead {
      max-width: 34ch;
    }
    .booking-intro-note {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      max-width: 42ch;
    }
    .booking-intro-panel {
      gap: 20px;
      align-content: start;
    }
    .booking-intro-facts {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .booking-intro-facts span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(122,138,123,0.08);
      border: 1px solid rgba(122,138,123,0.14);
      color: var(--ink);
      font-size: 14px;
      font-weight: 600;
    }
    .booking-intro-facts span::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(122,138,123,0.52);
      flex-shrink: 0;
    }
    .booking-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .booking-layout {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 24px;
      align-items: start;
    }
    .booking-sidebar,
    .booking-main {
      display: grid;
      gap: 18px;
    }
    .booking-panel {
      display: grid;
      gap: 18px;
      padding: 24px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(248,244,238,0.76));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow);
    }
    .booking-panel h2,
    .booking-panel h3 {
      margin: 0;
      line-height: 1.08;
      letter-spacing: -0.03em;
      text-wrap: balance;
    }
    .booking-panel p {
      margin: 0;
      color: var(--muted);
    }
    .booking-sidebar {
      position: sticky;
      top: 96px;
    }
    .booking-meta {
      display: grid;
      gap: 10px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(122,138,123,0.08);
      border: 1px solid rgba(122,138,123,0.14);
    }
    .booking-meta strong {
      font-size: 15px;
      color: var(--ink);
    }
    .booking-steps {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
    }
    .booking-steps li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
    }
    .booking-steps li::before {
      content: attr(data-step);
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(31,38,36,0.10);
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
    }
    .date-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .date-chip {
      display: grid;
      gap: 6px;
      text-align: left;
      padding: 16px;
      border-radius: 18px;
      border: 1px solid rgba(31,38,36,0.10);
      background: rgba(255,255,255,0.86);
      cursor: pointer;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .date-chip:hover {
      transform: translateY(-1px);
      border-color: rgba(122,138,123,0.24);
      box-shadow: 0 10px 22px rgba(25,33,31,0.08);
    }
    .date-chip.active {
      background: rgba(122,138,123,0.12);
      border-color: rgba(122,138,123,0.28);
    }
    .date-chip:focus-visible,
    .time-slot:focus-visible,
    .slot-pill:focus-visible {
      border-color: rgba(122,138,123,0.36);
      box-shadow: 0 0 0 4px rgba(122,138,123,0.14);
      transform: translateY(-1px);
    }
    .date-chip strong {
      font-size: 18px;
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }
    .date-chip span {
      color: var(--muted);
      font-size: 14px;
    }
    .time-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .time-slot {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 12px;
      border-radius: 16px;
      border: 1px solid rgba(31,38,36,0.10);
      background: rgba(255,255,255,0.88);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .time-slot:hover {
      transform: translateY(-1px);
      border-color: rgba(122,138,123,0.24);
      box-shadow: 0 8px 20px rgba(25,33,31,0.08);
    }
    .time-slot.active {
      background: linear-gradient(135deg, rgba(122,138,123,0.16), rgba(255,255,255,0.92));
      border-color: rgba(122,138,123,0.30);
    }
    .booking-summary {
      display: grid;
      gap: 10px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,0.70);
      border: 1px solid rgba(31,38,36,0.08);
    }
    .booking-summary-line {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: baseline;
      color: var(--muted);
      font-size: 15px;
    }
    .booking-summary-line strong {
      color: var(--ink);
      font-size: 17px;
    }
    .booking-form {
      display: grid;
      gap: 14px;
    }
    .booking-hp {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
    }
    .booking-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .field {
      display: grid;
      gap: 8px;
    }
    .field label {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
    }
    .field input,
    .field textarea,
    .field select {
      width: 100%;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1px solid rgba(31,38,36,0.12);
      background: rgba(255,255,255,0.9);
      font: inherit;
      color: var(--ink);
    }
    .field input:focus-visible,
    .field textarea:focus-visible,
    .field select:focus-visible {
      border-color: rgba(122,138,123,0.32);
      box-shadow: 0 0 0 4px rgba(122,138,123,0.12);
    }
    .field textarea {
      min-height: 120px;
      resize: vertical;
    }
    .field-note {
      font-size: 13px;
      color: var(--muted);
    }
    .checkbox-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      font-size: 14px;
    }
    .checkbox-row input {
      margin-top: 3px;
    }
    .booking-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .booking-success {
      display: none;
      gap: 12px;
      padding: 20px;
      border-radius: 20px;
      background: rgba(122,138,123,0.10);
      border: 1px solid rgba(122,138,123,0.14);
    }
    .booking-success.on {
      display: grid;
    }
    .booking-success.error {
      background: rgba(177,94,68,0.10);
      border-color: rgba(177,94,68,0.22);
    }
    .booking-submit[disabled] {
      opacity: 0.55;
      cursor: not-allowed;
      pointer-events: none;
      box-shadow: none;
      transform: none;
    }
    .booking-submit-hint {
      margin-top: -4px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }
    .booking-empty {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.72);
      border: 1px dashed rgba(31,38,36,0.12);
      color: var(--muted);
      font-size: 15px;
    }

    .quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
    .quote-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      padding: 28px;
      border-radius: 24px;
      background: rgba(255,255,255,0.76);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .quote-card::before {
      content: "“";
      position: absolute; right: 18px; top: 8px;
      font-size: 68px; line-height: 1; color: rgba(122,138,123,0.16);
    }
    .quote-card p { margin: 0; color: var(--ink); font-size: 17px; max-width: 28ch; }
    .quote-card span { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; }

    .lead-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
    .blog-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 28px;
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,244,238,0.78));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .blog-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(25,33,31,0.10); }
    .blog-card h3 {
      margin: 0 0 12px;
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }
    .blog-card p { margin: 0; color: var(--muted); flex: 1; line-height: 1.7; }
    .blog-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #516151;
      background: rgba(122,138,123,0.12);
      border: 1px solid rgba(122,138,123,0.14);
    }
    .lead-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      height: 100%;
      padding: 28px;
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,244,238,0.78));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .lead-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(25,33,31,0.10); }
    .lead-top {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }
    .lead-type,
    .lead-format {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }
    .lead-type {
      background: rgba(122,138,123,0.12);
      color: #516151;
      border: 1px solid rgba(122,138,123,0.14);
    }
    .lead-format {
      background: rgba(217,196,183,0.24);
      color: #6b5449;
      border: 1px solid rgba(217,196,183,0.28);
    }
    .lead-card h3 {
      margin: 0;
      font-size: 25px;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }
    .lead-card p { margin: 0; color: var(--muted); flex: 1; line-height: 1.7; }
    .lead-card .btn { width: max-content; margin-top: auto; }
    .materials-intro {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      margin: -8px 0 22px;
      color: var(--muted);
      font-size: 15px;
    }
    .materials-intro-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .materials-intro-actions .btn {
      padding: 12px 18px;
    }
    .materials-more {
      margin-top: 18px;
      border-radius: 26px;
      border: 1px solid rgba(31,38,36,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,244,238,0.72));
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .materials-more summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
    }
    .materials-more summary::-webkit-details-marker { display: none; }
    .materials-more summary::after {
      content: "+";
      color: var(--accent);
      font-size: 24px;
      line-height: 1;
    }
    .materials-more[open] summary::after { content: "–"; }
    .materials-more .more-grid {
      padding: 0 24px 24px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .faq { display: grid; gap: 12px; }
    .faq-item {
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.74);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }
    .faq-q {
      width: 100%;
      background: transparent;
      border: 0;
      text-align: left;
      padding: 22px 24px;
      font: inherit;
      font-size: 18px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      color: var(--ink);
      cursor: pointer;
      list-style: none;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after { content: "+"; color: var(--accent); font-size: 24px; line-height: 1; }
    .faq-item[open] .faq-q::after { content: "–"; }
    .faq-a {
      padding: 0 24px;
      color: var(--muted);
      font-size: 16px;
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .3s ease, padding .3s ease;
    }
    .faq-a > * { overflow: hidden; }
    .faq-item[open] .faq-a {
      grid-template-rows: 1fr;
      padding-bottom: 22px;
    }

    .danger-soft {
      display: grid;
      gap: 10px;
      height: 100%;
      padding: 26px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(217,196,183,0.22), rgba(255,255,255,0.82));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
    }
    .danger-soft h3 { margin: 0; font-size: 22px; }
    .danger-soft ul { margin: 0; padding-left: 20px; color: var(--muted); }
    .danger-soft li + li { margin-top: 8px; }

    .cta-panel {
      padding: 34px;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(37,50,45,0.08), rgba(255,255,255,0.86) 52%, rgba(217,196,183,0.22));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: 0 22px 52px rgba(27,36,33,0.10);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }
    .cta-panel h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.02; letter-spacing: -0.03em; text-wrap: balance; }
    .cta-panel p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; max-width: 34ch; }
    .contact-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: rgba(255,255,255,0.78);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 22px;
      box-shadow: var(--shadow-soft);
    }
    .contact-line { display: grid; gap: 4px; }
    .contact-line strong { font-size: 15px; color: var(--muted); font-weight: 600; }
    .contact-line a, .contact-line span.value { font-size: 22px; font-weight: 600; font-family: var(--font-display); letter-spacing: -0.02em; }
    .contact-line a { text-decoration: underline; text-decoration-color: rgba(122,138,123,0.3); text-underline-offset: 3px; transition: text-decoration-color .2s ease; }
    .contact-line a:hover { text-decoration-color: var(--accent); }
    .contact-note {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(248,244,238,0.82);
      border: 1px solid rgba(31,38,36,0.08);
    }
    .contact-quick {
      display: grid;
      gap: 14px;
      padding-bottom: 4px;
      border-bottom: 1px solid rgba(31,38,36,0.08);
    }
    .contact-inline-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      align-items: center;
    }
    .contact-inline-links a {
      font-size: 18px;
      font-weight: 600;
      font-family: var(--font-display);
      text-decoration: underline;
      text-decoration-color: rgba(122,138,123,0.3);
      text-underline-offset: 3px;
    }
    .contact-inline-links a:hover {
      text-decoration-color: var(--accent);
    }
    .contact-helper {
      display: grid;
      gap: 10px;
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(122,138,123,0.08);
      border: 1px solid rgba(122,138,123,0.14);
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }
    .contact-helper strong { color: var(--ink); font-size: 16px; }
    .contact-actions { display: grid; gap: 12px; }
    .stack { display: grid; gap: 16px; align-content: start; }
    footer { padding: 34px 0 48px; }
    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: start;
      border-top: 1px solid rgba(31,38,36,0.08);
      padding-top: 24px;
      color: var(--muted);
      font-size: 14px;
    }
    footer a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      min-width: 44px;
    }
    .footer-note { max-width: 60ch; }
    .footer-note a { text-decoration: underline; text-decoration-color: rgba(122,138,123,0.3); text-underline-offset: 3px; margin-top: 6px; }
    .footer-note a:hover { text-decoration-color: var(--accent); }

    [hidden] { display: none !important; }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 14px;
    }
    .breadcrumbs a {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      min-width: 44px;
      text-decoration: underline;
      text-decoration-color: rgba(122,138,123,0.28);
      text-underline-offset: 3px;
    }
    .breadcrumbs a:hover { text-decoration-color: var(--accent); color: var(--ink); }

    .tests-hero,
    .test-hero {
      position: relative;
      padding: clamp(34px, 5vw, 70px) 0 clamp(38px, 5vw, 76px);
      overflow: clip;
      isolation: isolate;
    }
    .tests-hero::before,
    .test-hero::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: min(560px, 82svh);
      background:
        radial-gradient(circle at 14% 12%, rgba(217,196,183,0.52), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(122,138,123,0.14), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.36) 65%, rgba(255,255,255,0));
      z-index: -1;
      pointer-events: none;
    }
    .tests-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
      gap: clamp(28px, 5vw, 58px);
      align-items: center;
    }
    .tests-hero-copy h1,
    .test-intro-panel h1 {
      margin: 18px 0 16px;
      font-size: clamp(40px, 5.4vw, 68px);
      line-height: 1;
      letter-spacing: 0;
      max-width: 14ch;
      text-wrap: balance;
    }
    .tests-hero-copy .lead,
    .test-intro-panel .lead {
      margin: 0 0 22px;
      max-width: 62ch;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }
    .tests-hero-panel,
    .tests-side-note,
    .tests-return-panel,
    .author-mini-panel {
      display: grid;
      gap: 16px;
      padding: 26px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(248,244,238,0.70));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
    }
    .tests-principle {
      display: grid;
      gap: 6px;
      padding-bottom: 16px;
      border-bottom: 1px dashed rgba(31,38,36,0.12);
    }
    .tests-principle:last-child { padding-bottom: 0; border-bottom: 0; }
    .tests-principle strong,
    .tests-side-note h2,
    .tests-return-panel h2,
    .author-mini-panel h2 {
      font-family: var(--font-display);
      font-size: 26px;
      line-height: 1.02;
      letter-spacing: 0;
    }
    .tests-principle span,
    .tests-side-note p,
    .tests-return-panel p,
    .author-mini-panel p {
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }
    .tests-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
      gap: 22px;
      align-items: stretch;
    }
    .test-feature-card {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: clamp(28px, 4vw, 42px);
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(37,50,45,0.08), rgba(255,255,255,0.88) 54%, rgba(217,196,183,0.24));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: 0 22px 52px rgba(27,36,33,0.10);
    }
    .test-feature-card h2 {
      margin: 0;
      max-width: 16ch;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.02;
      letter-spacing: 0;
      text-wrap: balance;
    }
    .test-feature-card p {
      margin: 0;
      max-width: 66ch;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }
    .test-feature-card .btn { width: max-content; }
    .test-card-meta,
    .test-meta-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .test-card-meta span,
    .test-meta-list span,
    .status-pill {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(31,38,36,0.08);
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: var(--shadow-soft);
    }
    .tests-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .test-status-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
      height: 100%;
      padding: 24px;
      border-radius: 18px;
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .test-status-card h3 {
      margin: 0;
      font-size: 24px;
      line-height: 1.08;
      letter-spacing: 0;
    }
    .test-status-card p { margin: 0; color: var(--muted); line-height: 1.68; }
    .author-panel {
      display: grid;
      grid-template-columns: 0.72fr 1.28fr;
      gap: 28px;
      align-items: center;
      padding: clamp(24px, 4vw, 36px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(248,244,238,0.72));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
    }
    .author-panel h2 {
      margin: 16px 0 12px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.02;
      letter-spacing: 0;
      text-wrap: balance;
    }
    .author-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      max-width: 66ch;
    }
    .author-photo {
      border-radius: 26px;
      overflow: hidden;
      aspect-ratio: 0.86;
      background:
        rgba(255,255,255,0.76)
        url("/ludmila-sazhina-hero-2026-apr24.jpg")
        center 12% / cover no-repeat;
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
    }
    .author-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 12%;
    }

    .test-shell {
      max-width: 920px;
    }
    .test-intro-panel,
    .test-runner,
    .test-result {
      scroll-margin-top: 100px;
      padding: clamp(26px, 4.5vw, 44px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,244,238,0.72));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: 0 22px 54px rgba(27,36,33,0.10);
    }
    .test-intro-panel h1 {
      max-width: 14ch;
    }
    .test-disclaimer,
    .disclaimer {
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(122,138,123,0.08);
      border: 1px solid rgba(122,138,123,0.14);
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }
    .test-disclaimer { margin-bottom: 22px; }
    .test-disclaimer strong { color: var(--ink); }
    .test-progress-block {
      display: grid;
      gap: 12px;
      margin-bottom: 26px;
    }
    .test-save-note {
      color: var(--muted);
      font-size: 14px;
    }
    .test-progress-track {
      width: 100%;
      height: 12px;
      border-radius: 999px;
      background: rgba(122,138,123,0.10);
      overflow: hidden;
      border: 1px solid rgba(31,38,36,0.06);
    }
    .test-progress-track span {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: linear-gradient(90deg, #7a8a7b, #b7a18f);
      transition: width .28s ease;
    }
    .answer-btn {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 14px;
      align-items: center;
      width: 100%;
      min-height: 64px;
      padding: 18px 20px;
      border-radius: 22px;
      border: 1.5px solid rgba(31,38,36,0.10);
      background: rgba(255,255,255,0.76);
      color: var(--ink);
      font: inherit;
      text-align: left;
      cursor: pointer;
      box-shadow: var(--shadow-soft);
      transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .answer-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(122,138,123,0.30);
      box-shadow: 0 14px 32px rgba(25,33,31,0.09);
    }
    .answer-btn.selected {
      background: rgba(122,138,123,0.12);
      border-color: rgba(92,109,93,0.48);
      box-shadow: 0 0 0 3px rgba(122,138,123,0.13), var(--shadow-soft);
    }
    .answer-key {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(122,138,123,0.10);
      color: #4d5b50;
      font-size: 14px;
      font-weight: 800;
    }
    .answer-btn.selected .answer-key {
      background: var(--forest);
      color: #fff;
    }
    .answer-copy {
      min-width: 0;
      color: var(--ink);
      line-height: 1.55;
    }
    .answer-state {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 78px;
      min-height: 32px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(31,38,36,0.05);
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }
    .answer-btn.selected .answer-state {
      background: rgba(37,50,45,0.12);
      color: var(--forest);
    }
    .test-controls {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 24px;
    }
    .test-controls .btn { min-width: 160px; }
    .test-controls .btn[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
      pointer-events: none;
      transform: none;
      box-shadow: none;
    }
    .result-card {
      padding: clamp(22px, 4vw, 32px);
      border-radius: 28px;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
      margin-bottom: 18px;
    }
    .result-label {
      color: #516151;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .result-title {
      margin: 0 0 14px;
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.02;
      letter-spacing: 0;
      text-wrap: balance;
    }
    .result-description {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
    }
    .bar-chart {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }
    .bar-row {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 12px;
      align-items: center;
    }
    .bar-label {
      color: var(--muted);
      font-size: 14px;
      text-align: right;
    }
    .bar-track {
      min-width: 0;
      height: 30px;
      border-radius: 999px;
      background: rgba(122,138,123,0.09);
      overflow: hidden;
    }
    .bar-fill {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      height: 100%;
      min-width: 46px;
      padding-right: 10px;
      border-radius: inherit;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
    }
    .bar-fill.anxiety { background: linear-gradient(90deg, #8fa08f, #60715f); }
    .bar-fill.burnout { background: linear-gradient(90deg, #d9c4b7, #a98f7e); }
    .bar-fill.relationship { background: linear-gradient(90deg, #b7a18f, #817061); }
    .tip-card {
      display: grid;
      gap: 8px;
      padding: 22px 24px;
      margin-bottom: 18px;
      border-radius: 24px;
      background: rgba(122,138,123,0.08);
      border: 1px solid rgba(122,138,123,0.14);
      box-shadow: var(--shadow-soft);
    }
    .tip-card h3 { margin: 0; font-size: 23px; line-height: 1.08; letter-spacing: 0; }
    .tip-card p { margin: 0; color: var(--muted); line-height: 1.72; }
    .result-secondary {
      display: grid;
      gap: 12px;
      margin-bottom: 18px;
    }
    .result-secondary .secondary-card {
      margin: 0;
      border-radius: 22px;
    }
    .result-action-panel {
      display: grid;
      gap: 14px;
      padding: clamp(22px, 4vw, 30px);
      margin-bottom: 18px;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(37,50,45,0.08), rgba(255,255,255,0.86) 56%, rgba(217,196,183,0.22));
      border: 1px solid rgba(31,38,36,0.08);
      box-shadow: var(--shadow-soft);
    }
    .result-action-panel h3 {
      margin: 0;
      font-size: 30px;
      line-height: 1.02;
      letter-spacing: 0;
    }
    .result-action-panel p { margin: 0; color: var(--muted); line-height: 1.72; }
    .result-actions,
    .share-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .share-row {
      justify-content: center;
      margin: 18px 0;
    }
    .share-btn,
    .restart-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(31,38,36,0.12);
      background: rgba(255,255,255,0.72);
      color: var(--ink);
      font: inherit;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .share-btn:hover,
    .restart-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(122,138,123,0.28);
      box-shadow: var(--shadow-soft);
    }
    .restart-btn {
      margin: 0 auto 18px;
      display: flex;
    }
    .toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      z-index: 60;
      transform: translateX(-50%) translateY(16px);
      max-width: min(420px, calc(100% - 32px));
      padding: 12px 18px;
      border-radius: 14px;
      background: var(--forest);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    @media (max-width: 1200px) {
      .nav-inner { gap: 14px; }
      .nav-links { gap: 14px; }
      .nav-links a { font-size: 13px; }
      .nav-links .btn {
        padding: 13px 18px;
        font-size: 13px;
      }
    }
    @media (max-width: 1024px) {
      .hero-grid, .about-grid, .price-grid, .cta-panel, .booking-preview, .booking-layout { grid-template-columns: 1fr; }
      .hero-grid { min-height: auto; }
      .grid-3, .quote-grid, .blog-grid, .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
      .lead-grid { grid-template-columns: 1fr; }
      .materials-more .more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .start-paths { grid-template-columns: 1fr; }
      .hero-card { min-height: auto; }
      .nav-inner { min-height: 72px; align-items: center; padding-top: 12px; padding-bottom: 12px; flex-wrap: nowrap; justify-content: space-between; }
      .brand { min-width: 0; }
      .brand-title { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
      .brand-subtitle { font-size: 12px; }
      .logo { width: 40px; height: 40px; }
      .nav-links { display: none; }
      .burger-toggle { display: block; }
    }
    @media (min-width: 1025px) and (max-height: 860px) {
      .hero {
        padding-top: 16px;
        padding-bottom: 18px;
      }
      .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
        gap: 28px;
        min-height: calc(100svh - 122px);
      }
      .hero-signature {
        margin: 12px 0 10px;
      }
      .hero-signature strong {
        font-size: 32px;
      }
      .hero-signature span {
        font-size: 13px;
      }
      .hero h1 {
        font-size: clamp(34px, 4.2vw, 54px);
        max-width: 11.5ch;
      }
      .hero p.lead {
        font-size: 15px;
        margin-bottom: 14px;
      }
      .button-row {
        margin-bottom: 14px;
      }
      .hero-facts {
        margin-bottom: 12px;
      }
      .hero-facts span {
        padding: 9px 12px;
        font-size: 12px;
      }
      .hero-note {
        font-size: 14px;
        padding-top: 12px;
      }
      .hero-proof {
        margin-top: 12px;
      }
      .hero-card {
        min-height: 460px;
        padding: 14px;
      }
      .portrait-placeholder {
        aspect-ratio: 0.92;
      }
      .hero-overlay {
        padding: 16px 18px;
      }
      .hero-overlay-label {
        margin-bottom: 10px;
      }
      .mini-list {
        font-size: 14px;
      }
    }
    @media (max-width: 700px) {
      .wrap { width: min(var(--max), calc(100% - 26px)); }
      .section { padding: 56px 0; }
      .hero { padding-top: 28px; }
      .mobile-menu {
        padding-left: 16px;
        padding-right: 16px;
      }
      .hero-grid { gap: 22px; }
      .hero-copy { padding: 0; }
      .hero-signature { margin: 16px 0 12px; }
      .hero-signature strong { font-size: 30px; }
      .hero-signature span { max-width: none; }
      .hero h1 { max-width: none; font-size: clamp(32px, 9.4vw, 44px); line-height: 0.98; }
      .hero p.lead { font-size: 15px; margin-bottom: 18px; }
      .hero-copy, .hero-note, .hero p.lead, .section-head p, .cta-panel p, .contact-note, .quote-card p { max-width: none; width: 100%; }
      .hero h1, .hero p.lead, .section-head h2, .section-head p, .cta-panel h2, .cta-panel p, .contact-note { overflow-wrap: break-word; overflow-wrap: anywhere; }
      .grid-3, .grid-2, .quote-grid, .lead-grid, .blog-grid, .trust-strip-grid { grid-template-columns: 1fr; }
      .section-head { flex-direction: column; align-items: start; gap: 12px; margin-bottom: 24px; }
      .button-row { flex-direction: column; gap: 12px; }
      .btn { width: 100%; }
      .text-link { width: max-content; max-width: 100%; }
      .cta-panel { padding: 24px; }
      .price-card { padding: 24px; }
      .hero-card { padding: 16px; border-radius: 26px; gap: 0; }
      .portrait-placeholder { width: 100%; max-width: none; border-radius: 22px; margin-bottom: 14px; }
      .hero-overlay { padding: 16px; border-radius: 20px; }
      .hero-overlay-label { margin-bottom: 10px; font-size: 12px; }
      .mini-list { gap: 8px; font-size: 15px; }
      .hero-facts {
        display: grid;
        gap: 8px;
        margin-bottom: 20px;
      }
      .hero-facts span { width: 100%; justify-content: flex-start; }
      .hero-note {
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255,255,255,0.56);
        border: 1px solid rgba(31,38,36,0.08);
        border-top: 1px solid rgba(31,38,36,0.08);
      }
      .hero-proof {
        margin-top: 14px;
        gap: 10px 14px;
      }
      .card, .benefit, .quote-card, .blog-card, .lead-card, .soft-panel, .contact-card, .danger-soft { padding: 22px; border-radius: 22px; }
      .start-path { padding: 20px; gap: 8px; }
      .start-path strong { font-size: 22px; }
      .materials-intro { margin-bottom: 18px; font-size: 14px; }
      .materials-intro-actions {
        width: 100%;
        align-items: stretch;
      }
      .materials-intro-actions .btn {
        width: 100%;
      }
      .materials-more summary { padding: 18px; font-size: 17px; }
      .materials-more .more-grid { grid-template-columns: 1fr; padding: 0 18px 18px; }
      .booking-widget,
      .booking-panel { padding: 20px; border-radius: 22px; }
      .booking-hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .booking-hero-actions .text-link {
        width: 100%;
      }
      .date-grid,
      .booking-form-grid { grid-template-columns: 1fr; }
      .time-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cta-panel > :first-child { order: 1; }
      .contact-card { order: 0; }
      .contact-card { padding: 20px; }
      .contact-actions { gap: 10px; }
      .contact-helper { padding: 14px 16px; }
      .booking-main { order: 0; }
      .booking-sidebar { order: 1; }
      .booking-sidebar {
        position: static;
        top: auto;
      }
      body { padding-bottom: 0; }
      footer { padding-bottom: 48px; }
      .lead-card .btn { width: 100%; }
      .footer-grid { flex-direction: column; }
    }
    @media (max-width: 560px) {
      .section { padding: 48px 0; }
      .hero { padding-top: 20px; }
      .eyebrow {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
        font-size: 13px;
      }
      .hero-signature {
        margin-top: 14px;
      }
      .hero-signature strong { font-size: 26px; }
      .hero h1 {
        margin-top: 16px;
        margin-bottom: 14px;
        font-size: clamp(32px, 11.2vw, 42px);
      }
      .hero p.lead { margin-bottom: 18px; }
      .hero-card {
        padding: 14px;
        border-radius: 22px;
      }
      .portrait-placeholder {
        aspect-ratio: 0.92;
        border-radius: 20px;
      }
      .initials {
        top: 12px;
        left: 12px;
        font-size: 10px;
        letter-spacing: 0.1em;
        padding: 7px 10px;
      }
      .trust-row { grid-template-columns: 1fr; }
      .trust-item { min-height: 0; }
      .start-path {
        padding: 18px;
        border-radius: 20px;
      }
      .start-path strong { font-size: 20px; }
      .slot-day-head strong { font-size: 19px; }
      .slot-list { gap: 8px; }
      .slot-pill { min-width: 74px; padding: 11px 14px; }
      .booking-page { padding-top: 22px; padding-bottom: 48px; }
      .booking-hero { margin-bottom: 18px; }
      .time-grid { grid-template-columns: 1fr 1fr; }
      .booking-actions { flex-direction: column; }
      .booking-actions .btn { width: 100%; }
      .card, .benefit, .quote-card, .blog-card, .lead-card, .soft-panel, .contact-card, .danger-soft {
        padding: 18px;
        border-radius: 20px;
      }
      .lead-card h3,
      .blog-card h3 { font-size: 22px; }
      .materials-more summary {
        font-size: 16px;
        line-height: 1.3;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    }
    @media (max-width: 1024px) {
      .tests-hero-grid,
      .tests-layout,
      .author-panel {
        grid-template-columns: 1fr;
      }
      .tests-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .test-feature-card h2,
      .tests-hero-copy h1,
      .test-intro-panel h1 {
        max-width: none;
      }
    }
    @media (max-width: 700px) {
      .tests-hero,
      .test-hero {
        padding: 18px 0 36px;
      }
      .tests-hero-copy h1,
      .test-intro-panel h1 {
        font-size: clamp(32px, 9.4vw, 40px);
        line-height: 1.03;
        overflow-wrap: anywhere;
      }
      .tests-hero-copy .lead,
      .test-intro-panel .lead,
      .test-feature-card p,
      .author-panel p {
        font-size: 15px;
      }
      .tests-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .tests-hero-panel,
      .tests-side-note,
      .tests-return-panel,
      .author-mini-panel,
      .test-intro-panel,
      .test-runner,
      .test-result,
      .author-panel {
        padding: 20px;
        border-radius: 22px;
      }
      .tests-hero-panel {
        gap: 10px;
        padding: 16px;
      }
      .tests-principle {
        gap: 4px;
        padding-bottom: 10px;
      }
      .tests-principle strong,
      .tests-side-note h2,
      .tests-return-panel h2,
      .author-mini-panel h2 {
        font-size: 22px;
      }
      .test-feature-card {
        padding: 22px;
        border-radius: 24px;
      }
      .test-feature-card h2 {
        font-size: clamp(30px, 8.4vw, 38px);
      }
      .test-status-card {
        padding: 18px;
      }
      .test-feature-card .btn,
      .result-actions .btn,
      .share-btn,
      .restart-btn {
        width: 100%;
      }
      .test-card-meta,
      .test-meta-list {
        display: grid;
        grid-template-columns: 1fr;
      }
      .answer-btn {
        grid-template-columns: 34px 1fr;
        gap: 12px;
        padding: 16px;
        min-height: 66px;
      }
      .answer-state {
        grid-column: 2;
        justify-self: start;
        min-width: 0;
      }
      .test-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .test-controls .btn {
        min-width: 0;
        width: 100%;
      }
      .test-save-note {
        font-size: 13px;
      }
      .bar-row {
        grid-template-columns: 1fr;
        gap: 7px;
      }
      .bar-label {
        text-align: left;
      }
      .result-title {
        font-size: clamp(30px, 9vw, 42px);
      }
      .result-actions,
      .share-row {
        align-items: stretch;
      }
      .author-photo {
        max-height: 420px;
      }
    }
