/* ==========================================================
   TEATER A — "ROYAL"
   Videreført elegant retning fra Venneløs-plakaten:
   krem, burgunder, klassisk serif — nå med logo, dobbel
   ramme-detaljer og ryddigere billettliste.
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Archivo:wght@400;500;600;700&display=swap');

:root {
  --bg: #F4EEDC;
  --bg-soft: #EFE7D0;
  --ink: #241B12;
  --burgundy: #7E2B33;
  --gold: #A8884B;
  --hairline: 1px solid rgba(36, 27, 18, 0.25);
  --display: 'Cormorant Garamond', serif;
  --body: 'Archivo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Nav ---------- */
.site-nav {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 56px; border-bottom: var(--hairline);
  padding-top: max(16px, env(safe-area-inset-top));
  background: var(--bg); position: sticky; top: 0; z-index: 50;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-face { height: 44px; width: auto; }
.logo-text { font-family: var(--display); font-weight: 600; font-size: 25px; letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 12px; font-weight: 500;
  padding-bottom: 3px; border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.is-active { border-bottom-color: var(--burgundy); color: var(--burgundy); }
.nav-cta {
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 12px; font-weight: 600; color: var(--bg); background: var(--ink);
  padding: 11px 24px; transition: background .15s ease;
}
.nav-cta:hover { background: var(--burgundy); }

/* ---------- Hamburger + mobilmeny ---------- */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px; padding: 0; margin-left: auto;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .22s ease, opacity .18s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  flex-direction: column;
  background: var(--bg); border-bottom: 2px solid var(--ink);
  padding: 86px 28px 24px;
  transform: translateY(-100%); visibility: hidden;
  transition: transform .3s ease, visibility .3s;
  box-shadow: 0 18px 40px rgba(36,27,18,0.16);
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  text-decoration: none; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 14px; font-weight: 600;
  padding: 17px 2px; border-bottom: var(--hairline);
}
.mobile-menu a:last-child { border-bottom: 0; color: var(--burgundy); }

/* ---------- Knapper ---------- */
.btn {
  display: inline-block; text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 13px; font-weight: 600; padding: 16px 34px;
  transition: background .15s ease, color .15s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--burgundy); }
.btn-ghost { border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------- Hero (bilde ved siden av tekst, above the fold) ---------- */
.hero {
  position: relative;
  display: grid; grid-template-columns: minmax(320px, 430px) 1fr;
  height: calc(100svh - 77px);
  min-height: 480px; max-height: 880px;
  overflow: hidden;
}
.hero-img {
  order: 2;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom;
  mix-blend-mode: multiply;
}
/* Slideshow (brukes på About) */
.photo-strip { position: relative; width: 100%; height: clamp(360px, 56vh, 620px); overflow: hidden; background: var(--ink); }
.strip-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0; transition: opacity 1.1s ease;
}
.strip-slide.is-active { opacity: 1; }
.hero-text {
  align-self: center;
  padding: 30px 10px 40px clamp(28px, 4vw, 64px);
  max-width: 470px;
}
.hero-kicker {
  text-transform: uppercase; letter-spacing: 0.34em; font-size: 12px;
  font-weight: 600; color: var(--burgundy); margin-bottom: 28px;
}
.hero-kicker::before { content: "✦"; margin-right: 14px; }
.hero-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(54px, 6vw, 92px); line-height: 0.98;
  letter-spacing: -0.01em; margin-bottom: 18px;
}
.hero-tagline {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 13px;
  font-weight: 600; color: var(--burgundy); margin-bottom: 18px;
}
.hero-sub { font-family: var(--display); font-size: 21px; font-style: italic; max-width: 36ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn { white-space: nowrap; }

/* Hero – ankerlenker (index over seksjonene) */
.hero-links { display: flex; flex-direction: column; border-top: 1px solid rgba(36,27,18,0.22); max-width: 430px; }
.hero-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 15px 2px; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid rgba(36,27,18,0.22);
  text-transform: uppercase; letter-spacing: 0.13em; font-size: 12.5px; font-weight: 600;
  transition: color .15s ease, padding-left .15s ease;
}
.hero-links a i { font-style: normal; color: var(--burgundy); transition: transform .15s ease; }
.hero-links a:hover { color: var(--burgundy); padding-left: 8px; }
.hero-links a:hover i { transform: translateX(5px); }

