/* =========================================================
   VELVET ROSE — Luxury light theme
   Live music for exceptional events · French Riviera
   ========================================================= */

:root {
    /* Palette — warm ivory & ink */
    --paper:     #FBF8F2;   /* main background */
    --cream:     #F3ECE0;   /* alternate sections */
    --ink:       #211D18;   /* near-black warm */
    --ink-soft:  #4C453A;   /* muted body (scurito per leggibilità) */
    --gold:      #A9885E;   /* bronze accent */
    --gold-deep: #8C6E46;
    --line:      rgba(33, 29, 24, 0.14);
    --line-soft: rgba(33, 29, 24, 0.08);

    /* Type */
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

    /* Metrics */
    --container: 1240px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.85;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: clamp(4.5rem, 10vw, 9rem); }
.section[id] { scroll-margin-top: 84px; }
.section-cream { background: var(--cream); }

.eyebrow {
    font-family: var(--sans);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.7rem;
    color: var(--gold-deep);
}

.lead {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--ink);
}

.muted { color: var(--ink-soft); }

/* Ornamental divider */
.ornament {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}
.ornament::before,
.ornament::after {
    content: "";
    width: clamp(28px, 6vw, 60px);
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1.05rem 2.2rem;
    border: 1px solid var(--gold);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn-light { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link-underline {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-underline:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 1.1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.85rem; }
.brand-mark { width: 52px; height: 52px; transition: filter 0.45s var(--ease); }
.brand-logo { height: clamp(58px, 6vw, 78px); width: auto; display: block; transition: filter 0.45s var(--ease); }
.site-header.over-hero .brand-logo { filter: brightness(0) invert(1); }
.brand-word {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.45s var(--ease);
    line-height: 1;
    padding-left: 0.1em;
    white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 2.2rem; }
.site-nav a {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    transition: color 0.3s var(--ease);
}
.site-nav a::after {
    content: "";
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.35s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold-deep); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }

.nav-cta { padding: 0.7rem 1.5rem; border: 1px solid var(--ink); }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }

/* Header over dark hero (top of page) */
.site-header.over-hero { background: transparent; }
.site-header.over-hero .brand-word,
.site-header.over-hero .site-nav a { color: #fff; }
.site-header.over-hero .brand-mark { filter: brightness(0) invert(1); }
.site-header.over-hero .nav-cta { border-color: rgba(255,255,255,0.75); }
.site-header.over-hero .nav-cta:hover { background: #fff; color: var(--ink) !important; }

/* Header when scrolled (solid) */
.site-header.scrolled {
    background: var(--paper);
    box-shadow: 0 1px 0 var(--line-soft);
}

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
    background: transparent; border: none; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 1.5px; background: currentColor; transition: 0.3s var(--ease); }
.site-header.over-hero .nav-toggle { color: #fff; }
.nav-toggle { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0; z-index: -2;
    background: url("/images/hero-jazz.jpg") center/cover no-repeat;
}
.hero::after {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(20,16,12,0.42) 0%, rgba(20,16,12,0.30) 45%, rgba(20,16,12,0.62) 100%);
}
.hero-content { max-width: 1120px; min-width: 0; }
.hero .eyebrow { color: rgba(255,255,255,0.86); }
.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.075em;
    margin: 1.4rem 0 0.6rem;
    text-transform: uppercase;
}
/* Da tablet in su c'è spazio: titolo su una riga sola */
@media (min-width: 601px) {
    .hero h1 { white-space: nowrap; }
}
/* Su smartphone: a capo naturale (una riga sola sarebbe troppo piccola) */
@media (max-width: 600px) {
    .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); letter-spacing: 0.05em; }
}
.hero .hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2.6vw, 1.9rem);
    font-weight: 300;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.scroll-cue {
    position: absolute;
    left: 50%; bottom: 2rem; transform: translateX(-50%);
    font-family: var(--sans); font-size: 0.62rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-cue::after {
    content: ""; width: 1px; height: 46px;
    background: linear-gradient(rgba(255,255,255,0.8), transparent);
}

/* Hero variant for inner pages (shorter, page-specific image) */
.hero.hero-page { min-height: 84vh; }
.hero-about::before {
    background: url("/images/about-hero.jpg") center 26% / cover no-repeat;
}
.hero-services::before {
    background: url("/images/services-hero.jpg") center 42% / cover no-repeat;
}
.hero-repertoire::before {
    background: url("/images/repertoire-hero.jpg") center 46% / cover no-repeat;
}
/* Sfondo video dell'hero (self-hosted, muto, in loop) */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-reviews::before {
    background: url("/images/reviews-hero.jpg") center 38% / cover no-repeat;
}
.hero-contact { min-height: 60vh; }
.hero-contact::before {
    background: url("/images/contact-hero.jpg") center 15% / cover no-repeat;
}
/* Enquire: transizione più fluida hero -> primo blocco */
.hero-contact + .section { padding-top: clamp(2rem, 4vw, 3.2rem); }

/* ---------- Contact ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}
.contact-item { margin-bottom: 1.7rem; }
.contact-item h3 {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
}
.contact-item p,
.contact-item a {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ink);
    line-height: 1.4;
}
.contact-item a:hover { color: var(--gold-deep); }
.contact-item p.small,
.contact-item p.small a { font-family: var(--sans); font-size: 0.95rem; color: var(--ink-soft); }

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.field { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.field label {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 0.9rem 1rem;
    transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.field .error { color: #a3402f; font-size: 0.76rem; margin-top: 0.4rem; }

.form .btn { margin-top: 0.4rem; }

.alert {
    background: rgba(169, 136, 94, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold-deep);
    font-family: var(--serif);
    font-size: 1.05rem;
    padding: 1rem 1.3rem;
    margin-bottom: 1.6rem;
}
.alert-error {
    background: rgba(163, 64, 47, 0.08);
    border-color: #a3402f;
    color: #a3402f;
}

@media (max-width: 860px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.review {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line-soft);
    padding: 2.2rem;
    box-shadow: 0 18px 40px rgba(33, 29, 24, 0.05);
}
.review .stars {
    color: var(--gold);
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    margin-bottom: 1.1rem;
}
.review blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 1.4rem;
}
.review cite {
    margin-top: auto;
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

@media (max-width: 860px) {
    .reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .reviews { grid-template-columns: 1fr; }
}

/* ---------- Songbook (repertoire) ---------- */
.songbook {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 3.6rem);
}
.songbook-col h3 {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    font-size: 1.5rem;
    padding-bottom: 0.8rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid var(--line);
}
.songbook-col h3 .idx {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
}
.songbook-col ul { list-style: none; }
.songbook-col li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-soft);
    font-size: 0.98rem;
}
.songbook-col li:last-child { border-bottom: none; }
.songbook-note {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    color: var(--ink-soft);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
}

@media (max-width: 860px) {
    .songbook { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .songbook { grid-template-columns: 1fr; }
}

/* ---------- Intro / editorial split ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}
.split.reverse .split-media { order: -1; }
.split-body .eyebrow { display: block; margin-bottom: 1.5rem; }
.split-body h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: 1.6rem;
}
.split-body p { color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 46ch; }
.split-body .btn, .split-body .link-underline { margin-top: 1rem; }

.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-media img.shift-up { object-position: center 62%; }
.split-media.wide img { aspect-ratio: 3/2.4; }
.split-media .caption {
    position: absolute; bottom: 1.1rem; left: 1.1rem;
    font-family: var(--sans); font-size: 0.62rem;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: #fff; background: rgba(20,16,12,0.55);
    padding: 0.4rem 0.9rem;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* ---------- Section heading (centered) ---------- */
.head-center { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 6vw, 4.5rem); }
.head-center .eyebrow { display: block; margin-bottom: 1.2rem; }
.head-center h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.head-center p { color: var(--ink-soft); margin-top: 1.2rem; }

