:root {
      --bg: #0c1117;
      --surface: #141b24;
      --border: #243042;
      --text: #e8eef5;
      --muted: #8b9cb3;
      --accent: #3d9cf5;
      --warm: #f59e0b;
      --max: 1120px;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-size: 1.05rem;
    }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.65rem 1.2rem; border-radius: 8px; font-weight: 600;
      font-size: 0.95rem; border: none; cursor: pointer; transition: 0.15s;
    }
    .btn-primary { background: var(--accent); color: #06101c; }
    .btn-primary:hover { background: #5eb0ff; text-decoration: none; }
    .hero {
      padding: 3.25rem 0 2.25rem;
      background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(61, 156, 245, 0.18), transparent);
      border-bottom: 1px solid var(--border);
    }
    .eyebrow {
      display: inline-block; font-size: 0.8rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em; color: var(--warm);
      margin-bottom: 0.65rem;
    }
    h1 {
      font-family: Georgia, "Times New Roman", Times, serif;
      font-weight: 400; font-size: clamp(2.1rem, 5vw, 2.85rem);
      line-height: 1.12; margin: 0 0 0.65rem; letter-spacing: -0.02em;
    }
    main section { padding: 2.5rem 0 3.5rem; }
    .narrow { max-width: 38rem; }
    .panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.35rem 1.5rem;
    }
    .panel + .panel { margin-top: 1.25rem; }
    .panel h2 {
      margin: 0 0 0.5rem;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
    }
    .panel-lead { color: var(--muted); font-size: 0.95rem; margin: 0 0 1rem; }
    a.phone-link {
      display: inline-block;
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 0.5rem 0;
      min-height: 44px;
      line-height: 1.3;
    }
    .email-panel h2 { margin-bottom: 0.35rem; }
    .email-note { color: var(--muted); font-size: 0.9rem; margin: 0 0 1rem; }
    .email-rows { border-top: 1px solid var(--border); margin: 0 -1.5rem -1.35rem; }
    .email-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.35rem 1.25rem;
      padding: 0.95rem 1.5rem;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }
    .email-row:last-child { border-bottom: none; }
    @media (max-width: 520px) {
      .email-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
      }
    }
    .email-row .label { font-weight: 600; font-size: 0.95rem; color: var(--text); }
    .email-row .hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.15rem; }
    .email-row .addr {
      font-size: 0.98rem;
      font-weight: 500;
      text-align: right;
    }
    @media (max-width: 520px) {
      .email-row .addr { text-align: left; }
    }
    .site-links {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.95rem;
      max-width: 40rem;
    }
    .site-links a { font-weight: 500; }
    footer {
      padding: 2.5rem 0;
      color: var(--muted);
      font-size: 0.9rem;
      border-top: 1px solid var(--border);
    }
    .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
    @media (max-width: 640px) {
      body { font-size: 1.12rem; }
      .email-note, .site-links, footer { font-size: 1.02rem; }
    }
