:root {
      --bg: #fafaf0;
      --paper: #fffdf8;
      --paper-soft: #f6f4e9;
      --text: #27231f;
      --muted: #6b6358;
      --soft: #8a8175;
      --line: #e2e2d8;
      --accent: #678da8;
      --accent-dark: #435f75;
      --accent-soft: #e7eef2;
      --warm: #a77a5f;
      --shadow: 0 18px 42px rgb(64 48 32 / 0.09);
      --shadow-soft: 0 8px 26px rgb(64 48 32 / 0.07);
      --radius: 16px;
      --radius-sm: 10px;
      --gap: clamp(16px, 2.4vw, 28px);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      line-height: 1.55;
      background: #fafaf0;

    }

    body.is-loading .reveal {
      opacity: 0;
      transform: translate3d(0, 18px, 0);
    }

    a {
      color: inherit;
      text-decoration-thickness: 1px;
      text-underline-offset: 4px;
    }

    a:hover {
      color: var(--accent-dark);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 780px;
      margin-bottom: 16px;
      font-size: clamp(34px, 7vw, 68px);
      line-height: 0.98;
      letter-spacing: 0;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 19px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    p {
      color: var(--muted);
    }

    .page {
      min-height: 100vh;
      padding: clamp(22px, 4vw, 46px) 0 38px;
    }

    .container {
      width: min(1120px, calc(100% - 32px));
      margin-inline: auto;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: clamp(26px, 5vw, 64px);
      align-items: center;
      padding: clamp(18px, 3vw, 26px) 0 clamp(22px, 5vw, 46px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--accent-dark);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      content: "";
    }

    .lead {
      max-width: 650px;
      margin-bottom: 24px;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 20px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 26px;
    }

    .button {
      display: inline-flex;
      min-height: 46px;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0 18px;
      font-weight: 700;
      text-decoration: none;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .button.primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 12px 26px rgb(67 95 117 / 0.18);
    }

    .button.secondary {
      border-color: var(--line);
      background: rgb(255 253 250 / 0.68);
      color: var(--text);
    }

    .button:hover {
      transform: translateY(-1px);
      text-decoration: none;
    }

    .button.primary:hover {
      background: var(--accent-dark);
      color: #fff;
    }

    .quick-info {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
      color: var(--soft);
      font-size: 14px;
    }

    .quick-info li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 6px 12px;
      background: rgb(255 253 250 / 0.62);
    }

    .booking-panel {
      border: 1px solid rgb(229 222 210 / 0.9);
      border-radius: 20px;
      background: rgb(255 253 250 / 0.84);
      box-shadow: var(--shadow);
      overflow: clip;
    }

    .booking-header {
      padding: 22px 22px 16px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, #fffdf8, #f6f4e9);
    }

    .booking-header p {
      margin-bottom: 0;
      font-size: 15px;
    }

    .widget-shell {
      width: 100%;
      min-height: 280px;
      padding: 18px;
      overflow: hidden;
      scrollbar-width: none;
      background: var(--paper);
    }

    .widget-shell::-webkit-scrollbar {
      display: none;
    }

    .widget-shell iframe,
    .widget-shell > div {
      max-width: 100%;
    }

    .zl-link {
      display: block;
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 16px;
      background: var(--paper-soft);
      color: var(--accent-dark);
      font-weight: 700;
    }

    .section {
      padding: clamp(22px, 5vw, 48px) 0;
    }

    .grid {
      display: grid;
      gap: var(--gap);
    }

    .two-col {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: clamp(18px, 2.4vw, 24px);
      background: rgb(255 253 250 / 0.82);
      box-shadow: var(--shadow-soft);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .card:hover {
      border-color: #d7cdbd;
      transform: translateY(-3px);
      box-shadow: 0 16px 34px rgb(64 48 32 / 0.11);
    }

    .kv {
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      margin-top: 12px;
      color: var(--muted);
    }

    .kv a[href^="mailto:"],
    .faq-a a[href^="mailto:"] {
      color: #2d6688;
      font-weight: 800;
      overflow-wrap: anywhere;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
    }

    .icon {
      display: inline-grid;
      width: 30px;
      height: 30px;
      place-items: center;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-size: 15px;
    }

    .list {
      margin: 0;
      padding-left: 20px;
      color: var(--muted);
    }

    .list li + li {
      margin-top: 8px;
    }

    .faq-tests {
      margin-top: 10px;
    }

    .num {
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 50%;
      background: #f1e3d7;
      color: #7f472f;
      font-weight: 800;
    }

    .step-card p {
      margin: 8px 0 0;
      font-size: 15px;
    }

    .faq-list {
      max-width: 900px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgb(255 253 250 / 0.88);
      overflow: hidden;
      box-shadow: 0 8px 22px rgb(64 48 32 / 0.045);
    }

    .faq-q {
      display: flex;
      width: 100%;
      min-height: 58px;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border: 0;
      padding: 14px 16px;
      background: transparent;
      color: var(--text);
      font: inherit;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
    }

    .faq-symbol {
      display: inline-grid;
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      place-items: center;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-size: 18px;
      line-height: 1;
      transition: transform 220ms ease;
    }

    .faq-a {
      display: grid;
      grid-template-rows: 0fr;
      color: var(--muted);
      transition: grid-template-rows 260ms ease;
    }

    .faq-a > div {
      overflow: hidden;
      padding: 0 16px;
    }

    .faq-item.open .faq-a {
      grid-template-rows: 1fr;
    }

    .faq-item.open .faq-a > div {
      padding-bottom: 16px;
    }

    .faq-item.open .faq-symbol {
      transform: rotate(45deg);
    }

    .footbar {
      margin-top: 18px;
      color: var(--soft);
      font-size: 14px;
    }

    .reveal {
      opacity: 0;
      transform: translate3d(0, 22px, 0);
      transition: opacity 620ms ease, transform 620ms cubic-bezier(.2, .7, .2, 1);
      transition-delay: var(--delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    @media (max-width: 920px) {
      .hero,
      .two-col {
        grid-template-columns: 1fr;
      }

      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 620px) {
      .page {
        padding-top: 16px;
      }

      .container {
        width: min(100% - 24px, 1120px);
      }

      .hero {
        gap: 20px;
      }

      .hero-actions,
      .button {
        width: 100%;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .booking-header,
      .widget-shell {
        padding: 16px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
      }

      .reveal {
        transform: none;
      }
    }

.no-js .reveal { opacity: 1 !important; transform: none !important; }
.no-js .faq-a { grid-template-rows: 1fr !important; }
.no-js .faq-a > div { padding-bottom: 16px !important; }
.card--spaced { margin-top: var(--gap); }