/* ---------- Formats ---------- */
.formats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
}
.format {
    padding: 2.6rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    transition: background 0.4s var(--ease);
}
.format:nth-child(5n) { border-right: none; }
.format:last-child { border-right: none; }
.format:hover { background: rgba(169,136,94,0.06); }
.format .num {
    font-family: var(--serif); font-style: italic;
    color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem;
}
.format h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.format p { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.format .format-note { margin-top: 0.7rem; font-size: 0.9rem; font-style: italic; letter-spacing: 0; text-transform: none; color: var(--gold-deep); }
.btn-dark { border-color: var(--gold); color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Selected experience grid ---------- */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2rem, 3vw, 2rem);
}
.exp {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 3/2.3;
}
.exp img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.exp-portrait img { object-position: center 12%; }
.exp img.exp-focus-top { object-position: center 7%; }
.exp:hover img { transform: scale(1.05); }
.exp::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,16,12,0) 40%, rgba(20,16,12,0.72) 100%);
}
.exp-caption {
    position: absolute; left: 0; bottom: 0; z-index: 2;
    padding: 2rem; color: #fff;
}
.exp-caption .eyebrow { color: rgba(255,255,255,0.82); }
.exp-caption h3 { font-size: 1.75rem; margin-top: 0.5rem; font-weight: 400; }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: 900px; margin: 0 auto; }
.quote-slider { position: relative; }
.qs-track { position: relative; min-height: 220px; margin-top: 1.6rem; transition: min-height .45s ease; }
.qs-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; }
.qs-slide.is-active { opacity: 1; visibility: visible; }
.qs-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 2rem; }
.qs-dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 1px solid var(--gold); background: transparent; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.qs-dot:hover { transform: scale(1.15); }
.qs-dot.is-active { background: var(--gold); }
.quote blockquote {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3.6vw, 2.8rem);
    font-weight: 300; font-style: italic;
    line-height: 1.35; color: var(--ink);
}
.quote cite {
    display: block; margin-top: 1.8rem;
    font-family: var(--sans); font-style: normal;
    font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold-deep);
}

/* ---------- CTA ---------- */
.cta {
    position: relative; text-align: center; color: #fff;
    padding-block: clamp(5rem, 12vw, 9rem);
    overflow: hidden;
}
.cta::before {
    content: ""; position: absolute; inset: 0; z-index: -2;
    background: url("/images/home-cta.jpg") center/cover no-repeat; background-attachment: fixed;
}
.cta::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(20,16,12,0.62);
}
.cta .eyebrow { color: rgba(255,255,255,0.82); }
.cta h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin: 1.2rem auto 1.4rem; max-width: 16ch; font-weight: 300; }
.cta p { color: rgba(255,255,255,0.85); max-width: 46ch; margin: 0 auto 2.4rem; }

