/* ========================================
   Marina Erdmann - Portfolio Website
   3 Theme Variants: Elegant, Dark, White
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Theme Variables --- */

/* Theme 1: Elegant - Serif + dark grey background */
:root, [data-theme="elegant"] {
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-primary: #333333;
  --bg-secondary: #333333;
  --bg-card: #363636;
  --bg-hero: #333333;
  --text-primary: #e8e4df;
  --text-secondary: #c0b9b0;
  --text-muted: #8a847c;
  --accent: #c8a97e;
  --accent-hover: #dabb8e;
  --accent-soft: rgba(200, 169, 126, 0.12);
  --border: #444444;
  --border-light: #3a3a3a;
  --nav-bg: #2d2d2d;
  --nav-text: #d4cfc8;
  --nav-hover: #c8a97e;
  --footer-bg: #2d2d2d;
  --footer-text: #7a756e;
  --shadow: rgba(0,0,0,0.25);
  --shadow-lg: rgba(0,0,0,0.4);
  --overlay: rgba(30,30,30,0.6);
  --theme-switcher-bg: #c8a97e;
  --theme-switcher-text: #1e1e1e;
  --img-filter: brightness(0.95) contrast(1.05);
}

/* Theme 2: Dark - Deep blue-black with gold */
[data-theme="dark"] {
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-primary: #0e0e14;
  --bg-secondary: #161620;
  --bg-card: #1c1c28;
  --bg-hero: #0a0a10;
  --text-primary: #e0ddd8;
  --text-secondary: #a8a4a0;
  --text-muted: #666270;
  --accent: #b89d6a;
  --accent-hover: #d0b580;
  --accent-soft: rgba(184, 157, 106, 0.1);
  --border: #2a2a38;
  --border-light: #222230;
  --nav-bg: #08080e;
  --nav-text: #d0ccc6;
  --nav-hover: #b89d6a;
  --footer-bg: #08080e;
  --footer-text: #555060;
  --shadow: rgba(0,0,0,0.4);
  --shadow-lg: rgba(0,0,0,0.6);
  --overlay: rgba(10,10,16,0.7);
  --theme-switcher-bg: #b89d6a;
  --theme-switcher-text: #0e0e14;
  --img-filter: brightness(0.9) contrast(1.08);
}

/* Theme 3: White/Clean - Minimal elegance */
[data-theme="white"] {
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-primary: #ffffff;
  --bg-secondary: #f6f5f3;
  --bg-card: #ffffff;
  --bg-hero: #f9f8f6;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #999999;
  --accent: #1a1a1a;
  --accent-hover: #555555;
  --accent-soft: rgba(0,0,0,0.04);
  --border: #e8e6e2;
  --border-light: #f0eeeb;
  --nav-bg: #ffffff;
  --nav-text: #1a1a1a;
  --nav-hover: #777777;
  --footer-bg: #f6f5f3;
  --footer-text: #999999;
  --shadow: rgba(0,0,0,0.04);
  --shadow-lg: rgba(0,0,0,0.08);
  --overlay: rgba(255,255,255,0.7);
  --theme-switcher-bg: #1a1a1a;
  --theme-switcher-text: #ffffff;
  --img-filter: none;
}

/* White theme: headings thinner */
[data-theme="white"] h1,
[data-theme="white"] h2 {
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* --- Typography --- */
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color 0.5s ease, color 0.5s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  transition: color 0.5s ease;
}

h1 {
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

p {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-hover);
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Layout --- */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* --- Fade-in animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Navigation --- */
.site-header {
  background-color: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.5s ease;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nav-text);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--nav-hover);
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  align-items: center;
}

.main-nav a {
  color: var(--nav-text);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.25s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--nav-hover);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav .active a::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--nav-hover);
}

.main-nav .active a {
  color: var(--nav-hover);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--nav-text);
  margin: 6px 0;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  padding: 5rem 0 2rem;
  text-align: center;
  background: var(--bg-hero);
  transition: background-color 0.5s ease;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-body);
}

.hero .divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem auto 0;
}

/* --- Portrait Gallery in Hero --- */
.portrait-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.portrait-strip img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  filter: var(--img-filter);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.portrait-strip img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* --- Page Header --- */
.page-header {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-header .accent-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.8rem;
}

/* --- Content Sections --- */
section {
  transition: background-color 0.5s ease;
}

section {
  background: var(--bg-secondary);
}

.content-section {
  padding: 2.5rem 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--border-light);
}

/* --- Section with image sidebar --- */
.section-with-image {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.section-image img {
  width: 100%;
  height: auto;
  filter: var(--img-filter);
  transition: filter 0.5s ease;
}

/* --- Profile / Bio --- */
.profile-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 2rem 0;
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: var(--img-filter);
  transition: filter 0.5s ease;
}

