/* ===== LIVEPART – Shared Stylesheet ===== */

:root {
  --orange:     #f75e25;
  --orange-dark:#b84217;
  --text:       #334155;
  --heading:    #1e293b;
  --dark-bg:    #353C40;
  --cream-bg:   #F9F8F6;
  --light-bg:   #f8f8f6;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --radius:     8px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --font:       'Montserrat', sans-serif;
  --max-w:      1400px;
  --nav-h:      72px;
}

/* ===== FONTS ===== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: .9rem;
  z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.4em;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; line-height: 1.3em; }
h3 { font-size: 1.5rem;   line-height: 1.3em; }
h4 { font-size: 1.25rem;  line-height: 1.2em; }
p  { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--dark-bg);
  color: rgba(255,255,255,.85);
}
.section-alt h1,
.section-alt h2,
.section-alt h3,
.section-alt h4 { color: var(--white); }
.section-alt .section-title p { color: rgba(255,255,255,.75); }
.section-alt a:not(.btn) { color: rgba(255,255,255,.9); }
.section-alt a:not(.btn):hover { color: var(--orange); }
/* Wave divider */
.section-wave { position: relative; padding-bottom: 0; }
.wave-divider { line-height: 0; margin-top: 3rem; }
.wave-divider svg { display: block; width: 100%; height: 120px; }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 { color: var(--orange); margin-bottom: .5rem; }
.section-title p {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 720px;
  margin: .7rem auto 0;
}
.section-rule {
  border: none;
  border-top: 2px solid var(--heading);
  width: 60px;
  margin: .75rem auto 1rem;
}
.section-rule-orange { border-top-color: var(--orange); margin: .75rem 0 1.5rem; }
.label {
  display: inline-block;
  align-self: flex-start;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 30px;
  margin-bottom: .75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  border-color: var(--white);
  color: var(--heading);
}
.btn-white:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ===== NAVIGATION ===== */
/* Section nav (main page only – second row inside header) */
.section-nav-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid rgba(255,255,255,.07);
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-inner a {
  color: rgba(255,255,255,.55);
  font-size: .74rem;
  font-weight: 500;
  padding: 0 .8rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.section-nav-inner a:hover { color: rgba(255,255,255,.9); }
.section-nav-inner a.active { color: var(--orange); border-bottom-color: var(--orange); }

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  border-bottom: none;
  height: auto;
}
.nav-inner {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  padding: 7px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.nav-row-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .25rem;
  padding: 8px 0 6px;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-menu a {
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .88rem;
  padding: .45rem .75rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
  background: transparent;
}
.nav-cta {
  margin-left: .5rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark-bg);
  border-bottom: none;
  z-index: 99;
  padding: 1rem 1.5rem 1.5rem;
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav a:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero { line-height: 0; }
.hero-img { width: 100%; height: auto; display: block; }

/* ===== INTRO ===== */
.intro {
  background: var(--dark-bg);
  color: rgba(255,255,255,.85);
  position: relative;
  padding-bottom: 0;
}
.intro-inner { text-align: center; }
.intro-inner h1 { color: var(--white); font-size: 1.6rem; margin-bottom: 1.1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.intro-inner p { font-size: 1.1rem; margin-bottom: 1.8rem; max-width: 720px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.85); }

/* ===== YOUTUBE FEATURE ===== */
.video-feature { padding: 3rem 0; }
.yt-thumb-link {
  display: block;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.yt-thumb-link img { width: 100%; height: auto; border-radius: var(--radius); }
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.yt-thumb-link:hover .yt-play-btn { transform: scale(1.1); }

/* ===== AUDIO PLAYER ===== */
.audio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.audio-layout-reverse .audio-collage { order: -1; }
.audio-list { display: flex; flex-direction: column; gap: .6rem; }
.audio-collage img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.audio-card {
  background: var(--orange) url('images/pattern.webp') center/cover;
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.audio-card-title {
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
}
.audio-card-original {
  font-weight: 400;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
}
.audio-card audio {
  width: 100%;
  accent-color: var(--white);
  height: 36px;
}
/* Native audio style (best cross-browser) */
audio { accent-color: var(--orange); }

/* ===== REPERTOIRE ===== */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
/* Genre */
.genre-section { margin-top: 3rem; }
.genre-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.genre-card {
  perspective: 600px;
  width: 160px;
  height: 130px;
  cursor: pointer;
}
.genre-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .5s;
}
.genre-card:hover .genre-card-inner,
.genre-card.flipped .genre-card-inner {
  transform: rotateY(180deg);
}
.genre-card-front,
.genre-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.genre-card-front {
  gap: .5rem;
}
.genre-card-back {
  transform: rotateY(180deg);
  background: var(--orange);
  color: var(--white);
  padding: .75rem;
  text-align: center;
  gap: .35rem;
}
.genre-note { width: 40px; height: 40px; color: var(--orange); }
.genre-card-front span { font-weight: 600; font-size: 1rem; color: var(--heading); }
.genre-back-title { font-weight: 700; font-size: .9rem; }
.genre-card-back p { font-size: .75rem; line-height: 1.45; margin: 0; color: rgba(255,255,255,.9); }

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.video-thumb {
  position: relative;
  border: 4px solid var(--orange);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #111;
  display: block;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s, opacity .3s;
}
.video-thumb:hover img { transform: scale(1.04); opacity: .85; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play svg {
  width: 60px; height: 60px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform .2s;
}
.video-thumb:hover .video-play svg { transform: scale(1.1); }
.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: .5rem .75rem;
  text-align: center;
}
.videos-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.videos-cta p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }

/* ===== BAND MEMBERS ===== */
.band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.band-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.band-card-header {
  background: var(--orange) url('images/pattern.webp') center/cover;
  height: 120px;
  position: relative;
  display: flex;
  justify-content: center;
}
.band-card-header img {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 4px solid var(--white);
  position: absolute;
  bottom: -60px;
  object-fit: cover;
}
.band-card-body {
  background: var(--white);
  padding: 4.5rem 1.5rem 1.75rem;
  text-align: center;
}
.band-card-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: .4rem;
}
.band-icon { width: 32px; height: 32px; flex-shrink: 0; }
.band-card-body h3 { color: var(--heading); margin-bottom: 0; }
.band-card-body p { font-size: .9rem; color: var(--text); margin: 0; }