.hero-media { position: relative; }
.hero-badge {
  position: absolute; z-index: 1; bottom: clamp(20px, 4vw, 44px); right: clamp(20px, 4vw, 48px);
  border: 1px solid var(--ink); padding: 9px 18px;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; font-weight: 600;
  background: var(--bg); white-space: nowrap; margin: 0;
}

/* ---------- Venneløs-promo ---------- */
.show-promo {
  text-align: center; padding: 60px 28px 24px;
  max-width: 760px; margin: 0 auto;
}
.show-promo .hero-kicker { margin-bottom: 26px; }
.promo-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(64px, 8.5vw, 112px); line-height: 0.96;
  letter-spacing: -0.01em; margin-bottom: 22px;
}
.promo-tagline {
  font-family: var(--display); font-style: italic; font-size: 22px;
  letter-spacing: 0.12em; color: var(--burgundy); margin-bottom: 14px;
}
.promo-sub { font-family: var(--display); font-size: 22px; font-style: italic; margin-bottom: 34px; }
.show-promo .hero-actions { justify-content: center; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-top: var(--hairline); border-bottom: var(--hairline);
  padding: 14px 0; white-space: nowrap; background: var(--bg-soft);
}
.marquee-track { display: inline-flex; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--display); font-style: italic; font-size: 19px; letter-spacing: 0.08em; padding-right: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Seksjoner ---------- */
section { scroll-margin-top: 100px; }
.tour, .upcoming, .media-clips, .judge-quotes, .client-quotes, .booking-info {
  max-width: 1100px; margin: 0 auto; padding: 60px 56px 10px;
}
.upcoming { padding-bottom: 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head::after { content: "✦"; display: block; margin-top: 18px; color: var(--burgundy); font-size: 13px; }
.section-head h2, .signup h2, .cta-band h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(38px, 4.5vw, 56px); line-height: 1.05;
}
.head-suffix { font-style: italic; color: var(--burgundy); }
.section-sub { margin-top: 12px; font-size: 16px; }
.section-sub a { color: var(--burgundy); font-weight: 600; }

