/* =========================================================
   Italienische Livemusik / Musica dal vivo italiana
   Shared stylesheet · mobile-first · vanilla CSS
   ========================================================= */

:root {
  /* Palette — warm, premium, italiano (no flag cliché) */
  --bg:        #fbf7f1;   /* warm ivory */
  --bg-alt:    #f4ece1;   /* sand, alt sections */
  --bg-deep:   #2a1216;   /* deep wine-black (hero/footer) */
  --ink:       #2a2320;   /* warm near-black text */
  --ink-soft:  #5e544b;   /* muted body text */
  --line:      #e6dccd;   /* hairline borders */
  --wine:      #7c1d2a;   /* primary brand / CTA */
  --wine-dark: #5e131d;
  --gold:      #c2974b;   /* accents, eyebrows */
  --gold-soft: #e7d3a8;
  --wa:        #25d366;   /* WhatsApp green */
  --wa-dark:   #1da851;
  --white:     #ffffff;

  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow:    0 18px 50px -24px rgba(42, 18, 22, .35);
  --shadow-sm: 0 6px 20px -12px rgba(42, 18, 22, .35);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--wine); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--wine); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 600;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--wine); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: 1.02rem; line-height: 1;
  padding: 1rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: var(--shadow-sm); text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 1.25em; height: 1.25em; flex: none; }
