:root {
    --ink: #1a1a1a;
    --paper: #fdf7f0;
    --cream: #fffaf6;
    --panel: #ffffff;
    --line: #eadfd6;
    --muted: #6c625d;
    --accent: #e40046;
    --accent-dark: #9f1234;
    --gold: #b68a46;
    --green: #25d366;
    --shadow: 0 18px 45px rgba(26, 26, 26, .10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background:
        radial-gradient(circle at top left, rgba(228, 0, 70, .08), transparent 32rem),
        linear-gradient(180deg, var(--paper), var(--cream));
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.68;
    overflow-x: hidden;
}
a { color: inherit; }
p { color: var(--muted); max-width: 72ch; }
h1, h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: .95;
}
h1 { font-size: clamp(4.4rem, 10vw, 8rem); margin-bottom: 22px; }
h2 { font-size: clamp(2.45rem, 5vw, 4.5rem); margin-bottom: 18px; }
h3, h4 { line-height: 1.15; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(228, 0, 70, .94);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(228, 0, 70, .18);
}
.nav-shell {
    min-height: 72px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}
.brand-word {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    letter-spacing: -.05em;
    line-height: 1;
}
.brand-mark {
    border-radius: 999px;
    background: #fff;
    color: var(--accent);
    font-size: .72rem;
    padding: 4px 10px;
    letter-spacing: .08em;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
    color: rgba(255,255,255,.92);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
}
.nav-links a:hover, .nav-links a.active { color: #fff; opacity: .72; }
.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--accent);
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    padding: 118px 0 96px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(to top, var(--paper) 0%, rgba(253,247,240,.84) 38%, rgba(253,247,240,.72) 100%),
        url("hero-garavatto-collage.svg") center/cover no-repeat;
}
.page-hero {
    min-height: 50vh;
    padding: 92px 0 84px;
    background:
        linear-gradient(to top, var(--paper) 0%, rgba(253,247,240,.86) 100%),
        url("hero-garavatto-collage.svg") right center/auto 105% no-repeat;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: center;
    text-align: center;
}
.hero-accent {
    color: var(--accent);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-style: italic;
    margin: 0 auto 14px;
}
.hero-copy p {
    max-width: 720px;
    font-size: 1.08rem;
    margin: 0 auto;
}
.hero-copy h1 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .actions { justify-content: center; }
.btn {
    min-height: 48px;
    padding: 12px 24px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent);
    background: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .86rem;
    letter-spacing: .04em;
    transition: .2s ease;
    box-shadow: 0 12px 28px rgba(228, 0, 70, .12);
}
.btn.primary, .btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px rgba(228, 0, 70, .22);
    transform: scale(1.03);
}
.btn.light { background: #fff; color: var(--accent); border-color: #fff; }

.hero-panel, .stat-grid, .cards .card, .artist-card, .process-card, .info-panel {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--shadow);
    border-radius: 28px;
}
.hero-panel {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hero-panel div, .stat-grid div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
    background: #fff0f4;
    border-radius: 22px;
}
.hero-panel strong, .stat-grid strong {
    color: var(--accent);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
    line-height: 1;
}
.hero-panel span, .stat-grid span { line-height: 1.35; text-align: left; }

.section { padding: 96px 0; }
.section.soft {
    background:
        radial-gradient(circle at top right, rgba(228,0,70,.08), transparent 28rem),
        #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.editorial-strip {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.editorial-strip .wrap {
    border-left: 8px solid var(--accent);
    padding-left: clamp(22px, 4vw, 42px);
}
.section-head { max-width: 780px; margin-bottom: 40px; }
.row-head {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}
.eyebrow {
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.round-control {
    width: 52px;
    height: 52px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--ink);
    transition: .2s ease;
}
.round-control:hover { background: var(--ink); color: #fff; }
.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: start;
}
.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    gap: clamp(36px, 6vw, 76px);
    align-items: center;
}
.cards { display: grid; gap: 24px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
    min-height: 240px;
    padding: 30px;
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: .2s ease;
}
.card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 88px;
    height: 88px;
    background: #fff0f4;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.card:hover, .artist-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.card i { color: var(--accent); font-size: 1.8rem; margin-bottom: 22px; }
.card h3 { margin-bottom: 10px; }
.card p, .artist-body p, .process-card p, .info-panel p { margin-top: 12px; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}

