/* ── Variables ───────────────────────────────────────────────── */
:root {
  --cream:       #f9f5ef;
  --cream-dark:  #f0ead9;
  --sage:        #e6ede4;
  --sage-mid:    #c5d9c0;
  --sage-deep:   #7a9e7e;
  --sage-hover:  #5c8060;
  --text:        #2a2118;
  --text-muted:  #6b5c4a;
  --border:      rgba(122,158,126,.22);
  --radius:      12px;
  --max-width:   1100px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}
a { color: var(--sage-deep); text-decoration: none; }
a:hover { color: var(--sage-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(249,245,239,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 40px;
  width: auto;
  /* white on hero, natural below */
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.nav.scrolled .nav-logo img {
  filter: none;
}
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.85);
  transition: color .15s;
}
nav a:hover { color: #fff; }
.nav.scrolled nav a { color: var(--text-muted); }
.nav.scrolled nav a:hover { color: var(--text); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: background .2s, transform .25s, opacity .25s;
}
.nav.scrolled .nav-burger span { background: var(--text); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(249,245,239,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.mobile-link {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-link:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/anna.png') center top / cover no-repeat;
  background-color: #3a3028;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,10,.45) 0%,
    rgba(20,15,10,.35) 50%,
    rgba(20,15,10,.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.hero-logo {
  height: 110px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: .5rem;
}
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,.88);
  letter-spacing: .04em;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}
.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #1DB954;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  transition: opacity .15s, transform .15s;
}
.btn-spotify svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-spotify:hover { opacity: .88; color: #fff; transform: translateY(-1px); }
.btn-spotify.small { font-size: .85rem; padding: .55rem 1.1rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.7);
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .9rem;
  padding: .65rem 1.4rem;
  border-radius: 50px;
  transition: border-color .15s, background .15s;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 32px; height: 32px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sage { background: var(--sage); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}
.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* ── OM ANNA ─────────────────────────────────────────────────── */
.om-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}
.om-text p {
  color: var(--text-muted);
  margin-bottom: .85rem;
  max-width: 540px;
}
.om-text em { color: var(--text); font-style: italic; }
.management-note { font-size: .85rem; color: var(--text-muted); margin-top: 1.25rem !important; }
.management-note a { color: var(--sage-deep); font-weight: 500; }
.management-note a:hover { color: var(--sage-hover); }
.om-social {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 50px;
  transition: opacity .15s, transform .15s;
  color: #fff;
}
.social-pill svg { width: 15px; height: 15px; flex-shrink: 0; }
.social-pill:hover { opacity: .85; color: #fff; transform: translateY(-1px); }
.social-pill.spotify,
.social-pill.facebook,
.social-pill.youtube,
.social-pill.apple-music { background: var(--sage-deep); }
.social-pill:hover { background: var(--sage-hover) !important; }
.om-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,33,24,.15);
  aspect-ratio: 1 / 1;
}
.om-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MUSIK ───────────────────────────────────────────────────── */
.musik-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.spotify-embed {
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(42,33,24,.1);
}
.musik-single {
  width: 240px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.musik-single h3 {
  font-size: 1.15rem;
  color: var(--text);
}
.musik-single p { font-size: .85rem; color: var(--text-muted); }

/* ── KONCERTER ───────────────────────────────────────────────── */
.concerts-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--cream-dark);
  border: 1px dashed var(--sage-mid);
  border-radius: 20px;
  max-width: 520px;
  gap: 1.25rem;
}
.concerts-icon { font-size: 2.5rem; }
.concerts-empty p { color: var(--text-muted); max-width: 360px; }
.concerts-empty .btn-outline {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}
.concerts-empty .btn-outline:hover {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}

/* ── KONTAKT ─────────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.kontakt-text p { color: var(--text-muted); margin-bottom: .75rem; }
.kontakt-email a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--sage-deep);
}
.kontakt-email a:hover { color: var(--sage-hover); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: .75rem; margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.contact-form input,
.contact-form textarea {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: .8rem 1.1rem;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color .15s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); opacity: .65; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--sage-deep); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.btn-primary {
  display: inline-block;
  background: var(--sage-deep);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: var(--sage-hover); transform: translateY(-1px); color: #fff; }
.form-status { font-size: .85rem; min-height: 1.2em; }
.form-status.ok  { color: #3a7d44; }
.form-status.err { color: #c0392b; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.footer-social a {
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-social a:hover { color: rgba(255,255,255,.9); }
.footer-social svg { width: 20px; height: 20px; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .om-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .om-photo { max-width: 420px; margin: 0 auto; aspect-ratio: 4/3; }
  .musik-grid { grid-template-columns: 1fr; }
  .musik-single { width: 100%; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  nav { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-content { padding: 5.5rem 1.25rem 3.5rem; gap: 1rem; }
  .hero-logo { height: 72px; }
  .hero-tagline { font-size: 1rem; letter-spacing: .02em; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; }
  .btn-spotify, .btn-outline { justify-content: center; }
  .hero-scroll { bottom: 1.5rem; }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .section h2 { font-size: 1.6rem; }

  /* Om Anna */
  .om-photo { max-width: 100%; aspect-ratio: 1/1; }
  .om-social { gap: .5rem; }
  .social-pill { font-size: .78rem; padding: .38rem .8rem; }

  /* Kontakt */
  .form-row { grid-template-columns: 1fr; }
  .btn-primary { width: 100%; text-align: center; align-self: stretch; padding: 1rem; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .footer-copy { font-size: .75rem; }

  /* Misc */
  .concerts-empty { padding: 2.5rem 1.25rem; }
  .musik-single { padding: 1.1rem; }
  .container { padding: 0 1.1rem; }
}
