/* sound pool studio – Website im App-Look */
:root {
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --petrol: #4a8a92;
  --petrol-glow: rgba(74, 138, 146, 0.35);
  --bg: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --wellness-sage: rgba(160, 190, 185, 0.12);
  --wellness-cream: rgba(255, 252, 245, 0.08);
}

* { box-sizing: border-box; }

/* Accessibility: Focus nur bei Tastatur sichtbar, Ring in Petrol */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--petrol);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body.site {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  opacity: 0;
  animation: page-in 0.8s var(--ease) 0.1s forwards;
}

@keyframes page-in {
  to { opacity: 1; }
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% 20%, rgba(74, 138, 146, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 80% 80%, rgba(74, 138, 146, 0.04) 0%, transparent 45%);
}

/* ========== Header – nur bei Hover sichtbar, sonst volles Foto ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(12px, 2vw, 20px) clamp(20px, 5vw, 40px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.header:hover {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.header:hover .header-inner {
  opacity: 1;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 32px);
}

.nav a {
  position: relative;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav a:hover { color: var(--petrol); }
.nav a:hover::after { width: 100%; }

.logo {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Hamburger – nur auf kleinen Screens sichtbar */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s;
}
.nav-toggle:hover { color: var(--petrol); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav--mobile {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nav--mobile a {
  display: block;
  padding: 16px 24px;
  font-family: inherit;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  min-width: 200px;
  text-align: center;
}
.nav--mobile a:hover { color: var(--petrol); }
.nav--mobile a::after { display: none; }

/* Tablet/iPad: Hamburger-Menü wie iPhone – zentriert (bis 1280px) */
@media (max-width: 1280px) {
  .header .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-overlay {
    justify-content: center !important;
    align-items: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .nav--mobile {
    align-items: center !important;
    gap: 8px;
    margin: 0 auto;
  }
  .nav--mobile a {
    padding: 16px 24px;
    font-size: clamp(14px, 2vw, 16px);
    text-align: center !important;
    min-width: 200px;
  }
}
@media (min-width: 1281px) {
  .nav-overlay { display: none; }
}

/* Auf Touch-Geräten: Menü immer sichtbar (kein Hover) */
@media (hover: none) {
  .header {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
  }
  .header-inner { opacity: 1; }
}

/* ========== Hero (Pool) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 40px) clamp(80px, 15vw, 140px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
  transition: transform 0.6s ease-out;
}

.hero:hover .hero-bg-img { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.75) 100%);
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.88) 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.hero-title {
  margin: 0 0 0.25em;
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-reveal 0.8s var(--ease) 0.2s forwards;
}

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  opacity: 0;
  animation: hero-reveal 0.7s var(--ease) 0.35s forwards;
}

.hero .btn {
  opacity: 0;
  animation: hero-reveal 0.6s var(--ease) 0.5s forwards;
}

.hero-tagline {
  margin: 0 0 1.5em;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petrol);
}

.hero .btn { margin-top: 0.5em; }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: clamp(12px, 2vw, 16px) clamp(28px, 5vw, 40px);
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 44px;
  min-width: 44px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.25;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--petrol) 0%, #2d5e63 100%);
  box-shadow: 0 0 30px var(--petrol-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(74, 138, 146, 0.5), 0 6px 24px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
  color: var(--petrol);
  background: transparent;
  border: 2px solid var(--petrol);
}

.btn-secondary:hover {
  transform: scale(1.05);
  background: rgba(74, 138, 146, 0.15);
}

/* ========== Sections ========== */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 10vw, 80px) clamp(20px, 5vw, 40px);
}

/* Anker-Scroll: Sektion landet knapp unter dem Header, keine Überschneidung sichtbar */
.section[id] {
  scroll-margin-top: 56px;
}

.section--accent {
  background: rgba(74, 138, 146, 0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section--accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--petrol), transparent);
  border-radius: 0 3px 3px 0;
  opacity: 0.7;
}

.section--dark {
  background: rgba(0, 0, 0, 0.3);
}

/* ========== Studio – Wellness-Look ========== */
.section--wellness {
  background: linear-gradient(180deg, var(--wellness-sage) 0%, var(--wellness-cream) 50%, transparent 100%);
  padding: clamp(56px, 12vw, 96px) clamp(24px, 5vw, 48px);
}

.container--wellness {
  max-width: 720px;
  text-align: center;
  padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 40px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

.container--wellness .section-title,
.container--wellness .section-lead,
.container--wellness .section-note,
.container--wellness .wellness-label {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.container--wellness-wide {
  max-width: 1000px;
}

.container--wellness.container--narrow {
  max-width: 640px;
}

.cta-row--center {
  justify-content: center;
}

.wellness-label {
  display: block;
  margin: 0 0 1em;
  font-size: clamp(11px, 1.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(160, 190, 185, 0.9);
  text-align: center;
}

.section-title--wellness {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
  text-align: center;
}

.section-lead--wellness {
  font-size: clamp(17px, 2.4vw, 19px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 1em;
  text-align: center;
  max-width: 100%;
}

.section-note--wellness {
  font-size: clamp(13px, 2vw, 14px);
  font-style: italic;
  color: rgba(160, 190, 185, 0.85);
  letter-spacing: 0.08em;
  margin: 0 auto;
  text-align: center;
}

/* Scroll-Reveal */
.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.section-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.container--narrow { max-width: 640px; }

.section-badge {
  font-size: clamp(11px, 1.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  margin: 0 0 0.5em;
}

.section-title {
  margin: 0 0 0.5em;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-lead {
  margin: 0 0 0.75em;
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--text-dim);
  max-width: 720px;
}

.section-note, .section-text {
  margin: 0 0 1em;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-dim);
}

.section-note { font-style: italic; }

/* ========== Content-O-Mat CTA ========== */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.5em;
}

.cta-row .btn { margin-top: 0; }

/* ========== Podcast / Sounddesign ========== */
.podcast-grid {
  display: grid;
  gap: 24px;
  margin-top: 1.5em;
  justify-items: center;
}

.podcast-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  text-align: center;
}

.podcast-img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-title {
  margin: 0 0 0.5em;
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
}

.link {
  color: var(--petrol);
  font-weight: 600;
  text-decoration: none;
}

.link:hover { text-decoration: underline; }

/* ========== Leistungen / Pakete ========== */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 28px);
  margin-top: 2em;
}

