/* ==========================================================================
   concertoitalia.com — main.css
   Design editoriale italiano — ispirazione Vogue Italia / Domus.
   Bianco + avorio dominanti, sezioni invertite marrone cuoio,
   verde e rosso italiani come accenti, oro anticato per i dettagli preziosi.
   ========================================================================== */

:root {
  --bg:          #ffffff;
  --bg-alt:      #fdf9f3;
  --surface:     #1a1410;
  --ink:         #161616;
  --ink-soft:    #5a5651;
  --line:        #d8d2c4;

  --verde-it:    #009246;
  --verde-soft:  #e0f4ea;
  --rosso-it:    #ce2b37;
  --rosso-soft:  #fbe4e6;
  --oro:         #c9a861;

  --radius:      2px;            /* arrotondamento sobrio, elegante */
  --shell:       1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px;            /* spazio per la .barra-fissa */
}

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 34px; }
a { color: var(--verde-it); }

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; color: var(--ink); }
.kicker {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--verde-it);
  margin-bottom: 10px;
}

/* H2 — allineato a sinistra, peso 600, trattino oro decorativo iniziale */
.block-h {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 22px;
  text-align: left;
}
.block-h::before {
  content: "— ";
  font-style: italic;
  color: var(--oro);
}

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: .01em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--verde-it); font-style: italic; }
.menu { display: flex; gap: 4px; }
.menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
}
.menu a:hover { color: var(--ink); }
.menu a.on { color: var(--ink); border-bottom: 2px solid var(--oro); }

/* ---------- PULSANTI / MODULI ---------- */
.cta {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  color: #fff;
  background: var(--rosso-it);
  border: 0;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease;
}
.cta:hover { background: #b0242f; }

.avviso-form { width: 100%; }
.field-line { display: flex; gap: 9px; flex-wrap: wrap; }
.field-line input[type="email"] {
  flex: 1 1 240px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 13px 18px;
}
.field-line input[type="email"]:focus {
  outline: none;
  border-color: var(--verde-it);
}
.form-ok { font-weight: 600; color: var(--verde-it); padding: 6px 2px; }
.form-hint, .form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  font-style: italic;
}

/* ---------- HERO ARTISTA ---------- */
.headline-block {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 52px;
}
.crumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 20px; }
.crumb a { color: var(--ink-soft); text-decoration: none; }
.crumb a:hover { color: var(--verde-it); }
.crumb span { margin: 0 8px; color: var(--line); }
.meta-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.badge {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--verde-it);
  border: 1px solid var(--verde-it);
  padding: 4px 12px;
  border-radius: var(--radius);
}
.meta-date { font-size: 13px; color: var(--ink-soft); }
.headline {
  font-size: clamp(34px, 5.6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.005em;
  max-width: 18ch;
}
.subline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(19px, 2.3vw, 25px);
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 52ch;
}
.hero-signup {
  margin-top: 30px;
  max-width: 560px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--oro);
  padding: 24px;
}