.artist-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.artist-card {
    overflow: hidden;
    color: inherit;
    display: block;
    text-decoration: none;
}
.artist-cover {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background-color: #120b0d;
    background-size: cover;
    background-position: center;
}
.artist-cover:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 42%, rgba(0,0,0,.22)),
        linear-gradient(135deg, rgba(228,0,70,.22), transparent 44%);
    pointer-events: none;
}
.cover-poker {
    background-image: image-set(url("artists/las-poker-640.jpg") 1x, url("artists/las-poker-1200.jpg") 2x);
}
.cover-motormaniak {
    background-image: image-set(url("artists/motormaniak-640.jpg") 1x, url("artists/motormaniak-1200.jpg") 2x);
    background-position: center 44%;
}
.cover-bastarda {
    background-image: image-set(url("artists/la-bastarda-640.jpg") 1x, url("artists/la-bastarda-1200.jpg") 2x);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 58% center;
}
.cover-poker i, .cover-motormaniak i, .cover-bastarda i { display: none; }
.artist-cover i { color: var(--accent); font-size: 4.5rem; }
.artist-body { padding: 30px; }
.artist-body .genre {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
}
.spotify-embed { margin-top: 28px; border: 1px solid var(--line); background: #000; border-radius: 14px; overflow: hidden; }

.artist-hero {
    min-height: 58vh;
    background-size: cover;
    background-position: center;
}
.artist-hero-poker {
    background:
        linear-gradient(90deg, rgba(253,247,240,.98) 0%, rgba(253,247,240,.86) 48%, rgba(253,247,240,.66) 100%),
        image-set(url("artists/las-poker-640.jpg") 1x, url("artists/las-poker-1200.jpg") 2x) center/cover no-repeat;
}
.artist-hero-motormaniak {
    background:
        linear-gradient(90deg, rgba(253,247,240,.98) 0%, rgba(253,247,240,.86) 48%, rgba(253,247,240,.64) 100%),
        image-set(url("artists/motormaniak-640.jpg") 1x, url("artists/motormaniak-1200.jpg") 2x) center/cover no-repeat;
}
.artist-hero-bastarda {
    background:
        linear-gradient(90deg, rgba(253,247,240,.98) 0%, rgba(253,247,240,.86) 46%, rgba(253,247,240,.55) 100%),
        image-set(url("artists/la-bastarda-640.jpg") 1x, url("artists/la-bastarda-1200.jpg") 2x) center/cover no-repeat;
}

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; counter-reset: step; }
.process-card { padding: 28px; }
.process-card:before {
    counter-increment: step;
    content: counter(step);
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}
.timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    display: grid;
    gap: 28px;
}
.timeline:before {
    content: "";
    position: absolute;
    left: 28px;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: #e9e0d8;
    border-radius: 999px;
}
.timeline-item {
    position: relative;
    margin-left: 76px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: -59px;
    top: 28px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid var(--accent);
}
.timeline-item span {
    color: var(--accent);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.info-panel { padding: 34px; }
.list { list-style: none; display: grid; gap: 12px; margin-top: 22px; color: var(--muted); }
.list li:before { content: "•"; color: var(--accent); margin-right: 10px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-cloud a {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    padding: 12px 18px;
    text-decoration: none;
    font-weight: 800;
}
.tag-cloud a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 12px; }
.stat-grid div { min-height: 112px; }
.cta-band {
    padding: 78px 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band:before {
    content: "GARAVATTO";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(4rem, 13vw, 10rem);
    color: rgba(255,255,255,.09);
    pointer-events: none;
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 24px; }
.footer {
    padding: 58px 0 22px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: inset 0 4px 0 var(--accent);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 36px; }
.footer h4 { color: var(--accent); margin-bottom: 14px; text-transform: uppercase; }
.footer a { display: block; color: var(--muted); text-decoration: none; margin: 8px 0; }
.footer p { margin-top: 16px; max-width: 520px; }
.legal-line { color: #8b7d77; text-align: center; font-size: .82rem; margin-top: 42px; }
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #061008;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0,0,0,.28);
}
.legal-page main { max-width: 860px; margin: 0 auto; padding: 74px 24px; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 18px; }
.legal-page h2 { font-size: 1.6rem; margin-top: 34px; }

@media (max-width: 900px) {
    .menu-btn { display: grid; place-items: center; }
    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--accent);
        border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.18); }
    .hero, .page-hero {
        background:
            linear-gradient(180deg, rgba(253,247,240,.96) 0%, rgba(253,247,240,.9) 100%),
            url("hero-garavatto-collage.svg") center bottom/120% auto no-repeat;
        padding: 86px 0;
    }
    .artist-hero-poker {
        background:
            linear-gradient(180deg, rgba(253,247,240,.98) 0%, rgba(253,247,240,.86) 100%),
            image-set(url("artists/las-poker-640.jpg") 1x, url("artists/las-poker-1200.jpg") 2x) center/cover no-repeat;
    }
    .artist-hero-motormaniak {
        background:
            linear-gradient(180deg, rgba(253,247,240,.98) 0%, rgba(253,247,240,.86) 100%),
            image-set(url("artists/motormaniak-640.jpg") 1x, url("artists/motormaniak-1200.jpg") 2x) center/cover no-repeat;
    }
    .artist-hero-bastarda {
        background:
            linear-gradient(180deg, rgba(253,247,240,.98) 0%, rgba(253,247,240,.82) 100%),
            image-set(url("artists/la-bastarda-640.jpg") 1x, url("artists/la-bastarda-1200.jpg") 2x) center/cover no-repeat;
    }
    .hero-panel { grid-template-columns: 1fr; max-width: 680px; }
    .hero-grid, .split, .feature-row, .footer-grid { grid-template-columns: 1fr; }
    .cards.three, .artist-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
    .wrap { width: min(100% - 28px, 1180px); }
    body { font-size: 15.5px; }
    h1 { font-size: clamp(3.8rem, 20vw, 5.4rem); line-height: .88; }
    h2 { font-size: clamp(2.1rem, 12vw, 3rem); line-height: 1; }
    .hero, .page-hero { min-height: auto; padding: 72px 0 58px; }
    .hero-copy p { font-size: 1rem; }
    .section { padding: 66px 0; }
    .actions, .btn { width: 100%; }
    .cards.three, .cards.two, .artist-grid, .process-grid, .stat-grid { grid-template-columns: 1fr; }
    .row-head { align-items: start; }
    .round-control { display: none; }
    .card, .artist-body, .process-card, .info-panel { padding: 24px; }
    .card { min-height: auto; }
    .artist-cover { aspect-ratio: 16 / 11; }
    .timeline { gap: 22px; }
    .timeline:before { left: 20px; }
    .timeline-item { margin-left: 58px; padding: 22px; }
    .timeline-item:before { left: -47px; }
    .footer { padding-bottom: 88px; }
}
