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

    body {
      background: #0d0d0d;
      color: #c9c9c9;
      font-family: monospace;
      font-size: 15px;
      line-height: 1.7;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* ── NAVBAR ── */
    nav {
      border-bottom: 1px solid #1f1f1f;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 48px;
      position: sticky;
      top: 0;
      background: #0d0d0d;
      z-index: 10;
    }

    .nav-logo {
      color: #cc2200;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .nav-links a {
      color: #888;
      text-decoration: none;
      font-size: 0.85em;
      transition: color 0.15s;
    }

    .nav-links a:hover { color: #cc2200; }

    /* ── MAIN ── */
    main {
      flex: 1;
      max-width: 700px;
      width: 100%;
      margin: 60px auto;
      padding: 0 20px;
    }

    /* ── SECTIONS ── */
    section {
      margin-bottom: 72px;
    }

    h1 {
      color: #cc2200;
      text-align: center;
      font-size: 1.6em;
      margin-bottom: 16px;
    }

    .section-title {
      color: #cc2200;
      font-size: 1em;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 4px;
    }

    .section-sub {
      color: #555;
      font-size: 0.78em;
      margin-bottom: 24px;
    }

    p.centered {
      text-align: center;
      color: #999;
      margin-bottom: 40px;
    }

    hr {
      border: none;
      border-top: 1px solid #1f1f1f;
      margin: 40px 0;
    }

    /* ── BUTTONS ── */
    .buttons {
      display: flex;
      justify-content: space-between;
      gap: 16px;
    }

    .btn-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
    }

    .btn-group h3 {
      color: #c9c9c9;
      font-size: 0.85em;
      font-weight: bold;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    a.btn {
      color: #cc2200;
      text-decoration: none;
      border: 1px solid #cc2200;
      padding: 8px 20px;
      font-family: monospace;
      font-size: 14px;
      transition: background 0.15s, color 0.15s;
    }

    a.btn:hover {
      background: #cc2200;
      color: #0d0d0d;
    }

    .btn-desc {
      font-size: 0.72em;
      color: #555;
      margin-top: 8px;
      text-align: center;
    }

    /* ── SERVICES ── */
    .services-list {
      list-style: none;
      border: 1px solid #1f1f1f;
    }

    .services-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
      padding: 12px 16px;
      border-bottom: 1px solid #1f1f1f;
    }

    .services-list li:last-child { border-bottom: none; }

    .service-name {
      color: #c9c9c9;
      font-size: 0.88em;
    }

    .service-name small {
      display: block;
      color: #555;
      font-size: 0.8em;
      margin-top: 2px;
    }

    .service-price {
      color: #cc2200;
      font-size: 0.82em;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ── CONTACT ── */
    .contact-list {
      list-style: none;
      border: 1px solid #1f1f1f;
    }

    .contact-list li {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 12px 16px;
      border-bottom: 1px solid #1f1f1f;
      font-size: 0.88em;
    }

    .contact-list li:last-child { border-bottom: none; }

    .contact-label {
      color: #555;
      font-size: 0.78em;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      min-width: 72px;
      flex-shrink: 0;
    }

    .contact-list a {
      color: #cc2200;
      text-decoration: none;
      transition: color 0.15s;
    }

    .contact-list a:hover { color: #ff3300; }

    .contact-list span { color: #888; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid #1f1f1f;
      padding: 0 24px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-left {
      font-size: 0.75em;
      color: #888;
    }

    .footer-right {
      font-size: 0.75em;
      color: #888;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .footer-links a {
      color: #888;
      text-decoration: none;
      font-size: 0.75em;
      transition: color 0.15s;
    }

    .footer-links a:hover { color: #cc2200; }

    @media (max-width: 520px) {
      .nav-links { gap: 14px; }
      .buttons { flex-direction: column; align-items: center; }
      .btn-group { width: 100%; }
      .footer-links { display: none; }
    }