/* ---------- SEZIONI ---------- */
.band { padding: 56px 0; }
.band--dark {
  background: var(--surface);
  color: #e8e2d6;
}
.band--dark .block-h { color: #fdf9f3; }
.band--dark .copy p { color: #c2bbac; }
.copy { max-width: 780px; }
.copy p { margin: 0 0 17px; color: var(--ink-soft); }
.copy p:last-child { margin-bottom: 0; }

/* ---------- SEDE-CARD ---------- */
.sede-card {
  margin-top: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 28px;
  transition: border-bottom-color .18s ease;
}
.sede-card:hover { border-bottom-color: var(--oro); }
.band--dark .sede-card {
  background: #221b15;
  border-color: #3a2f25;
  color: #e8e2d6;
}
.sc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.vt {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: var(--radius);
}
.vt--cap { color: var(--oro); border-color: var(--oro); font-weight: 600; }
.sc-nome {
  font-size: 28px;
  font-weight: 600;
  margin: 4px 0 6px;
}
.band--dark .sc-nome { color: #fdf9f3; }
.venue-addr { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.vdesc { color: var(--ink-soft); margin-bottom: 16px; }
.band--dark .vdesc, .band--dark .venue-addr, .band--dark .venue-list li {
  color: #c2bbac;
}
.venue-list { list-style: none; }
.venue-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.venue-list li:last-child { border-bottom: 0; }
.venue-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--oro);
}

/* ---------- ISCRIZIONE-BLOCCO (modulo a metà articolo) ---------- */
.iscrizione-blocco {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--rosso-it);
  padding: 26px;
}
.band--dark .iscrizione-blocco {
  background: #221b15;
  border-color: #3a2f25;
  border-left-color: var(--rosso-it);
}
.ib-text h3 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 6px;
}
.band--dark .ib-text h3 { color: #fdf9f3; }
.ib-text p { color: var(--ink-soft); font-size: 14px; margin-bottom: 14px; }
.band--dark .ib-text p { color: #c2bbac; }

/* ---------- TABELLA PREZZI ---------- */
.ptable-wrap { margin: 8px 0 16px; }
.ptable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}
.band--dark .ptable { background: #221b15; border-color: #3a2f25; }
.ptable th {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.band--dark .ptable th { background: #2c241c; color: #c2bbac; border-color: #3a2f25; }
.ptable td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.band--dark .ptable td { color: #d8d0c2; border-color: #3a2f25; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable td:last-child { font-weight: 600; color: var(--oro); }
.vip-line {
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  border-left: 2px solid var(--oro);
  padding-left: 16px;
}
.band--dark .vip-line { color: #c2bbac; }

/* ---------- STORIA / FAQ ---------- */
.hist-item { margin: 20px 0; padding-left: 20px; border-left: 1px solid var(--oro); }
.hist-item h3 { font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.band--dark .hist-item h3 { color: #fdf9f3; }
.hist-item p { color: var(--ink-soft); }
.qa {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 22px 26px;
  margin-bottom: 14px;
  max-width: 840px;
}
.qa h3 { font-size: 21px; font-weight: 600; margin-bottom: 6px; }
.qa p { color: var(--ink-soft); }

/* ---------- ALTRE CITTÀ ---------- */
.elsewhere { display: flex; gap: 16px; flex-wrap: wrap; }
.elsewhere-card {
  text-decoration: none;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 20px 26px;
  min-width: 240px;
  transition: border-bottom-color .18s ease;
}
.elsewhere-card:hover { border-bottom-color: var(--oro); }
.ec-city { font-family: "Cormorant Garamond", serif; font-size: 21px; font-weight: 600; color: var(--ink); }
.ec-venue { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }

/* ---------- HUB ---------- */
.hero-hub {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 50px;
}
.hero-hub h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
}
.lead {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 58ch;
}
.sedi-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.sede-tag {
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 5px 13px;
  border-radius: var(--radius);
}

/* ---------- TOOLS / FILTRI ---------- */
.tools { padding: 34px 0 8px; }
.tabs { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.tab {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 22px;
  cursor: pointer;
}
.tab.on { background: var(--surface); color: #fdf9f3; border-color: var(--surface); }
.finder {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 3px 16px;
  max-width: 420px;
  margin-bottom: 14px;
}
.finder input {
  flex: 1; border: 0; font-family: inherit; font-size: 15px;
  padding: 11px 0; background: transparent; color: var(--ink);
}
.finder input:focus { outline: none; }
.gfilter { display: flex; gap: 7px; flex-wrap: wrap; }
.gchip {
  font-family: inherit;
  font-size: 13px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 14px;
  cursor: pointer;
}
.gchip.on { background: var(--verde-it); color: #fff; border-color: var(--verde-it); }

/* ---------- GRIGLIA ARTISTI ---------- */
.acts-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 32px 0 16px; flex-wrap: wrap; gap: 8px;
}
.acts-head h2 { font-size: 27px; font-weight: 600; }
.acts-count { font-size: 14px; font-style: italic; color: var(--oro); }
.acts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.act-card {
  text-decoration: none;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 18px 20px;
  transition: border-bottom-color .18s ease;
}
.act-card:hover { border-bottom-color: var(--oro); }
.ac-g {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--verde-it);
  font-weight: 600;
}
.ac-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 3px;
}
.ac-cities { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.ac-cities span {
  font-size: 11px; color: var(--ink-soft);
  border: 1px solid var(--line); padding: 2px 7px; border-radius: var(--radius);
}
.ac-cities .here { background: var(--surface); color: #fdf9f3; border-color: var(--surface); }
.nores { display: none; color: var(--ink-soft); padding: 24px 0; font-style: italic; }

/* ---------- HOME ---------- */
.hero-home {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 60px;
}
.hero-home h1 {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 700;
  line-height: 1.06;
  max-width: 16ch;
}
.hero-home h1 em { font-style: italic; color: var(--verde-it); }
.hero-home .lead { max-width: 56ch; }

/* ---------- NOTA INTRO ---------- */
.intro-note {
  margin: 44px 0 22px;
  background: var(--surface);
  color: #e8e2d6;
  padding: 40px;
  max-width: 860px;
  border-top: 3px solid var(--oro);
}
.intro-note h2 { color: #fdf9f3; font-size: 28px; font-weight: 600; margin-bottom: 10px; }
.intro-note h2::before { content: "— "; font-style: italic; color: var(--oro); }
.intro-note p { color: #c2bbac; }

/* ---------- PAGINE LEGALI ---------- */
.legal h2 { margin-top: 30px; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 22px; color: var(--ink-soft); }
.todo {
  background: var(--rosso-soft);
  color: var(--rosso-it);
  font-weight: 600;
  padding: 1px 6px;
  border-radius: var(--radius);
}

/* ---------- BARRA FISSA (sticky) ---------- */
.barra-fissa {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--surface);
  color: #e8e2d6;
  padding: 13px 0;
}
.barra-fissa .shell { display: flex; align-items: center; gap: 22px; }
.bf-text { flex: 1; font-size: 14px; min-width: 0; color: #c2bbac; }
.bf-text b { color: #fdf9f3; font-weight: 600; }
.barra-fissa .avviso-form { flex: 0 1 440px; }
.barra-fissa .field-line input[type="email"] { padding: 10px 15px; border-color: #3a2f25; }
.barra-fissa .cta { padding: 11px 22px; }

/* ---------- FOOTER ---------- */
.pagefoot {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.foot-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 25px;
  color: var(--ink);
}
.foot-logo span { color: var(--verde-it); font-style: italic; }
.foot-tag { font-size: 14px; margin-top: 10px; max-width: 34ch; color: var(--ink-soft); font-style: italic; }
.pagefoot h4 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.pagefoot a, .pagefoot span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
}
.pagefoot a:hover { color: var(--verde-it); }
.foot-base {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .topbar .shell { height: 64px; }
  .menu a { padding: 6px 9px; font-size: 13px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell { padding: 0 18px; }
  .foot-cols { grid-template-columns: 1fr; gap: 26px; }
  .barra-fissa .shell { flex-direction: column; align-items: stretch; gap: 8px; }
  .bf-text { text-align: center; }
}