/* ---------- Anteprima audio inline (self-hosted) ---------- */
.songbook-col li.song {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.song-play {
    flex: 0 0 auto;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* icona play (triangolo) */
.song-play::before {
    content: "";
    position: absolute; top: 50%; left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent var(--gold-deep);
    transition: border-color 0.25s var(--ease);
}
.song-play:hover { background: var(--gold); }
.song-play:hover::before { border-left-color: #fff; }
/* stato in riproduzione: due barrette (pausa) */
.song-play.is-playing { background: var(--gold); border-color: var(--gold); }
.song-play.is-playing::before {
    border: none;
    left: 50%;
    width: 7px; height: 9px;
    border-left: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
}

/* ---------- Pagine legali ---------- */
.page-hero-plain { padding-block: clamp(7rem, 12vw, 9rem) clamp(2.5rem, 5vw, 3.5rem); }
.footer-legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal-links a { color: #a79d8e; transition: color 0.3s var(--ease); }
.footer-legal-links a:hover { color: #fff; }
.footer-credit a { color: var(--gold); border-bottom: 1px solid transparent; transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.footer-credit a:hover { color: #fff; border-color: var(--gold); }
.legal { padding-block: clamp(3rem, 7vw, 5rem) clamp(4rem, 9vw, 7rem); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-lang {
    display: flex; gap: 0.8rem; justify-content: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}
.legal-lang a {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.5rem 1.1rem; border: 1px solid var(--line); color: var(--ink-soft);
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.legal-lang a:hover { border-color: var(--gold); color: var(--gold-deep); }
.legal-lang a[aria-current="page"] { border-color: var(--ink); color: var(--ink); }
.legal-inner h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin: 2.4rem 0 0.8rem;
}
.legal-inner h2:first-of-type { margin-top: 0; }
.legal-inner p, .legal-inner li { color: var(--ink-soft); line-height: 1.75; }
.legal-inner p { margin-bottom: 0.9rem; }
.legal-inner ul { margin: 0 0 0.9rem 1.2rem; }
.legal-inner li { margin-bottom: 0.4rem; }
.legal-inner a { color: var(--gold-deep); border-bottom: 1px solid var(--line); }
.legal-inner a:hover { color: var(--ink); }
.legal-note {
    background: var(--cream); border-left: 2px solid var(--gold);
    padding: 1.1rem 1.4rem; margin: 1.6rem 0; font-size: 0.92rem;
}
.legal-updated {
    margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cdc4b6; padding-block: clamp(3.5rem, 7vw, 5rem) 2.2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-word {
    font-family: var(--serif); font-size: 1.6rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: #fff;
    margin-bottom: 1rem;
}
.footer-brand p { max-width: 34ch; font-size: 0.92rem; color: #a79d8e; }
.footer-col h4 {
    font-family: var(--sans); font-weight: 400; font-size: 0.68rem;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
    display: block; color: #cdc4b6; font-size: 0.92rem;
    margin-bottom: 0.6rem; transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-langs { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8a8173; }
.footer-legal-links .sep { color: #6f665a; }
/* Colonna contatti senza intestazione: allineala ai link di "Explore" quando le colonne sono affiancate */
@media (min-width: 773px) {
    .footer-contact { margin-top: 2rem; }
}
.footer-bottom {
    padding-top: 2rem; display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 0.6rem;
    font-size: 0.72rem; letter-spacing: 0.1em; color: #8a8173;
}
.footer-photo { padding-top: 1.8rem; font-size: 0.74rem; letter-spacing: 0.03em; color: #8a8173; }
.footer-photo .fp-label { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.66rem; color: var(--gold); margin-right: 0.55rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .cta::before { background-attachment: scroll; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .split, .split.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
    .split.reverse .split-media { order: 0; }
    .formats { grid-template-columns: repeat(2, 1fr); }
    .format:nth-child(4n) { border-right: 1px solid var(--line); }
    .format:nth-child(2n) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; inset: 0 0 0 auto;
        width: min(82vw, 360px);
        flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 2rem; padding: 3rem;
        background: var(--paper);
        transform: translateX(100%); transition: transform 0.5s var(--ease);
        box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    }
    .site-nav.open { transform: translateX(0); }
    .site-nav a, .site-header.over-hero .site-nav a { color: var(--ink); font-size: 0.9rem; }
    .site-nav .nav-cta { border-color: var(--ink); }
    .exp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
    .formats { grid-template-columns: 1fr; }
    .format, .format:nth-child(n) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; justify-content: center; }
}

/* ---------- Modifiche 22/07 ---------- */

/* Hero: piccola icona Instagram discreta ma ben visibile */
.hero-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.6rem;
    color: rgba(255,255,255,0.9);
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-social:hover { color: #fff; transform: translateY(-2px); }
.hero-social svg { width: 26px; height: 26px; display: block; }

/* Formats: la riga strumenti riserva l'altezza max (2 righe, come il Quintet)
   così le descrizioni in corsivo restano allineate tra tutte le colonne */
.format { display: flex; flex-direction: column; }
.format p:not(.format-note) { min-height: 2.6rem; }
.format .format-note { margin-top: 0.4rem; padding-top: 0; }

/* Homepage blocco 3: riduce lo spazio verticale, soprattutto sotto il pulsante */
.section-tight { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tight .head-center:last-child { margin-top: 1.6rem !important; }

/* ---------- Modifiche 23/07 ---------- */

/* Icone social nella barra di navigazione (Instagram + YouTube) */
.nav-social { display: inline-flex; align-items: center; gap: 1.05rem; }
.nav-social a {
    display: inline-flex; color: inherit;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-social a::after { display: none; }
.nav-social svg { width: 21px; height: 21px; display: block; }
.nav-social a:hover { color: var(--gold-deep); transform: translateY(-1px); }

/* Our Sound: lista unica di brani con player audio (niente categorie) */
.tracklist { max-width: 620px; margin: 2.5rem auto 0; }
.track {
    display: flex; align-items: center; gap: 1.15rem;
    padding: 1.05rem 0.2rem;
    border-bottom: 1px solid var(--line-soft);
}
.track:last-child { border-bottom: none; }
.track .song-play { width: 40px; height: 40px; }
.track-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.track-title { font-family: var(--serif); font-size: 1.35rem; line-height: 1.15; color: var(--ink); }
.track-sub {
    font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
}

/* About: mostra la foto dei fondatori per intero, senza tagliare i piedi */
.split-media--contain img { object-fit: contain; object-position: center bottom; background: var(--cream); }
