
    :root {
      --bg: #0f1117;
      --card: #171a23;
      --text: #f5f5f5;
      --muted: #b8bdc9;
      --accent: #ffcc33;
      --accent-dark: #d9a900;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

    a {
      color: inherit;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 4px;
    }

    .page {
      width: 100%;
      overflow-x: hidden;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 22px;
    }

    .grid-page {
      display: grid;
      gap: 34px;
      padding: 34px 0 0;
    }

    .row {
      width: 100%;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: center;
    }

    .header {
      min-height: 36vh;
      display: flex;
      align-items: center;
      border-radius: 0 0 34px 34px;
      background:
        linear-gradient(rgba(15, 17, 23, 0.66), rgba(15, 17, 23, 0.94)),
        url("DJ_StanTheMan.jpg") center/cover no-repeat;
    }

    .header-content {
      max-width: 780px;
      padding: 40px 0;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--accent);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    h1 {
      margin: 0 0 20px;
      font-size: clamp(42px, 7vw, 82px);
      line-height: 0.95;
      letter-spacing: -0.04em;
    }

    h2 {
      margin: 0 0 18px;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 12pt;
    }

    .intro {
      max-width: 650px;
      margin-bottom: 30px;
      font-size: clamp(18px, 2vw, 22px);
    }

    .music-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin: 8px 0 24px;
    }

    .music-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-size: 12pt;
      font-weight: 700;
      text-decoration: none;
    }

    .music-link:hover {
      color: var(--accent);
    }

    .music-icon {
      width: 22px;
      height: 22px;
      display: inline-block;
      flex: 0 0 22px;
    }

    .service-list,
    .location-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0;
      margin: 8px 0 22px;
      list-style: none;
    }

    .service-list li,
    .location-list li {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(255, 204, 51, 0.28);
      border-radius: 999px;
      padding: 6px 10px;
      color: var(--muted);
      font-size: 11pt;
      background: rgba(255, 204, 51, 0.06);
    }

    .price-box {
      margin: 18px 0;
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 204, 51, 0.08);
      border: 1px solid rgba(255, 204, 51, 0.22);
    }

    .price-box p {
      margin-bottom: 8px;
    }

    .button {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 999px;
      background: var(--accent);
      color: #111;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
      background: var(--accent-dark);
    }

    .card {
      border-radius: 24px;
      background: var(--card);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
      overflow: hidden;
    }

    .text-card {
      padding: 34px;
      min-height: 600px;
    }

    .video-wrap {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      height: 0;
    }

    .video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .mixcloud-card {
      padding: 20px;
    }

    .mixcloud-card iframe {
      display: block;
      width: 100%;
      border: 0;
    }

    .spacer-row {
      min-height: 8px;
    }

    .form-wrap {
      background: #fff;
    }

    .form-wrap iframe {
      display: block;
      width: 100%;
      min-height: 600px;
      border: 0;
      background: #fff;
    }

    footer {
      margin-top: 44px;
      padding: 32px 22px;
      color: var(--muted);
      text-align: center;
      font-size: 14px;
      background: #0b0d12;
    }

    @media (max-width: 800px) {
      .container {
        padding: 0 18px;
      }

      .grid-page {
        gap: 24px;
        padding-top: 24px;
      }

      .header {
        min-height: auto;
        border-radius: 0 0 24px 24px;
      }

      .header-content {
        padding: 58px 0;
      }

      .two-col {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .text-card {
        padding: 24px;
      }

      .music-links {
        flex-direction: column;
        align-items: flex-start;
      }

      .form-wrap iframe {
        min-height: 900px;
      }
    }