/* ---------- Show-liste ---------- */
.show-list { list-style: none; border-top: var(--hairline); }
.show-row {
  display: grid; grid-template-columns: 104px 1.5fr 0.7fr 150px;
  align-items: center; gap: 24px;
  padding: 22px 10px; border-bottom: var(--hairline);
  transition: background .15s ease;
}
.show-row:hover { background: var(--bg-soft); }
.show-date { font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 1; display: flex; flex-direction: column; gap: 6px; }
.show-time {
  font-family: var(--body); font-style: normal; font-weight: 600;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.7; white-space: nowrap;
}
.show-venue { font-weight: 600; font-size: 17px; letter-spacing: 0.01em; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; position: relative; }
/* Show-type-merker ved venue (samleplakat-design, fylt) */
.venue-flag {
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-style: normal; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 9.5px;
  color: var(--bg); padding: 4px 9px; white-space: nowrap; line-height: 1.3;
}
.flag-preview { background: #1F5274; }
.flag-extra {
  position: absolute; top: -14px; left: -2px; z-index: 2;
  background: #7E2B33; transform: rotate(-8deg);
  box-shadow: 0 2px 6px rgba(36,27,18,0.22);
}
.flag-neutral { background: #8A7A55; }
.show-city { text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; }
.show-actions { display: flex; justify-content: flex-end; }

/* Status / kjøp — fylte plakat-merker (invertert) */
.poster-stamp {
  display: inline-block; text-decoration: none; white-space: nowrap;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-weight: 700; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; text-align: center;
  padding: 9px 14px; color: var(--bg);
  transition: filter .15s ease, opacity .15s ease;
}
a.poster-stamp:hover { filter: brightness(1.12); }
.stamp-buy { background: var(--ink); }
.stamp-tickets { background: #B5781A; }
.stamp-soldout { background: #B8341F; opacity: 0.85; }
.show-row.is-soldout .show-date,
.show-row.is-soldout .show-venue,
.show-row.is-soldout .show-city {
  opacity: 0.5; text-decoration: line-through; text-decoration-thickness: 1px;
}
.show-row.is-soldout .show-time { text-decoration: none; }

/* ---------- Upcoming – utvidbar datoliste (dropdown) ---------- */
.upcoming-item { border: 0; }
.upcoming-item > summary.show-row { list-style: none; cursor: pointer; border-bottom: var(--hairline); }
.upcoming-item > summary::-webkit-details-marker { display: none; }
.upcoming-item > summary::marker { content: ""; }
.upcoming-item > summary:hover { background: var(--bg-soft); }
.date-toggle { cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
.caret { font-style: normal; font-size: 9px; line-height: 1; transition: transform .2s ease; }
.upcoming-item[open] .caret { transform: rotate(180deg); }
.date-list {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 10px 24px 128px; border-bottom: var(--hairline);
}
.date-line {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  max-width: 540px; padding: 11px 16px; text-decoration: none; color: var(--ink);
  border: var(--hairline); background: var(--bg); transition: background .12s ease;
}
.date-line:hover { background: var(--bg-soft); }
.date-line-date { font-weight: 600; font-size: 14.5px; letter-spacing: 0.01em; }
.date-line-status {
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--burgundy); white-space: nowrap;
}
.date-line.is-soldout { opacity: 0.55; text-decoration: line-through; cursor: default; }
.date-line.is-soldout .date-line-status { text-decoration: none; color: #B8341F; }

/* ---------- Workshop (full-bleed, NYC) ---------- */
.workshop {
  position: relative; overflow: hidden;
  background: #5E0E12 url("assets/workshop-clown.jpg") center right / cover no-repeat;
  min-height: 600px; display: flex; align-items: center;
  margin-top: 20px;
}
.workshop::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(52,7,9,0.94) 0%, rgba(52,7,9,0.72) 34%, rgba(52,7,9,0.1) 56%, rgba(52,7,9,0) 70%);
}
.workshop-inner { position: relative; width: 100%; max-width: 1240px; margin: 0 auto; padding: 80px 64px; }
.workshop-text { max-width: 460px; color: #F6ECD6; }
.workshop-kicker {
  text-transform: uppercase; letter-spacing: 0.34em; font-size: 12px;
  font-weight: 600; color: #E8B23C; margin-bottom: 22px;
}
.workshop-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(46px, 6vw, 76px); line-height: 0.98; margin-bottom: 22px;
}
.workshop-meta {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 12.5px;
  font-weight: 600; margin-bottom: 20px; opacity: 0.9;
}
.workshop-blurb { font-family: var(--display); font-style: italic; font-size: 22px; line-height: 1.4; margin-bottom: 22px; }
.workshop-more { margin-bottom: 26px; }
.workshop-more summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 600;
  color: #E8B23C; padding-bottom: 3px; border-bottom: 1px solid currentColor;
}
.workshop-more summary::-webkit-details-marker { display: none; }
.workshop-more summary::after { content: "↓"; transition: transform .2s ease; }
.workshop-more[open] summary::after { transform: rotate(180deg); }
.workshop-more .wm-close { display: none; }
.workshop-more[open] .wm-open { display: none; }
.workshop-more[open] .wm-close { display: inline; }
.workshop-longtext { margin-top: 20px; max-width: 60ch; }
.workshop-longtext p { font-size: 15.5px; line-height: 1.6; margin-bottom: 14px; opacity: 0.92; }
.workshop-quote {
  font-family: var(--display); font-style: italic; font-size: 20px; line-height: 1.4;
  margin-top: 22px; padding-left: 18px; border-left: 2px solid #E8B23C;
}
.workshop-quote cite { display: block; font-style: normal; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 12px; opacity: 0.8; }
.workshop-btn {
  display: inline-block; text-decoration: none; background: #F6ECD6; color: #5E0E12;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 600;
  padding: 16px 32px; transition: background .15s ease, transform .12s ease;
}
.workshop-btn:hover { background: #fff; transform: translateY(-1px); }

/* ---------- Sitatband ---------- */
.quote-band { text-align: center; padding: 72px 56px; max-width: 880px; margin: 0 auto; }
.big-quote { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.25; }
.quote-cite { margin-top: 22px; text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px; font-weight: 600; color: var(--burgundy); }

/* ---------- Nyhetsbrev ---------- */
.signup {
  max-width: 760px; margin: 0 auto 72px; padding: 48px 56px;
  border: 1px solid var(--ink); text-align: center; background: var(--bg); position: relative;
}
.signup::before { content: ""; position: absolute; inset: 8px; border: var(--hairline); pointer-events: none; }
.signup .section-sub { margin-bottom: 30px; }
.signup-form { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.signup-msg {
  margin: 18px auto 0; max-width: 46ch; min-height: 1.2em;
  font-family: var(--display); font-style: italic; font-size: 18px; line-height: 1.4;
  opacity: 0; transform: translateY(4px); transition: opacity .25s ease, transform .25s ease;
}
.signup-msg.is-visible { opacity: 1; transform: translateY(0); }
.signup-msg.is-success { color: var(--burgundy); }
.signup-msg.is-error { color: #B8341F; }
.signup-input {
  font-family: var(--body); font-size: 15px; padding: 15px 22px;
  border: 1px solid var(--ink); background: transparent; min-width: 280px;
}
.signup-input:focus { outline: 2px solid var(--burgundy); outline-offset: -1px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--ink); background: var(--ink); color: var(--bg); padding: 60px 56px 36px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; max-width: 1100px; margin: 0 auto; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; }
.footer-face { height: 64px; width: auto; filter: invert(1); margin-bottom: 14px; }
.footer-logo { font-family: var(--display); font-size: 28px; }
.footer-note { opacity: 0.6; margin-top: 6px; font-family: var(--display); font-style: italic; font-size: 17px; }
.footer-col h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.26em; color: var(--gold); margin-bottom: 14px; }
.footer-col p { margin-bottom: 12px; font-size: 14px; }
.footer-col a { color: var(--bg); }
.footer-social { display: flex; gap: 18px; }
.footer-copy { text-align: center; margin-top: 44px; font-size: 12px; opacity: 0.5; letter-spacing: 0.08em; }
.footer-hidden-link { opacity: 0.6; }

/* ---------- Undersider ---------- */
.page-hero { max-width: 900px; margin: 0 auto; padding: 100px 56px 30px; text-align: center; }
.page-title { font-family: var(--display); font-weight: 500; font-size: clamp(48px, 6.5vw, 88px); line-height: 1.0; margin-bottom: 26px; }
.page-lede { font-family: var(--display); font-style: italic; font-size: 23px; max-width: 52ch; margin: 0 auto; }

/* ---------- Bio / booking-info ---------- */
.bio { max-width: 1100px; margin: 0 auto; padding: 40px 56px; }
.bio-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.bio-grid-flip { grid-template-columns: 0.95fr 1.05fr; margin-top: 72px; }
.bio-text p { margin-bottom: 20px; font-size: 17px; }
.inline-head {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 3.5vw, 42px); line-height: 1.08;
  margin-bottom: 18px;
}
.bio-text strong { color: var(--burgundy); }
.bio-media { position: relative; }
.bio-media img { width: 100%; display: block; }
.img-blend { mix-blend-mode: multiply; }
.bio-media .hero-badge { position: absolute; bottom: -16px; left: 26px; right: auto; }
.bio-caption {
  margin-top: 14px; font-family: var(--display); font-style: italic;
  font-size: 16px; line-height: 1.5; color: var(--ink); opacity: 0.85;
}

.fact-list { list-style: none; margin: 72px auto 20px; max-width: 720px; border-top: var(--hairline); }
.fact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 15px 8px; border-bottom: var(--hairline); font-size: 16px; }
.fact-list strong { font-family: var(--display); font-size: 21px; font-weight: 500; color: var(--burgundy); }

/* ---------- TV-programmer ---------- */
.tv-shows { max-width: 1100px; margin: 0 auto; padding: 90px 56px 10px; }
.tv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.tv-card { border: var(--hairline); background: var(--bg); display: flex; flex-direction: column; }
.tv-card image-slot { width: 100%; aspect-ratio: 16 / 9; display: block; }
.tv-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.tv-photo-bgt { object-position: center 18%; }
.tv-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tv-card h3 { font-family: var(--display); font-weight: 600; font-size: 27px; line-height: 1.1; }
.tv-en { display: block; font-style: italic; font-weight: 400; font-size: 19px; color: var(--burgundy); margin-top: 2px; }
.tv-meta { text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; font-weight: 600; color: var(--gold); }
.tv-card p { font-size: 15.5px; }
.tv-result {
  align-self: flex-start; margin-top: auto;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 600;
  color: var(--burgundy); border: 1px solid var(--burgundy); padding: 6px 14px;
}
.tv-result.is-winner { background: var(--burgundy); color: var(--bg); }

/* ---------- Mediaklipp ---------- */
.clip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.clip-grid-journey { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.clip-step { font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 700; color: var(--burgundy); margin-bottom: 10px; }
.clip-main { grid-column: 1 / -1; }
.clip-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); }
.clip-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.clip-placeholder { display: grid; place-items: center; background: var(--bg-soft); }
.clip-placeholder p { text-align: center; font-family: var(--display); font-style: italic; font-size: 19px; }
.clip-placeholder span { font-family: var(--body); font-style: normal; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; }
.clip figcaption { margin-top: 12px; text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 600; }

