:root {
      --red: #b3000f;
      --red-bright: #e10613;
      --black: #050505;
      --black-soft: #111111;
      --white: #f5f5f5;
      --gray: #c9c9c9;
      --border: rgba(255,255,255,0.08);
      --max: 1180px;
      --shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top, rgba(179, 0, 15, 0.20), transparent 28%),
        linear-gradient(180deg, #080808 0%, #000000 100%);
      color: var(--white);
      line-height: 1.6;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(14px);
      background: rgba(0, 0, 0, 0.74);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 0;
    }

    .brand {
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.26rem;
      text-transform: uppercase;
    }

    .brand span {
      color: var(--red-bright);
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      font-size: 0.95rem;
      color: var(--gray);
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--white);
    }

    .hero {
      min-height: 92vh;
      display: grid;
      align-items: center;
      padding: 4rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.82rem;
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      color: var(--red-bright);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    h1 {
      margin: 0;
      font-size: clamp(3rem, 9vw, 6.5rem);
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0.16rem;
    }

    .hero-copy p {
      max-width: 42rem;
      color: #dddddd;
      font-size: 1.05rem;
      margin: 1.25rem 0 0;
    }

    .hero-highlight {
      margin-top: 2rem;
      padding: 1.25rem;
      border: 1px solid rgba(225, 6, 19, 0.4);
      background: linear-gradient(180deg, rgba(179,0,15,0.18), rgba(255,255,255,0.02));
      border-radius: 1.25rem;
      box-shadow: var(--shadow);
      max-width: 32rem;
    }

    .hero-highlight h2 {
      margin: 0 0 0.35rem;
      font-size: 1.8rem;
    }

    .hero-buttons,
    .stream-buttons,
    .social-links,
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .hero-buttons {
      margin-top: 1.35rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.3rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--red-bright);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(225, 6, 19, 0.32);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-1px);
      background: #ff1826;
    }

    .btn-secondary {
      border-color: rgba(255,255,255,0.2);
      background: transparent;
      color: var(--white);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
    }

    .hero-card {
      min-height: 540px;
      border-radius: 1.75rem;
      border: 1px solid var(--border);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
        linear-gradient(135deg, rgba(179, 0, 15, 0.55), rgba(0, 0, 0, 0.45));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.35) 100%),
        url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1200&q=80") center/cover;
      mix-blend-mode: screen;
      opacity: 0.42;
    }

    .hero-card::after {
      content: "Alternative rock / cinematic energy";
      position: absolute;
      left: 1.4rem;
      bottom: 1.4rem;
      color: var(--white);
      font-size: 0.88rem;
      letter-spacing: 0.1rem;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(0,0,0,0.52);
      padding: 0.75rem 0.9rem;
      border-radius: 999px;
    }

    section {
      padding: 5rem 0;
    }

    .section-head {
      margin-bottom: 2rem;
      max-width: 42rem;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin: 0 0 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08rem;
    }

    .section-head p {
      margin: 0;
      color: #d3d3d3;
    }

    .grid-2,
    .cards,
    .music-grid,
    .media-grid,
    .shows-grid,
    .connect-grid,
    .footer-grid {
      display: grid;
      gap: 1.4rem;
    }

    .grid-2,
    .connect-grid,
    .footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .music-grid,
    .media-grid,
    .shows-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 1.4rem;
      padding: 1.4rem;
      box-shadow: var(--shadow);
    }

    .panel h3,
    .card h3,
    .product-card h3,
    .show-card h3,
    .contact-card h3 {
      margin-top: 0;
      margin-bottom: 0.6rem;
      font-size: 1.25rem;
    }

    .card,
    .product-card,
    .show-card,
    .contact-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
      border: 1px solid var(--border);
      border-radius: 1.4rem;
      padding: 1.4rem;
      box-shadow: var(--shadow);
    }

    .kicker {
      display: inline-block;
      margin-bottom: 0.7rem;
      color: var(--red-bright);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18rem;
      font-weight: 700;
    }

    .music-release {
      padding: 1.5rem;
      border-radius: 1.5rem;
      background: linear-gradient(135deg, rgba(179,0,15,0.28), rgba(255,255,255,0.04));
      border: 1px solid rgba(225, 6, 19, 0.25);
    }

    .music-release h3 {
      font-size: 2rem;
      margin: 0.2rem 0 0.6rem;
    }

    .stream-buttons a,
    .social-links a,
    .footer-links a {
      padding: 0.8rem 1rem;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 999px;
      background: rgba(255,255,255,0.03);
      color: var(--white);
      font-size: 0.95rem;
    }

    .stream-buttons a:hover,
    .social-links a:hover,
    .footer-links a:hover {
      border-color: rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.07);
    }

    .visual-block {
      min-height: 320px;
      border-radius: 1.5rem;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6)),
        url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1400&q=80") center/cover;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .show-meta,
    .product-meta {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .newsletter {
      text-align: center;
      background: linear-gradient(180deg, rgba(179, 0, 15, 0.32), rgba(255,255,255,0.04));
      border: 1px solid rgba(225, 6, 19, 0.34);
    }

    .newsletter-form {
      display: flex;
      gap: 0.9rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1.4rem;
    }

    input[type="email"] {
      min-width: min(100%, 360px);
      padding: 0.95rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(0,0,0,0.5);
      color: var(--white);
      outline: none;
    }

    input[type="email"]::placeholder {
      color: #aaaaaa;
    }

    footer {
      padding: 4rem 0 2rem;
      border-top: 1px solid var(--border);
      background: rgba(0,0,0,0.7);
    }

    .footer-note {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: var(--gray);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.92rem;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .grid-2,
      .cards,
      .music-grid,
      .media-grid,
      .shows-grid,
      .connect-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

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

    @media (max-width: 640px) {
      .nav {
        align-items: flex-start;
        flex-direction: column;
      }

      h1 {
        font-size: clamp(2.6rem, 15vw, 4rem);
      }

      section {
        padding: 4rem 0;
      }
    }

/* Cloudflare-ready LUPO branding additions */
.logo-mark { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(225,6,19,0.45); box-shadow: 0 0 24px rgba(225,6,19,0.22); }
.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand-text { font-size: 1.35rem; font-weight: 800; letter-spacing: .26rem; text-transform: uppercase; }
.hero-logo { width: min(100%, 520px); border-radius: 1.5rem; border: 1px solid rgba(225,6,19,0.28); box-shadow: var(--shadow); position: relative; z-index: 1; }
.hero-card { display: grid; place-items: center; padding: 1.25rem; }
.hero-card::before { background: radial-gradient(circle at center, rgba(225,6,19,0.25), transparent 60%); mix-blend-mode: normal; opacity: 1; }
.hero-card::after { content: "Music. Energy. Evolution."; }
.form-note { color: var(--gray); font-size: .9rem; margin-top: .75rem; }
@media (max-width: 640px) { .logo-mark { width: 46px; height: 46px; } .brand-text { font-size: 1.1rem; } }

.stats-card { background: radial-gradient(circle at top left, rgba(225,6,19,.26), rgba(255,255,255,.03)); border: 1px solid rgba(225,6,19,.22); border-radius: 1.4rem; padding: 1.4rem; box-shadow: var(--shadow); }
.stats-card h3 { margin: .5rem 0 .1rem; font-size: 1.45rem; }
.stats-card p { margin: 0 0 .7rem; color: var(--gray); }
.social-strip { margin-top: 1rem; }
