
    /* ================================================================
       GLOBAL TOKENS — скопировать в Tilda → Сайт → Свой CSS
       ================================================================ */

    :root {
      --ink-950: #0B0B0C;
      --ink-900: #111113;
      --ink-850: #17171A;
      --ink-800: #1E1E22;
      --ink-700: #2A2A2F;
      --ink-600: #3A3A40;
      --ink-500: #5A5A62;
      --ink-400: #8A8A92;
      --ink-300: #B8B8BE;
      --ink-100: #EDEDEF;

      --gold-500: #C9A465;
      --gold-400: #D8B782;
      --gold-600: #9C8048;
      --success:  #6FAE7C;

      --bg:           var(--ink-950);
      --bg-card:      var(--ink-800);
      --bg-inset:     var(--ink-900);
      --fg:           var(--ink-100);
      --fg-strong:    #FFFFFF;
      --fg-muted:     var(--ink-300);
      --fg-subtle:    var(--ink-400);
      --border:       var(--ink-700);
      --border-strong:var(--ink-600);
      --divider:      rgba(255,255,255,0.08);
      --accent:       var(--gold-500);
      --on-accent:    var(--ink-950);

      --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
      --font-body:    'Manrope', -apple-system, 'Segoe UI', Arial, sans-serif;
      --font-script:  'Dancing Script', cursive;
      --ease:         cubic-bezier(0.2, 0.7, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { -webkit-text-size-adjust: 100%; }
    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.55;
    }
    em { font-style: italic; color: var(--accent); font-weight: inherit; }
    a  { color: inherit; text-decoration: none; }
    button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
    img { display: block; max-width: 100%; }

    /* Shared layout helpers */
    .oa-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 64px);
    }
    .oa-wrap--narrow { max-width: 960px; }

    /* Typography atoms */
    .oa-overline {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--fg-muted);
      font-weight: 600;
    }
    .oa-kicker {
      font-size: 12px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
    }
    .oa-display-xl {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.8vw, 72px);
      line-height: 1.05;
      font-weight: 400;
      letter-spacing: -0.02em;
      color: var(--fg-strong);
    }
    .oa-display-l {
      font-family: var(--font-display);
      font-size: clamp(40px, 5.4vw, 80px);
      line-height: 1.05;
      font-weight: 400;
      letter-spacing: -0.02em;
      color: var(--fg-strong);
    }
    .oa-display-m {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.8vw, 56px);
      line-height: 1.1;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: var(--fg-strong);
    }
    .oa-lead {
      font-size: clamp(17px, 1.3vw, 20px);
      line-height: 1.55;
      color: var(--fg-muted);
    }

    /* Buttons */
    .oa-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 22px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      font-family: var(--font-body);
      white-space: nowrap;
      transition: all 0.16s var(--ease);
      border: 1px solid transparent;
      cursor: pointer;
      text-decoration: none;
    }
    .oa-btn--primary { background: var(--accent); color: var(--on-accent); }
    .oa-btn--primary:hover { background: var(--gold-400); transform: translateY(-1px); }
    .oa-btn--primary:active { background: var(--gold-600); transform: none; }
    .oa-btn--ghost { background: transparent; color: var(--fg); border-color: var(--border-strong); }
    .oa-btn--ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--fg-subtle); }
    .oa-btn--sm { min-height: 36px; padding: 0 16px; font-size: 13px; }

    /* Cards */
    .oa-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s var(--ease);
    }
    .oa-card:hover { border-color: rgba(201,164,101,0.4); }

    /* Photo placeholders — replace with real images */
    .oa-photo { position: relative; overflow: hidden; border-radius: 2px; }
    .oa-photo--warm { background: linear-gradient(135deg,#3A2A20 0%,#5A3F2D 55%,#2A1F15 100%); }
    .oa-photo--cool { background: linear-gradient(135deg,#2A2A30 0%,#4A3F3A 55%,#1E1E22 100%); }
    .oa-photo--ash  { background: linear-gradient(135deg,#1E1E22 0%,#2F2F35 55%,#0B0B0C 100%); }
    .oa-photo__label {
      position: absolute;
      left: 16px; bottom: 12px;
      color: rgba(255,255,255,0.35);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: var(--font-body);
    }
    /* Reveal animation */
    @keyframes oa-rise {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: none; }
    }
  </style>