/* ---------- Sitatkort ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: var(--hairline); }
.quote-card { padding: 36px 30px; border-right: var(--hairline); display: flex; flex-direction: column; gap: 22px; }
.quote-card:last-child { border-right: none; }
.quote-logo { display: flex; }
.quote-logo image-slot { width: 160px; height: 52px; display: block; }
.quote-logo img { height: 48px; width: auto; max-width: 170px; object-fit: contain; }
.quote-grid-clients { grid-template-columns: repeat(2, 1fr); }
.quote-grid-clients .quote-card blockquote { font-size: 18px; }
.quote-card blockquote { font-family: var(--display); font-style: italic; font-size: 19px; line-height: 1.4; flex: 1; }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 600; }
.quote-card img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }

/* ---------- CTA-band ---------- */
.cta-band {
  text-align: center; max-width: 820px; margin: 90px auto 110px; padding: 70px 56px;
  border: 1px solid var(--ink); position: relative; background: var(--bg);
}
.cta-band::before { content: ""; position: absolute; inset: 8px; border: var(--hairline); pointer-events: none; }
.cta-band .section-sub { margin-bottom: 30px; }

/* ---------- Booking-hero (fullbredt scenebilde) ---------- */
.booking-hero {
  position: relative; max-width: none; padding: 0; text-align: left;
  height: calc(100svh - 77px); min-height: 460px; max-height: 760px;
  overflow: hidden;
}
.booking-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 26%;
}
.booking-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(78deg, rgba(20,12,4,0.84) 0%, rgba(20,12,4,0.5) 42%, rgba(20,12,4,0.06) 72%);
}
.booking-hero-text {
  position: absolute; z-index: 1;
  left: clamp(28px, 5vw, 72px); bottom: clamp(36px, 8vh, 80px);
  max-width: 620px; color: #F6EFDC;
}
.booking-hero-text .page-title { margin-bottom: 20px; }
.booking-hero .page-lede { margin: 0 0 30px; opacity: 0.94; }
.booking-hero .btn-primary {
  background: var(--bg); color: var(--ink);
  text-transform: none; letter-spacing: 0.04em;
}
.booking-hero .btn-primary:hover { background: #fff; }

@media (max-width: 1080px) {
  .hero-title { font-size: clamp(40px, 6vw, 60px); margin-bottom: 12px; }
  .hero-tagline { margin-bottom: 12px; font-size: 12px; }
  .hero-sub { font-size: 18px; margin-bottom: 20px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 12px; }
  .hero-badge { display: none; }
}

/* ---------- Responsivt ---------- */
@media (max-width: 900px) {
  .hero, .bio-grid { grid-template-columns: 1fr; }
  .hero { padding: 0; }
  .booking-hero-text .page-title { font-size: clamp(38px, 9vw, 56px); }
  .quote-grid, .tv-grid { grid-template-columns: 1fr; }
  .bio-grid-flip { margin-top: 44px; }
  .quote-card { border-right: none; border-bottom: var(--hairline); }
  .clip-grid { grid-template-columns: 1fr; }
  .clip-grid-journey { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Konsekvent sidemarg på alle innholdsseksjoner */
  .tour, .upcoming, .media-clips, .judge-quotes, .client-quotes,
  .booking-info, .page-hero, .bio, .tv-shows, .show-promo, .quote-band {
    padding-left: 28px; padding-right: 28px;
  }
  .page-hero { padding-top: 64px; padding-bottom: 22px; }
  .quote-band { padding-top: 60px; padding-bottom: 60px; }

  /* Bokser med ramme: fyll bredden mellom like marger (alltid symmetrisk) */
  .signup { margin: 0 28px 56px; max-width: none; padding: 36px 22px; }
  .cta-band { margin: 48px 28px 64px; max-width: none; padding: 44px 22px; }

  /* Nyhetsbrev-skjema: stable, ingen overflow */
  .signup-form { flex-direction: column; align-items: stretch; }
  .signup-input { min-width: 0; width: 100%; }
  .signup-form .btn { width: 100%; }

  /* Showliste: dato/venue/by stablet, billettknapp til høyre */
  .show-row {
    grid-template-columns: 1fr auto; grid-auto-rows: min-content;
    gap: 3px 16px; padding: 18px 0; align-items: start;
  }
  .show-date { grid-column: 1; grid-row: 1; flex-direction: row; align-items: baseline; gap: 10px; font-size: 24px; }
  .show-venue { grid-column: 1; grid-row: 2; }
  .show-city { grid-column: 1; grid-row: 3; }
  .show-actions { grid-column: 2; grid-row: 1 / span 3; align-self: center; justify-content: flex-end; }
  /* Venue-merker (EKSTRA / Prøveforestilling) alltid på egen linje under navnet */
  .show-venue { flex-direction: column; align-items: flex-start; gap: 7px; }
  .flag-extra { position: static; transform: rotate(-3deg); margin: 0; }
  .date-list { padding: 14px 0 22px 0; }
  .date-line { max-width: none; }

  /* Workshop */
  .workshop { background-position: center 20%; min-height: 0; }
  .workshop::before { background: linear-gradient(180deg, rgba(52,7,9,0.5) 0%, rgba(52,7,9,0.4) 30%, rgba(52,7,9,0.92) 72%); }
  .workshop-inner { padding: 280px 28px 56px; }
  .workshop-text { max-width: none; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .mobile-menu { display: flex; }
  .site-nav { padding: 14px 28px; gap: 16px; padding-top: max(14px, env(safe-area-inset-top)); }
}

@media (max-width: 660px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 1fr; min-height: 560px; }
  .hero-text { align-self: start; padding: 28px 28px 20px; max-width: none; }
  .hero-img { min-height: 0; object-position: 66% 22%; }
  /* Pil trukket litt inn fra kanten, tekst flukter med margen */
  .hero-links a { padding: 15px 16px 15px 0; }
}