/* ===== EVENTS ===== */
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.events-content h2 { color: var(--white); }
.events-image img { width: 100%; border-radius: var(--radius); }
.event-item { margin-bottom: 1rem; }
.event-date {
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: .5rem;
}
.event-item p { font-size: .92rem; color: rgba(255,255,255,.85); margin-bottom: .6rem; }
.event-item a { color: var(--orange); }

/* ===== REVIEWS ===== */
#reviews { background: var(--cream-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
}
.review-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: .25rem;
}
.review-author { font-weight: 700; font-size: .95rem; color: var(--heading); }
.review-text { font-size: .88rem; color: var(--text); flex: 1; }
.review-footer {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .88rem;
  margin-top: .25rem;
}
.review-heart { color: var(--orange); flex-shrink: 0; }

/* ===== WEDDING SERVICES ===== */
.services-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}
.services-layout-img {
  flex-shrink: 0;
}
.services-layout-img img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.services-layout-text {
  flex: 1;
}
.services-layout-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ===== WEDDING REPERTOIRE TABLE ===== */
.repertoire-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.repertoire-table th {
  background: var(--heading);
  color: var(--white);
  text-align: left;
  padding: .75rem 1rem;
  font-weight: 600;
}
.repertoire-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
}
.repertoire-table tr:nth-child(even) td { background: var(--light-bg); }

/* ===== DUO SECTION ===== */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.duo-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.duo-img img { width: 100%; height: 420px; object-fit: cover; }
.duo-text h2 { margin-bottom: 1rem; }

