/* style.css — v1.0 — 2026-04-07
   The Sound Guy · merge-website · AZLIVE SNC */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@400;500;600&family=Space+Mono&display=swap');

/* ── TOKENS ────────────────────────────────────────────────────────────────── */
:root {
  --bg:       #06080e;
  --bg2:      #0b0e18;
  --panel:    rgba(255,255,255,.05);
  --panel2:   rgba(255,255,255,.08);
  --border:   rgba(255,255,255,.09);
  --border2:  rgba(255,255,255,.15);
  --text:     rgba(255,255,255,.92);
  --muted:    rgba(255,255,255,.60);
  --muted2:   rgba(255,255,255,.38);
  --gold:     #f5c400;
  --gold-dim: rgba(245,196,0,.18);
  --blue:     #4a6cf7;
  --shadow:   0 8px 32px rgba(0,0,0,.50);
  --shadow-lg:0 24px 64px rgba(0,0,0,.60);
  --r:        12px;
  --r-lg:     18px;
  --max:      1120px;
  --f-display:'Barlow Condensed', system-ui, sans-serif;
  --f-body:   'Inter', system-ui, sans-serif;
  --f-mono:   'Space Mono', monospace;
}

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }

body {
  font-family: var(--f-body);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 1400px 900px at 75% -5%,  rgba(74,108,247,.11), transparent 55%),
    radial-gradient(ellipse 1000px 700px at 5%  90%,  rgba(245,196,0,.07),  transparent 55%),
    linear-gradient(rgba(255,255,255,.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.013) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  background-attachment: fixed;
}

/* ── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  letter-spacing: .04em;
  line-height: 1.1;
}

/* ── SKIP ───────────────────────────────────────────────────────────────────── */
.skip {
  position: absolute; left: -999px; top: 10px;
  padding: 8px 14px; background: var(--bg); border: 1px solid var(--border2);
  border-radius: var(--r); font-size: 13px;
}
.skip:focus { left: 10px; z-index: 200; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(6,8,14,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px 20px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 52px; width: auto; opacity: .85; }
.nav__logo span {
  font-family: var(--f-display); font-size: 16px; font-weight: 700;
  letter-spacing: .10em; color: var(--muted);
}

.nav__links { display: none; gap: 22px; list-style: none; }
@media (min-width: 780px) { .nav__links { display: flex; } }
.nav__links a {
  color: var(--muted); font-size: 12px; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  transition: color .15s;
}
.nav__links a:hover  { color: var(--text); }
.nav__links a.active { color: var(--gold); }

.nav__cta { display: none; }
@media (min-width: 560px) { .nav__cta { display: inline-flex; } }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r);
  border: 1px solid var(--border2); background: var(--panel2);
  color: var(--text); font-family: var(--f-body); font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform .14s, background .14s, border-color .14s;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.11); }
.btn.primary { background: var(--gold); border-color: var(--gold); color: #000; }
.btn.primary:hover { background: #ffd524; border-color: #ffd524; transform: translateY(-2px); }
.btn.ghost   { background: transparent; }
.btn.sm      { padding: 8px 14px; font-size: 13px; }

/* ── HERO ─────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center;
  padding: 80px 0 64px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('downloads/locandina-main.jpeg') center 35%/cover no-repeat;
  opacity: .14;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,14,.25) 0%, rgba(6,8,14,.90) 100%),
    linear-gradient(90deg,  rgba(6,8,14,.92) 0%, rgba(6,8,14,.40) 65%, transparent 100%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1fr 1fr; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; color: var(--gold);
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(245,196,0,.28); background: rgba(245,196,0,.07);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(54px, 9.5vw, 110px); font-weight: 800;
  color: var(--gold); letter-spacing: .06em; line-height: 1;
  margin-bottom: 4px;
}
.hero__subtitle {
  font-size: clamp(14px, 2vw, 20px); font-weight: 400;
  color: var(--muted); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; width: fit-content; margin-bottom: 32px;
}
.hero__stat {
  padding: 12px 20px; border-right: 1px solid var(--border);
  background: var(--panel); backdrop-filter: blur(8px);
}
.hero__stat:last-child { border-right: none; }
.stat__k {
  font-family: var(--f-mono); font-size: 10px; color: var(--muted2);
  letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 3px;
}
.stat__v {
  font-family: var(--f-display); font-size: 21px; font-weight: 700;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }

.hero__image { display: none; }
@media (min-width: 960px) { .hero__image { display: block; } }
.hero__image img {
  border-radius: var(--r-lg); border: 1px solid var(--border2); box-shadow: var(--shadow-lg);
}

/* ── SECTIONS ────────────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section.alt {
  background: rgba(255,255,255,.022);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.section__head { max-width: 800px; margin: 0 0 40px; }
.section__head .label {
  display: inline-block; font-family: var(--f-mono); font-size: 10px;
  color: var(--gold); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.section__head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 10px; }
.section__head p   { color: var(--muted); font-size: clamp(15px, 2vw, 17px); }

/* ── GRID ────────────────────────────────────────────────────────────────────── */
.grid   { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 680px)  { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ── CARDS ───────────────────────────────────────────────────────────────────── */
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  backdrop-filter: blur(8px);
}
.card.gold-rim { border-color: rgba(245,196,0,.28); background: rgba(245,196,0,.04); }
.card__label {
  font-family: var(--f-mono); font-size: 10px; color: var(--gold);
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; display: block;
}
.card h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; margin-bottom: 10px; }
.card p, .card li { color: var(--muted); font-size: 15px; }

/* ── SPLIT ───────────────────────────────────────────────────────────────────── */
.split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 960px) {
  .split       { grid-template-columns: 1.25fr .75fr; }
  .split.flip  { grid-template-columns: .75fr 1.25fr; }
  .split.flip .split__img { order: -1; }
}
.split__img img {
  border-radius: var(--r-lg); border: 1px solid var(--border2); box-shadow: var(--shadow-lg);
}

