:root {
      --bg: #0b1118;
      --bg-soft: #111b26;
      --card: rgba(255, 255, 255, 0.07);
      --text: #f8efe2;
      --muted: #c6b9a7;
      --gold: #d6a85b;
      --gold-soft: #f1d196;
      --blue: #5d9ecf;
      --line: rgba(255, 255, 255, 0.14);
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
      --radius: 22px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(93, 158, 207, 0.22), transparent 34%),
        radial-gradient(circle at 80% 20%, rgba(214, 168, 91, 0.18), transparent 30%),
        linear-gradient(135deg, #071018 0%, #0b1118 48%, #15110d 100%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 50;
      background: rgba(7, 16, 24, 0.74);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .logo strong {
      font-size: 1.25rem;
      color: var(--text);
    }

    .logo span {
      font-size: 0.68rem;
      color: var(--gold-soft);
      letter-spacing: 0.22em;
      margin-top: 5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .nav-links a:hover {
      color: var(--gold-soft);
    }

    .nav-cta {
      padding: 10px 18px;
      border: 1px solid rgba(214, 168, 91, 0.55);
      border-radius: 999px;
      color: var(--gold-soft) !important;
    }

    .menu-btn {
      display: none;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--text);
      border-radius: 12px;
      padding: 9px 12px;
      font-size: 1rem;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 0 70px;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -20% -10%;
      height: 280px;
      background: linear-gradient(180deg, transparent, rgba(214, 168, 91, 0.10));
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 54px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      color: var(--gold-soft);
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 36px;
      height: 1px;
      background: var(--gold);
    }

    h1 {
      font-size: clamp(3.2rem, 8vw, 7.2rem);
      line-height: 0.92;
      letter-spacing: -0.06em;
      margin-bottom: 24px;
    }

    .hero h1 span {
      color: var(--gold-soft);
    }

    .lead {
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.32rem);
      max-width: 660px;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-soft));
      color: #16100a;
      box-shadow: 0 16px 40px rgba(214, 168, 91, 0.25);
    }

    .btn-secondary {
      border: 1px solid var(--line);
      color: var(--text);
      background: rgba(255, 255, 255, 0.04);
    }

    .hero-card {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80");
      background-size: cover;
      background-position: center;
      border: 1px solid var(--line);
      min-height: 560px;
      border-radius: 34px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7, 16, 24, 0.08), rgba(7, 16, 24, 0.75)),
        linear-gradient(120deg, rgba(214,168,91,0.18), transparent);
    }

    .hero-card-content {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      padding: 24px;
      border-radius: 24px;
      background: rgba(7, 16, 24, 0.68);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(12px);
    }

    .hero-card-content small {
      display: block;
      color: var(--gold-soft);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .hero-card-content p {
      color: var(--text);
      font-size: 1.08rem;
    }

    section {
      padding: 96px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .section-title {
      max-width: 780px;
      margin-bottom: 42px;
    }

    .section-title h2 {
      font-size: clamp(2.1rem, 4vw, 3.7rem);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
    }

    .section-title p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 26px;
    }

    .quote-card, .text-card, .song-card, .contact-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: 0 18px 55px rgba(0,0,0,0.18);
    }

    .quote-card {
      background: linear-gradient(145deg, rgba(214,168,91,0.18), rgba(255,255,255,0.05));
    }

    .quote-card h3 {
      font-size: 2rem;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .quote-card p, .text-card p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .bio-box {
      margin-top: 20px;
      padding: 20px;
      border-radius: 18px;
      background: rgba(0,0,0,0.18);
      border: 1px dashed rgba(214, 168, 91, 0.45);
    }

    .bio-box strong {
      color: var(--gold-soft);
    }

    .songs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .song-card {
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .song-card .tag {
      color: var(--gold-soft);
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .song-card h3 {
      font-size: 1.55rem;
      line-height: 1.12;
      margin-bottom: 12px;
    }

    .song-card p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .song-link {
      color: var(--gold-soft);
      font-weight: 700;
    }

    .song-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    .song-platform-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--gold-soft);
      font-weight: 700;
      line-height: 1.2;
    }

    .song-platform-link svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      fill: currentColor;
    }

    .song-platform-link:hover {
      color: var(--text);
    }

    .video-wrap {
      border-radius: 30px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.06);
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 420px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 38px;
    }

    .video-placeholder {
      max-width: 620px;
    }

    .play {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 22px;
      background: linear-gradient(135deg, var(--gold), var(--gold-soft));
      color: #120c07;
      font-size: 1.55rem;
      box-shadow: 0 14px 35px rgba(214,168,91,0.32);
    }

    .video-placeholder h3 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .video-placeholder p {
      color: var(--muted);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .contact-card h3 {
      font-size: 1.8rem;
      margin-bottom: 12px;
    }

    .contact-card p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .socials a {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 10px 16px;
      color: var(--muted);
    }

    .socials a:hover {
      color: var(--gold-soft);
      border-color: rgba(214,168,91,0.55);
    }

    .icon-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
    }

    .icon-link svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      fill: currentColor;
    }

    .email-icon {
      display: inline-flex;
      align-items: center;
      gap: 9px;
    }

    .email-icon svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    footer {
      padding: 34px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.94rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 900px) {
      .hero-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-card {
        min-height: 430px;
      }

      .songs-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 4%;
        right: 4%;
        background: rgba(7, 16, 24, 0.96);
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-btn {
        display: inline-flex;
      }
    }

    @media (max-width: 520px) {
      .hero {
        padding-top: 120px;
      }

      .hero-actions {
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .quote-card, .text-card, .song-card, .contact-card {
        padding: 24px;
      }

      .video-wrap {
        min-height: 340px;
      }
    }

.footer-inner a {
  color: var(--gold-soft);
  font-weight: 700;
}

.footer-inner a:hover {
  color: var(--text);
}