/* ===== CONTACT SECTION ===== */
#contact .section-title h2 { color: var(--white); }
#contact .section-title p { color: rgba(255,255,255,.8); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Form labels */
.contact-form-card label {
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

/* Form card */
.contact-form-card {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .92rem;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  width: 100%;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.55); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Info cards */
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card-item {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  color: var(--white);
}
.contact-card-item svg { flex-shrink: 0; width: 28px; height: 28px; margin-top: .1rem; }
.contact-card-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .1rem; }
.contact-card-item a { color: var(--white); font-size: .95rem; }
.contact-card-item a:hover { opacity: .85; }
.contact-card-social {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.contact-card-social a { color: var(--white); display: flex; }
.contact-card-social a:hover { opacity: .8; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--heading);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .88rem; }
.footer-col h4 {
  color: var(--white);
  font-size: .92rem;
  margin-bottom: .85rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  padding: .25rem 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.social-row {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}
.social-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--white) !important;
  padding: 0;
  line-height: 1;
  transition: background .2s;
}
.social-link svg { display: block; flex-shrink: 0; }
.social-link:hover { background: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--orange); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 600px;
  background: var(--heading);
  color: rgba(255,255,255,.85);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  z-index: 150;
  display: none;
  gap: 1rem;
  flex-direction: column;
}
#cookie-banner.visible { display: flex; }
#cookie-banner p { margin: 0; font-size: .88rem; line-height: 1.5; }
#cookie-banner p a { color: var(--orange); }
.cookie-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: .6rem 1.4rem; font-size: .88rem; }
#cookie-decline {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--font);
}
#cookie-decline:hover { color: var(--white); }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px; height: 42px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(247,94,37,.4);
  transition: background .2s, transform .2s;
  z-index: 50;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ===== HERO WEDDING ===== */
.hero-wedding {
  background: #fff url('images/eucalyptus-bg.webp') no-repeat left center / cover;
  padding: 3.5rem 0 2.5rem;
}
.hero-wedding-h1 {
  text-align: center;
  color: var(--wedding);
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.hero-wedding-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.hero-wedding-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
}
.hero-wedding-text p { margin-bottom: 1rem; }
.hero-wedding-photo {
  flex: 0 0 42%;
}
.hero-wedding-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-wedding-cta {
  text-align: center;
}

/* ===== AUDIO SPLIT (Hochzeitsseite) ===== */
.audio-split {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
}
.audio-cards-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.audio-photo-col {
  flex: 0 0 42%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
}
.audio-photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CEREMONY TILES (Hochzeitsseite) ===== */
.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.ceremony-tile {
  perspective: 600px;
  height: 170px;
  cursor: pointer;
}
.ceremony-tile-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .5s;
}
.ceremony-tile:hover .ceremony-tile-inner,
.ceremony-tile.flipped .ceremony-tile-inner {
  transform: rotateY(180deg);
}
.ceremony-tile-front,
.ceremony-tile-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ceremony-tile-front {
  background: var(--white);
  box-shadow: var(--shadow);
  gap: .75rem;
  padding: 1.5rem 1rem;
}
.ceremony-tile-front svg {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--wedding);
}
.ceremony-tile-front span {
  font-weight: 700;
  font-size: .95rem;
  color: var(--heading);
}
.ceremony-tile-back {
  transform: rotateY(180deg);
  background: var(--wedding);
  color: var(--white);
  padding: .85rem;
  text-align: center;
  gap: .4rem;
}
.ceremony-tile-back-title {
  font-weight: 700;
  font-size: .9rem;
  display: block;
}
.ceremony-tile-back p {
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,.9);
}

/* ===== CONTACT INFO (Hochzeitsseite) ===== */
.contact-info { display: flex; flex-direction: column; }
.contact-info h2 { margin-bottom: .75rem; }
.contact-details { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: .85rem; font-size: .92rem; }
.contact-item-icon { font-size: 1.2rem; line-height: 1.5; flex-shrink: 0; }
.contact-item a { color: var(--orange); }

