/* ==========================================================================
   Knut Christian Jansson — felles stilark for index.html og mozart.html
   Endrer du noe her, slår det gjennom på begge sidene.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0a; --bg2: #111111; --gold: #c9a84c;
  --gold-light: #e8c97a; --text: #e8e0d0;
  --text-muted: #c0b09a; --border: rgba(201,168,76,0.35);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Libre Baskerville', serif; font-size: 16px; line-height: 1.7;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image: url('../bilder/web/DSC07629.jpg');
  background-size: cover; background-position: center 30%;
  opacity: 0.06;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 100vh, black 130vh);
  mask-image: linear-gradient(to bottom, transparent 100vh, black 130vh);
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.97), transparent);
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.97); padding: 1rem 4rem; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.4rem; cursor: pointer; padding: 0.2rem; line-height: 1; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 8rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../bilder/web/DSC07629.jpg');
  background-size: cover; background-position: center 30%;
  opacity: 0.22; z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
}
.hero > *:not(.hero-bg) { position: relative; z-index: 1; }
.hero-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 10vw, 9rem); font-weight: 300; line-height: 0.9; animation: fadeUp 1s 0.3s both; }
.hero-name em { font-style: italic; color: var(--gold-light); }
.hero-tagline { margin-top: 2rem; font-size: 1rem; color: var(--text-muted); font-style: italic; max-width: 400px; animation: fadeUp 1s 0.6s both; }
.hero-roles { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 3rem; animation: fadeUp 1s 0.9s both; }
.hero-role { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); padding: 0.4rem 1rem; text-decoration: none; transition: all 0.3s; }
.hero-role:hover { color: var(--gold); border-color: var(--gold); }
.hero-next-concert { margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 1.2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; animation: fadeUp 1s 1.1s both; text-decoration: none; transition: opacity 0.3s; }
.hero-next-concert:hover { opacity: 0.75; }
.hero-next-tag { font-family: 'Cormorant Garamond', serif; font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.hero-next-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--text); }
.hero-next-date { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

/* ── Konserter ── */
#konserter { padding: 8rem 4rem; max-width: 1100px; margin: 0 auto; }
.concert-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.concert-item { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.2s; }
.concert-item:hover { background: rgba(201,168,76,0.03); }
.concert-date { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em; }
.concert-info { display: flex; flex-direction: column; gap: 0.2rem; }
.concert-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #f8f2e8; }
.concert-venue { font-size: 0.8rem; color: #d4c4b0; font-style: italic; }
.concert-arrow { color: var(--gold); font-size: 0.9rem; opacity: 0.6; }

/* ── Ny innspilling (Mozart) ── */
#mozart { padding: 7rem 4rem; max-width: 1100px; margin: 0 auto; }
.utgivelse { display: grid; grid-template-columns: 340px 1fr; gap: 3.5rem; align-items: start; }
.utgivelse-omslag { width: 100%; border: 1px solid var(--border); }
.utgivelse-merke { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--bg); background: var(--gold); padding: 0.35rem 0.9rem; margin-bottom: 1.2rem; }
.utgivelse h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.6vw, 3.4rem); font-weight: 300; line-height: 1.05; margin-bottom: 0.5rem; }
.utgivelse h2 em { font-style: italic; color: var(--gold-light); }
.utgivelse-under { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 2rem; }
.utgivelse-tekst p { margin-bottom: 1.1rem; }
.utgivelse-sitat { border-left: 1px solid var(--gold); padding: 0.2rem 0 0.2rem 1.5rem; margin: 2rem 0; font-style: italic; color: #d8cdb8; }
.utgivelse-sitat cite { display: block; margin-top: 0.7rem; font-style: normal; font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.utgivelse-knapper { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.utgivelse-knapp { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; padding: 0.75rem 1.4rem; border: 1px solid var(--gold); color: var(--gold); transition: all 0.3s; }
.utgivelse-knapp:hover { background: var(--gold); color: var(--bg); }
.utgivelse-knapp.fylt { background: var(--gold); color: var(--bg); }
.utgivelse-knapp.fylt:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* Slippkonsert-stripe */
.slipp { margin-top: 3.5rem; border: 1px solid var(--border); background: rgba(201,168,76,0.04); padding: 1.6rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.slipp-tag { font-family: 'Cormorant Garamond', serif; font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.slipp-tittel { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: #f8f2e8; margin-top: 0.2rem; }
.slipp-sted { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* Sporliste */
.spor { margin-top: 4rem; }
.spor h3 { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1.5rem; }
.spor-gruppe { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-light); font-style: italic; margin: 2rem 0 0.8rem; }
.spor-rad { display: grid; grid-template-columns: 2.2rem 1fr auto; gap: 1.2rem; align-items: baseline; padding: 0.65rem 0; border-bottom: 1px solid rgba(201,168,76,0.14); font-size: 0.92rem; }
.spor-nr { color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.spor-navn { color: #f0e8da; }
.spor-detalj { display: block; font-size: 0.78rem; color: var(--text-muted); font-style: italic; margin-top: 0.15rem; }
.spor-tid { color: var(--text-muted); font-size: 0.82rem; font-variant-numeric: tabular-nums; }
.spor-sum { margin-top: 1rem; font-size: 0.8rem; color: var(--text-muted); font-style: italic; text-align: right; }

/* Bilder fra innspillingen */
.okt-bilder { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3.5rem; }
.okt-bilder figure { margin: 0; }
.okt-bilder img { width: 100%; border: 1px solid var(--border); }
.okt-bilder figcaption { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: 0.6rem; }
.okt-bred { grid-column: 1 / -1; }

.medv { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem 2.5rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.medv-navn { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #f8f2e8; }
.medv-rolle { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

@media (max-width: 900px) {
  #mozart { padding: 5rem 1.5rem; }
  .utgivelse { grid-template-columns: 1fr; gap: 2.5rem; }
  .utgivelse-omslag { max-width: 320px; }
  .okt-bilder { grid-template-columns: 1fr; }
  .slipp { flex-direction: column; align-items: flex-start; }
}

/* ── Pressebilder ── */
#presse { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 8rem 4rem; }
#presse > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1rem; }
.press-photo { position: relative; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 3/4; display: block; text-decoration: none; }
.press-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.press-photo:hover img { transform: scale(1.04); }
.press-photo-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 0.8rem; background: rgba(0,0,0,0.7); font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; opacity: 0; transition: opacity 0.3s; }
.press-photo:hover .press-photo-label { opacity: 1; }

/* ── Nyhetsbrev ── */
.newsletter { border-top: 1px solid var(--border); padding: 5rem 4rem; text-align: center; }
.newsletter-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--text); margin-bottom: 0.8rem; }
.newsletter-sub { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
.newsletter-input { flex: 1; background: var(--bg2); border: 1px solid var(--border); border-right: none; color: var(--text); padding: 0.8rem 1.2rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 0.8rem 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.newsletter-btn:hover { background: var(--gold); color: var(--bg); }
.newsletter-svar { margin-top: 1rem; font-size: 0.85rem; font-style: italic; color: var(--gold-light); min-height: 1.2em; }

/* ── Shared ── */
.gold-rule { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.section-label { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem; }
.section-heading em { font-style: italic; color: var(--gold-light); }
.section-intro { color: #b0a898; font-size: 0.95rem; line-height: 1.9; font-style: italic; max-width: 680px; margin-bottom: 3.5rem; }
.ext-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 0.2rem; transition: all 0.3s; }
.ext-link:hover { color: var(--gold); border-color: var(--gold); }
.section-links { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; margin-bottom: 3.5rem; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Photo dividers ── */
.photo-divider {
  width: 100%; height: 40vh;
  background-size: cover; background-position: center;
  position: relative;
}
.photo-divider::before {
  content: ''; position: absolute; inset: 0; top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to bottom, var(--prev-bg, #111111), transparent);
  z-index: 1;
}
.photo-divider::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to top, var(--next-bg, #0a0a0a), transparent);
  z-index: 1;
}
.photo-divider.from-dark::before { background: linear-gradient(to bottom, #0a0a0a, transparent); }
.photo-divider.from-dark::after  { background: linear-gradient(to top,   #111111, transparent); }
.photo-divider.from-mid::before  { background: linear-gradient(to bottom, #111111, transparent); }
.photo-divider.from-mid::after   { background: linear-gradient(to top,   #0a0a0a, transparent); }

/* ── Om ── */
#om { padding: 8rem 4rem; max-width: 1100px; margin: 0 auto; }
.bio-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
.bio-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: left; border: 1px solid var(--border); }
.bio-text { color: #b0a898; font-size: 0.95rem; line-height: 1.9; font-style: italic; }
.bio-text p + p { margin-top: 1.2rem; }
.nrk-link { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 2rem; font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 0.2rem; transition: all 0.3s; }
.nrk-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── JanssonRecordings ── */
#innspillinger { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 8rem 4rem; }
#innspillinger > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.albums-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.album-embed { display: flex; flex-direction: column; gap: 0.75rem; }
.album-meta { display: flex; justify-content: space-between; align-items: baseline; }
.album-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--text); }
.album-subtitle { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }
.album-embed iframe { border-radius: 4px; border: 1px solid var(--border); display: block; }
.upcoming-box { margin-top: 3rem; padding: 2rem 2.5rem; border: 1px solid var(--gold); background: rgba(201,168,76,0.04); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.upcoming-tag { font-family: 'Cormorant Garamond', serif; font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.upcoming-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: #f8f2e8; }
.upcoming-desc { font-size: 0.85rem; color: #d4c4b0; font-style: italic; margin-top: 0.3rem; }

/* ── Kulturkirken Fridalen ── */
#fridalen { padding: 8rem 4rem; max-width: 1100px; margin: 0 auto; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.video-item { display: flex; flex-direction: column; gap: 0.6rem; }
.video-item iframe { width: 100%; aspect-ratio: 16/9; border: 1px solid var(--border); border-radius: 4px; display: block; }
.video-label { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--text-muted); font-style: italic; }

/* ── Collegium Vocale ── */
#collegium { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 8rem 4rem; }
#collegium > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* ── Galleri ── */
#galleri { padding: 8rem 4rem; max-width: 1100px; margin: 0 auto; }
.photo-grid { columns: 3; column-gap: 0.75rem; margin-top: 1rem; }
.photo-grid img { width: 100%; display: block; margin-bottom: 0.75rem; border: 1px solid var(--border); cursor: zoom-in; transition: opacity 0.3s; break-inside: avoid; }
.photo-grid img:hover { opacity: 0.82; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 1000; align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 1px solid var(--border); }
.lightbox-close { position: absolute; top: 2rem; right: 2.5rem; color: var(--text-muted); font-size: 2rem; line-height: 1; cursor: pointer; font-weight: 300; transition: color 0.2s; }
.lightbox-close:hover { color: var(--gold); }

/* ── Kontakt ── */
#kontakt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 8rem 4rem; }
#kontakt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.kontakt-text { color: #b0a898; font-size: 0.95rem; line-height: 1.9; font-style: italic; }
.kontakt-links { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.kontakt-link { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.2s; }
.kontakt-link:last-child { border-bottom: none; }
.kontakt-link:hover { background: rgba(201,168,76,0.05); }
.kontakt-link-label { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #f8f2e8; }
.kontakt-link-sub { font-size: 0.75rem; color: #d4c4b0; font-style: italic; }
.kontakt-link-arrow { color: var(--gold); font-size: 0.9rem; }

/* ── Scroll indicator ── */
.scroll-indicator { position: absolute; bottom: 2.5rem; left: 4rem; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: fadeUp 1s 1.2s both; }
.scroll-indicator span { font-family: 'Cormorant Garamond', serif; font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--text-muted); }
.scroll-indicator svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── Scroll to top ── */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: rgba(10,10,10,0.9); border: 1px solid var(--border); color: var(--gold); font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, background 0.2s; z-index: 99; display: flex; align-items: center; justify-content: center; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 4rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 2rem; }
footer .logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
footer .footer-nav { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
footer .footer-nav a { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
footer .footer-nav a:hover { color: var(--gold); }
footer .footer-right { text-align: right; }
footer .footer-email { display: block; font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
footer .footer-email:hover { color: var(--gold); }
footer .footer-copy { font-size: 0.7rem; color: var(--text-muted); font-style: italic; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── YouTube facade ── */
.yt-facade {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background-color: #111; background-size: cover; background-position: center;
  cursor: pointer; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.yt-facade::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.25); transition: background 0.2s;
  pointer-events: none;
}
.yt-facade:hover::after { background: rgba(0,0,0,0.1); }
.yt-facade.playing::after { display: none; }
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 1;
  width: 64px; height: 44px; background: #c00;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.1); background: #f00; }
.yt-play::after {
  content: ''; border-left: 20px solid #fff;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.yt-facade iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ── Mobile nav ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  #om, #fridalen, #konserter { padding: 5rem 1.5rem; }
  .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
  #innspillinger, #collegium, #kontakt, #presse { padding: 5rem 1.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .albums-grid, .video-grid { grid-template-columns: 1fr; }
  .photo-divider { background-attachment: scroll; height: 28vh; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
  footer .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  footer .footer-right { text-align: center; }
  .scroll-indicator { left: 1.5rem; }
  .upcoming-box { flex-direction: column; align-items: flex-start; }
  .concert-item { grid-template-columns: 90px 1fr; gap: 1rem; }
  .concert-arrow { display: none; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { padding: 4rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--border); border-bottom: none; }
  .hero-next-concert { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ── Teaser på forsiden: stripa som peker til /mozart ── */
.utgivelse-teaser {
  display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 1.75rem;
  max-width: 1100px; margin: 0 auto; padding: 1.6rem 4rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-decoration: none; transition: background 0.25s;
}
.utgivelse-teaser:hover { background: rgba(201,168,76,0.05); }
.utgivelse-teaser img { width: 92px; height: 92px; object-fit: cover; border: 1px solid var(--border); }
.utgivelse-teaser-tittel { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #f8f2e8; margin-top: 0.35rem; }
.utgivelse-teaser-under { font-size: 0.78rem; color: var(--text-muted); font-style: italic; margin-top: 0.2rem; }
.utgivelse-teaser-pil { color: var(--gold); font-size: 1.1rem; }
.utgivelse-teaser .utgivelse-merke { margin-bottom: 0; }

/* ── Lyttelenker ── */
.lytt { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.lytt a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.7rem 1.3rem; border: 1px solid var(--border); color: var(--text);
  transition: all 0.25s;
}
.lytt a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.lytt a.primar { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.lytt a.primar:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--bg); }
.lytt-tom { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-top: 1.5rem; }

/* ── Undersidetopp (mozart.html) ── */
.underside { padding-top: 9rem; }
.tilbakelenke {
  display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; margin-bottom: 2.5rem; transition: color 0.25s;
}
.tilbakelenke:hover { color: var(--gold); }

@media (max-width: 900px) {
  .utgivelse-teaser { padding: 1.4rem 1.5rem; grid-template-columns: 72px 1fr; gap: 1.1rem; }
  .utgivelse-teaser img { width: 72px; height: 72px; }
  .utgivelse-teaser-pil { display: none; }
  .underside { padding-top: 7rem; }
}

/* ── /mozart: egne elementer ── */
.utgivelse-tittel { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.8vw, 3.6rem); font-weight: 300; line-height: 1.05; margin-bottom: 0.6rem; }
.utgivelse-tittel em { font-style: italic; color: var(--gold-light); }

.okt-bilder-enkelt { margin: 4rem 0 0; }
.okt-bilder-enkelt img { width: 100%; border: 1px solid var(--border); }
.okt-bilder-enkelt figcaption { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: 0.6rem; }

.essay { max-width: 680px; margin: 4.5rem 0 0; }
.essay h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; margin-bottom: 1.2rem; }
.essay h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--gold-light); margin: 2.8rem 0 1rem; }
.essay p { margin-bottom: 1.15rem; }
.essay .ingress { font-size: 1.05rem; color: #ded4c0; }

.spor-note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; margin-top: 1.5rem; max-width: 560px; }

.medv-bolk, .kolofon, .presse-bolk { margin-top: 4.5rem; border-top: 1px solid var(--border); padding-top: 2.2rem; }
.medv-bolk h3, .kolofon h3, .presse-bolk h3 { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1.6rem; }
.medv-bolk .medv { margin-top: 0; border-top: none; padding-top: 0; }

.kolofon dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem 2.5rem; margin: 0; }
.kolofon dt { font-family: 'Cormorant Garamond', serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.kolofon dd { margin: 0; font-size: 0.92rem; color: #e8e0d0; }

.presse-intro { font-size: 0.92rem; color: var(--text-muted); max-width: 620px; margin-bottom: 0.5rem; }

@media (max-width: 900px) {
  .essay { margin-top: 3.5rem; }
  .okt-bilder-enkelt { margin-top: 2.5rem; }
}

/* ── «Om innspillingen»-lenka under nyeste plate ── */
.album-lesmer { display: inline-block; margin-top: 0.8rem; font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 0.2rem; transition: border-color 0.25s; }
.album-lesmer:hover { border-color: var(--gold); }

/* ── Sangtekster ── */
.sangtekster { margin-top: 4.5rem; border-top: 1px solid var(--border); padding-top: 2.2rem; }
.sangtekster > h3 { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 0.8rem; }
.sangtekster-note { font-size: 0.8rem; color: var(--text-muted); font-style: italic; max-width: 620px; margin-bottom: 3rem; }

.sangtekst { margin-bottom: 3.5rem; scroll-margin-top: 6rem; }
.sangtekst h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--gold-light); margin-bottom: 0.2rem; }
.sangtekst-meta { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.4rem; }
.sangtekst-meta .k-nr { color: var(--gold); }

.strofer { max-width: 460px; }
.strofe { margin: 0 0 1.4rem; line-height: 1.75; }
.strofe:last-child { margin-bottom: 0; }

/* Lenke fra sporlista ned til teksten */
.spor-tekstlenke { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; border-bottom: 1px solid transparent; }
.spor-tekstlenke:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Rettighetslinja nederst i kolofonen */
.kolofon-rettigheter { margin-top: 1.6rem; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; }

/* ── Tidligere konserter ── */
/* Dempet, så bolken ikke konkurrerer med det som faktisk er aktuelt. */
.tidligere { margin-top: 4rem; }
.tidligere[hidden] { display: none; }
.tidligere-tittel { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--text-muted); font-weight: 400; margin-bottom: 1.2rem; }
.concert-item.gjennomfort { opacity: 0.55; }
.concert-item.gjennomfort:hover { opacity: 0.8; }
.ingen-konserter { padding: 1.6rem 0; color: var(--text-muted); font-style: italic; }

/* ── Pressebilder: undertittel per gruppe ── */
.press-gruppe { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin: 3rem 0 1.2rem; }
.press-gruppe:first-of-type { margin-top: 1rem; }
.press-photo.liggende { aspect-ratio: 3/2; }
.press-kreditt { font-size: 0.78rem; color: var(--text-muted); font-style: italic; margin-top: 1.8rem; }

/* ── Opptak på /mozart: to i bredden, stablet på mobil ── */
.videoer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.videoer .video-label { display: block; line-height: 1.5; }

/* Facaden er tastaturstyrt, så fokus må være synlig */
.yt-facade:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 760px) {
  .videoer { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2.5rem; }
}

/* ── Aktuelt: nyhetskort ── */
#aktuelt { padding: 7rem 4rem; max-width: 1100px; margin: 0 auto; }
.nyhet {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: start;
  text-decoration: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  transition: background 0.25s;
}
.nyhet:hover { background: rgba(201,168,76,0.04); }
.nyhet-bilde { width: 100%; border: 1px solid var(--border); display: block; }
.nyhet-dato { font-family: 'Cormorant Garamond', serif; font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
.nyhet-tekst h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 300; color: #f8f2e8; margin: 0.5rem 0 1rem; line-height: 1.15; }
.nyhet-tekst p { margin-bottom: 1rem; font-size: 0.95rem; }
.nyhet-lenke {
  display: inline-block; font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem; margin-top: 0.5rem; transition: border-color 0.25s;
}
.nyhet:hover .nyhet-lenke { border-bottom-color: var(--gold); }

@media (max-width: 768px) {
  #aktuelt { padding: 5rem 1.5rem; }
  .nyhet { grid-template-columns: 1fr; gap: 1.5rem; }
}