@media (min-width: 900px) {
  .paket-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.paket-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 28px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}

.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 40px var(--petrol-glow);
  border-color: rgba(74, 138, 146, 0.25);
}

.paket-name {
  margin: 0 0 0.5em;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
}

.paket-card > p {
  margin: 0 0 0.75em;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 100%;
}

.paket-price, .paket-note {
  font-weight: 600;
  color: var(--petrol);
}

.paket-card .btn {
  margin-top: auto;
  padding-top: 1em;
}

/* ========== FAQ ========== */
.faq-list { margin-top: 1.5em; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1em 0;
}

.faq-question {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-answer {
  margin: 0.75em 0 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.faq-answer a { color: var(--petrol); }

/* ========== Team ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 2em;
}

/* iPad: Team – zwei Bilder nebeneinander */
@media (max-width: 1280px) and (min-width: 769px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  text-align: center;
  transition: transform 0.35s var(--ease);
}

.team-card:hover { transform: translateY(-4px); }

.team-img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 552 / 710;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: block;
  border: 1px solid var(--border);
}

.team-name { margin: 0 0 0.25em; font-size: 18px; font-weight: 700; color: #fff; }

.team-role { margin: 0; font-size: 13px; color: var(--petrol); }

/* ========== Partner – Carousel ========== */
.partner-carousel {
  margin-top: 2em;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 56px);
  width: max-content;
  animation: partner-scroll 35s linear infinite;
}

.partner-track:hover {
  animation-play-state: paused;
}

@keyframes partner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.partner-logo {
  flex-shrink: 0;
  max-height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.85;
  transition: filter 0.35s, opacity 0.35s;
}

.partner-carousel .partner-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* ========== Kontakt ========== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 2em;
  align-items: start;
}

@media (max-width: 640px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* ========== Mobile – Lesbarkeit & Touch ========== */
@media (max-width: 768px) {
  main {
    padding-bottom: max(100px, env(safe-area-inset-bottom, 0px) + 80px);
  }
  .container,
  .container--wellness,
  .container--wellness-wide {
    width: 100%;
    max-width: 100%;
  }
  .paket-card,
  .team-card,
  .podcast-card,
  .faq-item {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  body.site { font-size: 16px; }
  .section { padding: clamp(32px, 8vw, 48px) 16px; }
  .section--wellness { padding: clamp(40px, 10vw, 56px) 16px; }
  .container--wellness {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .section-lead { font-size: 16px; line-height: 1.6; }
  .section-lead--wellness { font-size: 16px; }
  .paket-grid { grid-template-columns: 1fr; gap: 20px; }
  .paket-card { padding: 20px 16px; }
  .paket-card > p { font-size: 15px; }
  .nav a { padding: 10px 6px; font-size: 13px; }
  .hero { padding: clamp(60px, 10vw, 80px) 16px clamp(60px, 12vw, 100px); }
  .hero-title { font-size: clamp(32px, 10vw, 48px); }
  .hero-tagline { font-size: 14px; }
  .cta-row { flex-direction: column; align-items: center; }
  .cta-row .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 360px) {
  .section-title { font-size: 22px; }
  .hero-title { font-size: 28px; }
}

.kontakt-info p { margin: 0 0 1.25em; font-size: 14px; color: var(--text-dim); }

.kontakt-info a { color: var(--petrol); text-decoration: none; }

.kontakt-info a:hover { text-decoration: underline; }

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.kontakt-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}

.kontakt-form input,
.kontakt-form textarea {
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder { color: var(--text-dim); opacity: 0.7; }

.kontakt-form .btn { align-self: center; margin-top: 0.5em; }

/* ========== Footer ========== */
/* Back to top */
.back-to-top {
  position: fixed;
  bottom: clamp(20px, 4vw, 32px);
  right: clamp(20px, 4vw, 32px);
  z-index: 90;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 138, 146, 0.2);
  border: 1px solid rgba(74, 138, 146, 0.4);
  border-radius: 50%;
  color: var(--petrol);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease), background 0.3s;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--petrol);
  color: #fff;
  border-color: var(--petrol);
}

.footer {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 5vw, 40px) clamp(20px, 5vw, 40px) max(2rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dim);
}

.footer-inner { max-width: 1000px; margin: 0 auto; }

.footer-copy {
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin: 0 0 1em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 32px);
}

.footer-link {
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.footer-link:hover { color: var(--petrol); }

/* ========== Modal ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal--open { opacity: 1; visibility: visible; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  background: #0f1419;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 { margin: 0; font-size: 20px; font-weight: 700; color: #fff; }

.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
}

.modal-close:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }

.modal-body {
  padding: 24px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.modal-body p { margin: 0 0 1em; }

.modal-body p:last-child { margin-bottom: 0; }

.modal-body strong { color: rgba(255, 255, 255, 0.9); }