/* ===== FORM NOTE ===== */
.form-note { font-size: .78rem; opacity: .7; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-wedding-row { gap: 1.5rem; }
  .hero-wedding-photo { flex: 0 0 38%; }
  .duo-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .duo-img img { height: 300px; }
  .audio-layout { grid-template-columns: 1fr; }
  .audio-layout-reverse .audio-collage { order: 0; }
  .events-layout { grid-template-columns: 1fr; gap: 2rem; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .services-layout { gap: 2rem; }
  .services-layout-img img { width: 180px; height: 180px; }
  .audio-photo-col { flex: 0 0 38%; }
}

@media (max-width: 600px) {
  .services-layout { flex-direction: column; gap: 1.5rem; }
  .services-layout-img img { width: 100%; height: 200px; }
  .audio-split { flex-direction: column; }
  .audio-photo-col { flex: unset; height: 280px; }
}

@media (max-width: 700px) {
  .hero-wedding-h1 { font-size: 1.5rem; }
  .hero-wedding-row { flex-direction: column; }
  .hero-wedding-photo { flex: unset; width: 100%; max-width: 480px; margin: 0 auto; }
  .audio-grid { grid-template-columns: 1fr; }
  :root { --nav-h: 60px; }
  .section { padding: 3.5rem 0; }
  .nav-menu, .nav-cta { display: none; }
  .section-nav-inner { display: none; }
  #site-header { height: var(--nav-h); }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== JUKEBOX / KARAOKE TEASER – Stage Look ===== */
.jukebox-teaser-section {
  background: #0d0d0d;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Scheinwerfer – Lichtstrahlen durch Dunst + Vignette */
.jukebox-teaser-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Diagonale Lichtstrahlen – weich ineinander übergehend */
    repeating-linear-gradient(
      108deg,
      transparent           0px,
      rgba(247,94,37,.07)  55px,
      rgba(247,94,37,.09)  80px,
      transparent          130px,
      rgba(255,160,60,.06) 175px,
      rgba(255,150,40,.07) 205px,
      transparent          260px
    ),
    /* Warmer Lichtpool oben-mitte (Jukebox: von oben) */
    radial-gradient(ellipse 80% 65% at 50% -5%, rgba(247,94,37,.50) 0%, transparent 70%);
  animation: haze-drift 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.jukebox-teaser-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Vignette */
    radial-gradient(ellipse 90% 90% at 50% 50%,
      transparent 35%,
      rgba(0,0,0,.65) 100%),
    /* Zweiter Lichtpool */
    radial-gradient(ellipse 55% 75% at 75% 0%, rgba(255,140,40,.30) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Karaoke: Licht kommt von unten */
#karaoke-teaser::before {
  background:
    repeating-linear-gradient(
      108deg,
      transparent           0px,
      rgba(247,94,37,.07)  55px,
      rgba(247,94,37,.09)  80px,
      transparent          130px,
      rgba(255,160,60,.06) 175px,
      rgba(255,150,40,.07) 205px,
      transparent          260px
    ),
    /* Lichtpool von unten */
    radial-gradient(ellipse 80% 65% at 50% 105%, rgba(247,94,37,.50) 0%, transparent 70%);
}
#karaoke-teaser::after {
  background:
    radial-gradient(ellipse 90% 90% at 50% 50%,
      transparent 35%,
      rgba(0,0,0,.65) 100%),
    radial-gradient(ellipse 55% 75% at 75% 100%, rgba(255,140,40,.30) 0%, transparent 65%);
}

@keyframes haze-drift {
  0%   { transform: translateX(0)     skewX(0deg);   opacity: .85; }
  50%  { transform: translateX(70px)  skewX(3deg);   opacity: 1;   }
  100% { transform: translateX(-60px) skewX(-3deg);  opacity: .82; }
}

/* Inhalt über den Pseudo-Elementen */
.jukebox-teaser-inner { display: flex; align-items: center; gap: 3rem; position: relative; z-index: 1; }

/* Icon mit Puls-Glow */
.jukebox-teaser-icon {
  flex-shrink: 0; width: 120px; height: 120px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  animation: icon-glow 4s ease-in-out infinite;
  text-decoration: none;
  transition: transform .2s;
}
.jukebox-teaser-icon:hover { transform: scale(1.1); color: #fff; }
@keyframes icon-glow {
  0%, 100% {
    box-shadow:
      0 0 20px  rgba(247,94,37,.7),
      0 0 60px  rgba(247,94,37,.4),
      0 0 120px rgba(247,94,37,.2);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 30px  rgba(247,94,37,1),
      0 0 90px  rgba(247,94,37,.7),
      0 0 180px rgba(247,94,37,.35),
      0 0 300px rgba(247,94,37,.12);
    transform: scale(1.06);
  }
}

.jukebox-teaser-text { flex: 1; }
.jukebox-teaser-tag { display: inline-block; background: var(--orange); color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .75rem; border-radius: 20px; margin-bottom: .75rem; }
.jukebox-teaser-text h2 { color: #fff; font-size: 2rem; margin-bottom: .75rem; }
.jukebox-teaser-text p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.7; }

/* Trennlinie zwischen Jukebox- und Karaoke-Block */
#karaoke-teaser { border-top: 1px solid rgba(255,255,255,.07); }

@media (max-width: 700px) {
  .jukebox-teaser-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .jukebox-teaser-text h2 { font-size: 1.5rem; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; font-weight: 700; font-size: 1rem; cursor: pointer; color: var(--heading); list-style: none; gap: 1rem; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--orange); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1rem; color: var(--text); line-height: 1.65; }
.faq-answer p { margin: 0; }