.bio-details dt {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent);
  margin-top: 1.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.bio-details dt:first-child {
  margin-top: 0;
}

.bio-details dd {
  color: var(--text-secondary);
  margin-left: 0;
  font-size: 0.92rem;
  margin-top: 0.15rem;
}

/* --- Vita --- */
.vita-section {
  margin-top: 3.5rem;
  padding: 2.5rem 3rem;
  background: var(--bg-card);
  border-left: 2px solid var(--accent);
  transition: background-color 0.5s ease;
}

.vita-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.vita-section p {
  font-size: 0.92rem;
  line-height: 1.8;
}

/* --- Image Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: var(--img-filter);
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.02);
  filter: brightness(1.08);
}

/* --- Inline image float --- */
.float-image {
  float: right;
  width: 240px;
  margin: 0 0 1.5rem 2rem;
  filter: var(--img-filter);
}

.float-image-left {
  float: left;
  width: 220px;
  margin: 0.3rem 2rem 1.5rem 0;
  filter: var(--img-filter);
}

/* --- Credit Groups (Theater) --- */
.credit-group {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-light);
}

.credit-group:last-child {
  border-bottom: none;
}

.credit-group h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.credit-group p {
  padding-left: 0;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  line-height: 1.6;
}

/* --- Film Credits --- */
.credit-item {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.6;
}

.credit-item:last-child {
  border-bottom: none;
}

.credit-item .year {
  color: var(--text-muted);
  font-size: 0.8rem;
  min-width: 45px;
  display: inline-block;
  font-family: var(--font-body);
}

.credit-item .title {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.credit-item .details {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

/* --- Termine / Events --- */
.event-list {
  list-style: none;
}

.event-list li {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 1.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: baseline;
}

.event-list li:last-child {
  border-bottom: none;
}

.event-date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.event-title {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.event-location {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: right;
  white-space: nowrap;
}

/* --- Programme boxes --- */
.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.programme-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s ease;
}

.programme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}

.programme-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  filter: var(--img-filter);
}

.programme-card:nth-child(1) img,
.programme-card:nth-child(4) img {
  object-position: center 15%;
}

.programme-card-body {
  padding: 1.2rem 1.5rem;
}

.programme-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.programme-card p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* --- Venues / References --- */
.venues-section h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.2rem 2.5rem;
}

.venue-grid span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
}

/* --- Studios grid --- */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 2.5rem;
}

.studio-grid span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
}

/* --- Sidebar info boxes --- */
.info-box {
  background: var(--bg-card);
  padding: 1.5rem 1.8rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 1.5rem;
  transition: background-color 0.5s ease;
}

.info-box h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.info-box p {
  font-size: 0.88rem;
}

/* --- Two column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 3.5rem;
  align-items: start;
}

/* --- Links & Downloads --- */
.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.link-list li:last-child {
  border-bottom: none;
}

.link-list a {
  font-weight: 500;
  font-size: 1rem;
}

.link-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Datenschutz / Impressum text --- */
#datenschutz h3,
#impressum h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
}

/* --- Kontakt --- */
.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-info p {
  font-size: 0.9rem;
}

/* --- Teaching --- */
.teaching-group {
  margin-bottom: 1.8rem;
}

.teaching-group h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.teaching-group .role {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.teaching-group ul {
  list-style: none;
  padding: 0;
}

.teaching-group li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.15rem 0 0.15rem 1.2rem;
  position: relative;
}

.teaching-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Coaching sidebar --- */
.coaching-highlights {
  list-style: none;
  padding: 0;
}

.coaching-highlights li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--footer-bg);
  padding: 2.5rem 0;
  margin-top: 0;
  transition: background-color 0.5s ease;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  color: var(--footer-text);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--accent);
}

.copyright {
  color: var(--footer-text);
  font-size: 0.75rem;
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--accent-hover);
}

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 10px 60px rgba(0,0,0,0.5);
  cursor: default;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-overlay.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* All clickable images */
img[data-lightbox] {
  cursor: zoom-in;
}

/* --- Scene photo highlight --- */
.scene-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
}

.scene-photos img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  filter: var(--img-filter);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.scene-photos img:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    padding: 1rem 2.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav li:last-child {
    border-bottom: none;
  }

  .main-nav a::after {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }

  .portrait-strip {
    gap: 0.5rem;
  }

  .portrait-strip img {
    width: 120px;
    height: 160px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .event-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .event-location {
    text-align: left;
  }

  .programme-grid {
    grid-template-columns: 1fr;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .scene-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .vita-section {
    padding: 1.5rem;
  }

  .float-image,
  .float-image-left {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
    display: block;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  h1 { font-size: 1.8rem; }
  .hero h1 { font-size: 1.8rem; }

  .portrait-strip img {
    width: 90px;
    height: 120px;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .scene-photos {
    grid-template-columns: 1fr;
  }
}