/* ── CALENDAR ────────────────────────────────────────────────────────────────── */
.cal {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.cal__head {
  padding: 12px 18px; background: rgba(245,196,0,.06);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.cal__head span {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--gold); letter-spacing: .10em; text-transform: uppercase;
}
.cal__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 18px; border-bottom: 1px solid var(--border);
}
.cal__row:last-child { border-bottom: none; }
.cal__day  { font-family: var(--f-mono); font-size: 11px; color: var(--muted2); letter-spacing: .07em; text-transform: uppercase; min-width: 80px; }
.cal__desc { font-size: 14px; color: var(--muted); flex: 1; }
.cal__time { font-family: var(--f-mono); font-size: 12px; color: var(--gold); }

/* ── CHECK LIST ──────────────────────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--muted); font-size: 15px;
}
.check-list li::before {
  content: '▸'; color: var(--gold); font-size: 11px;
  margin-top: 4px; flex-shrink: 0;
}

/* ── FORM ────────────────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-mono); font-size: 10px; color: var(--muted2);
  letter-spacing: .12em; text-transform: uppercase;
}
.field input, .field select, .field textarea {
  background: rgba(0,0,0,.35); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 14px;
  color: var(--text); font-family: var(--f-body); font-size: 15px;
  outline: none; transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(245,196,0,.50);
  box-shadow: 0 0 0 3px rgba(245,196,0,.09);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted2); }
.field select option { background: #0d1020; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field-note { font-size: 12px; color: var(--muted2); margin-top: 2px; }

/* ── DIVIDER ─────────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ── NOTICE ──────────────────────────────────────────────────────────────────── */
.notice {
  background: rgba(245,196,0,.06); border: 1px solid rgba(245,196,0,.22);
  border-radius: var(--r); padding: 14px 18px; font-size: 14px; color: var(--muted);
}
.notice strong { color: var(--gold); }

/* ── PAGE HEADER ──────────────────────────────────────────────────────────────── */
.page-header { padding: 52px 0 44px; border-bottom: 1px solid var(--border); }
.page-header .label {
  display: block; font-family: var(--f-mono); font-size: 10px;
  color: var(--gold); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px;
}
.page-header h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 700; margin-bottom: 10px; }
.page-header p  { color: var(--muted); font-size: 17px; max-width: 680px; }

/* ── PILL ────────────────────────────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted); background: var(--panel);
}
.pill.gold { border-color: rgba(245,196,0,.30); color: var(--gold); background: var(--gold-dim); }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.footer {
  padding: 36px 0; border-top: 1px solid var(--border);
  background: rgba(0,0,0,.28);
}
.footer__grid {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; flex-direction: column; gap: 5px; }
.footer__brand img { height: 20px; width: auto; opacity: .45; }
.footer__payoff { font-size: 11px; color: var(--muted2); letter-spacing: .07em; }
.footer__copy   { font-size: 12px; color: var(--muted2); }
.footer__links  { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { font-size: 13px; color: var(--muted2); transition: color .14s; }
.footer__links a:hover { color: var(--text); }

/* ── UTILITIES ───────────────────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted{ color: var(--muted); }
.text-sm   { font-size: 13px; }
.text-mono { font-family: var(--f-mono); }
.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.flex  { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