.btn--wa   { --btn-bg: var(--wa); --btn-fg: #04361a; }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }
.btn--call { --btn-bg: var(--wine); }
.btn--call:hover { background: var(--wine-dark); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #3a2a06; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: currentColor; box-shadow: none;
}
.btn--ghost:hover { background: rgba(0,0,0,.04); }
.btn--on-dark.btn--ghost { --btn-fg: #fff; }
.btn--lg { font-size: 1.12rem; padding: 1.15rem 1.9rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row--center { justify-content: center; }

/* small secondary "write in Italian" link */
.alt-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .95rem; font-weight: 600; color: var(--ink-soft);
}
.alt-link svg { width: 1.05em; height: 1.05em; color: var(--wa-dark); }
.alt-link b { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 241, .85);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: flex; flex-direction: column; line-height: 1.15; text-decoration: none; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: -.01em; }
.brand__tag  { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.header-nav { display: none; gap: 1.6rem; }
.header-nav a { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.header-nav a:hover { color: var(--wine); text-decoration: none; }
.header-tools { display: flex; align-items: center; gap: .8rem; }
.lang { display: inline-flex; align-items: center; gap: .25rem; font-weight: 700; font-size: .85rem; letter-spacing: .04em; }
.lang a { color: var(--ink-soft); padding: .15rem .15rem; }
.lang a[aria-current="true"] { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.lang span { color: var(--line); }
.header-cta { display: none; }

@media (min-width: 720px) { .header-cta { display: inline-flex; } }
@media (min-width: 940px) { .header-nav { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(194,151,75,.22), transparent 55%),
    linear-gradient(160deg, #3a141a 0%, var(--bg-deep) 60%, #1c0c0f 100%);
}
.hero__inner {
  display: grid; gap: 2.2rem; align-items: center;
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(3rem, 8vw, 5rem);
}
.hero__title { color: #fff; max-width: 16ch; }
.hero__sub { color: rgba(255,255,255,.86); font-size: 1.2rem; max-width: 44ch; margin-bottom: 1.8rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero__cta { margin-bottom: 1.1rem; }
.hero__secondary { color: rgba(255,255,255,.8); }
.hero__secondary .alt-link { color: rgba(255,255,255,.85); }
.hero__secondary .alt-link b { color: #fff; }
.hero__secondary .alt-link svg { color: var(--wa); }
.hero__media { position: relative; }
.hero__media .media-frame { aspect-ratio: 4 / 5; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.6rem; font-size: .92rem; color: rgba(255,255,255,.8); }
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { width: 1.1em; height: 1.1em; color: var(--gold); }

@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
}

/* ---------- Media frame + placeholders ---------- */
.media-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--bg-alt);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Declared, visible placeholder styling */
.placeholder {
  position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.25rem;
  border: 2px dashed var(--gold); border-radius: var(--radius-sm);
  background: repeating-linear-gradient(45deg, rgba(194,151,75,.07) 0 12px, rgba(194,151,75,.13) 12px 24px);
  color: var(--wine); font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .82rem; line-height: 1.4; min-height: 120px;
}
.placeholder b { display: block; font-family: var(--sans); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; color: var(--gold); margin-bottom: .35rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2rem, 5vw, 3rem); }
.section__head { max-width: 64ch; margin-bottom: 2.4rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.divider { width: 56px; height: 3px; background: var(--gold); border: 0; margin: 0 0 1.4rem; border-radius: 3px; }
.section__head--center .divider { margin-inline: auto; }

/* ---------- Video ---------- */
.video__frame {
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background:
    radial-gradient(80% 80% at 50% 30%, rgba(194,151,75,.2), transparent 60%),
    linear-gradient(160deg, #3a141a, #1c0c0f);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.video__frame iframe { width: 100%; height: 100%; border: 0; }
.video__note { display: flex; flex-direction: column; align-items: center; gap: .8rem; text-align: center; padding: 1.5rem; }
.video__play { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; border: 2px solid rgba(255,255,255,.5); }
.video__play svg { width: 30px; height: 30px; color: #fff; }
.video__note small { color: var(--gold-soft); font-family: ui-monospace, Menlo, Consolas, monospace; letter-spacing: .06em; }

/* ---------- Benefits ---------- */
.cards { display: grid; gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm);
}
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--wine), var(--wine-dark)); color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4rem; }
.card p { margin: 0; color: var(--ink-soft); }
@media (min-width: 760px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Occasions ---------- */
.occasions { display: grid; gap: 1rem; }
.occasion {
  display: flex; align-items: flex-start; gap: .9rem; padding: 1.25rem 1.3rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.occasion:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.occasion svg { width: 1.5rem; height: 1.5rem; color: var(--wine); flex: none; margin-top: .15rem; }
.occasion h3 { font-size: 1.1rem; margin: 0 0 .15rem; }
.occasion p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
@media (min-width: 640px) { .occasions { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .occasions { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Repertoire ---------- */
.rep-grid { display: grid; gap: 1rem; }
.rep {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.3rem 1.4rem;
  background: var(--bg);
}
.rep h3 { font-size: 1.12rem; color: var(--wine); margin-bottom: .3rem; }
.rep p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
@media (min-width: 700px) { .rep-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .rep-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Social proof ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.4rem; text-align: center; }
.stat { padding: 1.2rem .6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.stat b { display: block; font-family: var(--serif); font-size: clamp(1.6rem, 5vw, 2.4rem); color: var(--wine); line-height: 1; }
.stat span { font-size: .85rem; color: var(--ink-soft); }
.testimonials { display: grid; gap: 1.2rem; margin-bottom: 2rem; }
.testimonial { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 1.5rem; }
.testimonial p { font-style: italic; color: var(--ink); margin-bottom: .8rem; }
.testimonial footer { font-size: .9rem; color: var(--ink-soft); font-style: normal; }
.stars { color: var(--gold); letter-spacing: .12em; margin-bottom: .6rem; }
@media (min-width: 820px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.gallery .media-frame { aspect-ratio: 4 / 3; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Region (geo) ---------- */
.region__inner { display: grid; gap: 2rem; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.2rem 0 1.6rem; padding: 0; list-style: none; }
.chip {
  display: inline-block; padding: .5rem .9rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); font-size: .92rem; font-weight: 600; color: var(--ink);
}
.region .media-frame { aspect-ratio: 4 / 3; }
@media (min-width: 860px) { .region__inner { grid-template-columns: 1.1fr .9fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-left: 4rem; }
.step__num {
  position: absolute; left: 0; top: 0; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  background: linear-gradient(160deg, var(--wine), var(--wine-dark)); color: var(--gold-soft);
}
.step h3 { margin-bottom: .25rem; }
.step p { margin: 0; color: var(--ink-soft); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.25rem .25rem; font-family: var(--serif);
  font-size: 1.15rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.5rem; color: var(--gold); flex: none; transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 0 .25rem 1.3rem; color: var(--ink-soft); }

/* ---------- Final CTA band ---------- */
.cta-band {
  color: #fff; text-align: center;
  background:
    radial-gradient(100% 140% at 50% 0%, rgba(194,151,75,.25), transparent 60%),
    linear-gradient(160deg, var(--wine), var(--wine-dark));
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 52ch; margin-inline: auto; margin-bottom: 1.8rem; }
.cta-band .eyebrow { color: var(--gold-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: rgba(255,255,255,.78); padding-block: 3.2rem 6.5rem; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: .8rem; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2.2rem; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-contact a { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .5rem; }
.footer-contact svg { width: 1.1em; height: 1.1em; color: var(--gold); }
.footer-list { list-style: none; padding: 0; margin: 0; font-size: .95rem; }
.footer-list li { margin-bottom: .35rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.credit b { color: #fff; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: grid; grid-template-columns: 1fr; gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(251, 247, 241, .96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(0,0,0,.4);
}
.mobile-cta .btn { padding: .85rem 1rem; font-size: 1rem; box-shadow: none; }
@media (min-width: 768px) { .mobile-cta { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 78px; } }

/* ---------- Language landing (root) ---------- */
.landing {
  min-height: 100svh; display: grid; place-items: center; text-align: center; color: #fff;
  padding: 2rem 1.2rem;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(194,151,75,.22), transparent 55%),
    linear-gradient(160deg, #3a141a 0%, var(--bg-deep) 60%, #1c0c0f 100%);
}
.landing__name { font-family: var(--serif); font-size: clamp(2.4rem, 9vw, 4rem); margin-bottom: .3rem; }
.landing .eyebrow { color: var(--gold-soft); }
.landing__sub { color: rgba(255,255,255,.82); max-width: 42ch; margin: 0 auto 2.2rem; }
.landing__choices { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.landing__choices .btn { min-width: 200px; }

/* ---------- Lead form ---------- */
.form-wrap { max-width: 760px; }
.lead-form { display: grid; grid-template-columns: 1fr; gap: 1.1rem 1.2rem; }
.lead-form .field { display: flex; flex-direction: column; gap: .4rem; }
.lead-form label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.lead-form input, .lead-form select, .lead-form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); width: 100%;
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194, 151, 75, .25);
}
.lead-form textarea { resize: vertical; min-height: 120px; }
.field--full { grid-column: 1 / -1; }
.consent__label { display: flex; align-items: flex-start; gap: .6rem; font-weight: 400; font-size: .95rem; color: var(--ink-soft); cursor: pointer; }
.consent__label input { width: auto; margin-top: .3rem; flex: none; }
.consent__label a { font-weight: 600; }
.form-status { margin: .9rem 0 0; font-weight: 600; min-height: 1.2em; }
.form-status.is-ok  { color: #1e7a43; }
.form-status.is-err { color: var(--wine); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (min-width: 620px) { .lead-form { grid-template-columns: 1fr 1fr; } }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal { max-width: 800px; margin-inline: auto; padding-block: clamp(2.5rem, 6vw, 4rem); }
.legal h1 { margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal a { font-weight: 600; }
.legal .back { display: inline-block; margin-bottom: 2rem; font-weight: 600; }
.legal .lang-switch { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
