:root {
  --burgundy: #6d1420;
  --burgundy-deep: #3f0a12;
  --burgundy-soft: #8a1f2d;
  --blush: #f6e8e6;
  --ink: #1a1214;
  --muted: #5c4a4d;
  --paper: #faf6f4;
  --paper-2: #f0e7e4;
  --line: rgba(109, 20, 32, 0.14);
  --gold: #b08a5a;
  --shadow: 0 24px 60px rgba(63, 10, 18, 0.18);
  --radius: 2px;
  --header-h: 4.25rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(176, 138, 90, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(109, 20, 32, 0.08), transparent 55%),
    linear-gradient(180deg, #fbf8f6 0%, var(--paper) 40%, #f4ece9 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--burgundy);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(250, 246, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blush);
  transition: color 0.3s var(--ease);
}

.site-header.is-scrolled .logo,
.site-header.is-open .logo {
  color: var(--burgundy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(246, 232, 230, 0.88);
  transition: color 0.25s var(--ease);
}

.site-header.is-scrolled .site-nav a,
.site-header.is-open .site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-header.is-scrolled .site-nav a:hover {
  color: var(--burgundy-soft);
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(246, 232, 230, 0.45);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.nav-cta:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--blush) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.site-header.is-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle {
  color: var(--blush);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  color: var(--burgundy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--blush);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: var(--burgundy-deep);
  background-image: url("assets/images/judith-gennrich-head7.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  animation: heroZoom 18s var(--ease) infinite alternate;
  transform-origin: right center;
}

.hero-media img {
  display: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(63, 10, 18, 0.82) 0%, rgba(63, 10, 18, 0.55) 42%, rgba(63, 10, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(63, 10, 18, 0.35) 0%, transparent 30%, rgba(63, 10, 18, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  animation: riseIn 1s var(--ease) both;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(246, 232, 230, 0.78);
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 10ch;
}

.hero-lead {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(246, 232, 230, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blush);
  color: var(--burgundy-deep);
}

.btn-ghost {
  border: 1px solid rgba(246, 232, 230, 0.55);
  color: var(--blush);
}

.btn-ghost:hover {
  background: rgba(246, 232, 230, 0.1);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(246, 232, 230, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.4rem;
}

.hero-scroll span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blush);
  animation: scrollDot 1.6s var(--ease) infinite;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head-center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  font-weight: 500;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Termine */
.section-termine {
  background:
    linear-gradient(180deg, transparent, rgba(109, 20, 32, 0.03)),
    transparent;
}

.termine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.termin {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) 1fr;
  gap: 1rem 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.8s var(--ease) forwards;
}

.termin:nth-child(1) { animation-delay: 0.05s; }
.termin:nth-child(2) { animation-delay: 0.12s; }
.termin:nth-child(3) { animation-delay: 0.19s; }
.termin:nth-child(4) { animation-delay: 0.26s; }
.termin:nth-child(5) { animation-delay: 0.33s; }

.termin time {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.25;
}

.termin time span {
  display: block;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}

.termin-place {
  margin: 0;
  font-weight: 500;
}

.termin-work {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

/* Vita */
.vita-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.vita-visual {
  position: relative;
}

.vita-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(1.03);
}

.caption {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.vita-text p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.vita-copy:not(.is-expanded) .vita-more {
  display: none;
}

.text-toggle {
  margin-top: 0.5rem;
  color: var(--burgundy);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

/* Audio */
.section-toene {
  background:
    linear-gradient(160deg, var(--burgundy-deep), var(--burgundy) 55%, #5a101a);
  color: var(--blush);
}

.section-toene .eyebrow {
  color: rgba(246, 232, 230, 0.7);
}

.section-toene .section-lead {
  color: rgba(246, 232, 230, 0.72);
}

.audio-list {
  display: grid;
  gap: 0.85rem;
}

.audio-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem 1.35rem;
  border: 1px solid rgba(246, 232, 230, 0.16);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.audio-card.is-playing,
.audio-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 232, 230, 0.32);
}

.audio-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.audio-role {
  margin: 0.2rem 0 0;
  font-style: italic;
  opacity: 0.9;
}

.audio-credit {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  opacity: 0.65;
}

.play-btn {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  border: 1px solid rgba(246, 232, 230, 0.45);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.play-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  margin-left: 2px;
}

.audio-card.is-playing .play-btn {
  background: var(--blush);
  color: var(--burgundy-deep);
  border-color: var(--blush);
}

.audio-card.is-playing .play-btn svg {
  display: none;
}

.audio-card.is-playing .play-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  background:
    linear-gradient(currentColor, currentColor) left / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) right / 3px 100% no-repeat;
}

.play-btn:hover {
  transform: scale(1.05);
}

.audio-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(246, 232, 230, 0.12);
}

.audio-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* Repertoire */
.tabs {
  display: grid;
  gap: 1.75rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.tab-list button {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.tab-list button[aria-selected="true"] {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--blush);
}

.rep-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.rep-grid li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.rep-grid span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}

.rep-grid em {
  font-style: italic;
}

.rep-note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Presse */
.section-presse {
  background:
    linear-gradient(180deg, rgba(109, 20, 32, 0.04), transparent 40%);
}

.quotes {
  position: relative;
  min-height: 14rem;
}

.quote {
  margin: 0;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transform: translateY(12px);
}

.quote.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: none;
}

.quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
}

.quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.quote-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.quote-nav button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  color: var(--burgundy);
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.quote-nav button:hover {
  background: var(--burgundy);
  color: var(--blush);
}

/* Gallery */
.gallery {
  columns: 3 220px;
  column-gap: 1rem;
}

.gallery figure {
  margin: 0 0 1rem;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  transition: transform 0.7s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(26, 18, 20, 0.75));
  color: var(--blush);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery figure:hover figcaption {
  opacity: 1;
  transform: none;
}

/* Kontakt */
.section-kontakt {
  padding-bottom: 5rem;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.kontakt-lead {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.kontakt-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.75rem;
  background: var(--burgundy-deep);
  color: var(--blush);
  font-style: normal;
  box-shadow: var(--shadow);
}

.kontakt-name {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.kontakt-card a {
  opacity: 0.88;
  transition: opacity 0.2s var(--ease);
}

.kontakt-card a:hover {
  opacity: 1;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.footer-links a:hover {
  color: var(--burgundy);
}

/* Legal pages */
.page-legal {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-legal .site-header {
  background: rgba(250, 246, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.legal-main {
  flex: 1;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.legal-wrap .section-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--burgundy);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  color: var(--burgundy);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 18, 20, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
  gap: 0.75rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(78vh, 900px);
  max-width: min(92vw, 900px);
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  color: var(--blush);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  color: var(--blush);
  line-height: 1;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

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

  .vita-visual {
    max-width: 28rem;
  }

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

  .gallery {
    columns: 2 160px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(250, 246, 244, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink) !important;
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-color: var(--burgundy) !important;
    color: var(--burgundy) !important;
  }

  .hero-content {
    padding-bottom: 5rem;
  }

  .termin {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .audio-card {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .audio-credit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .gallery {
    columns: 1;
  }

  .hero-brand {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab-list button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Consent banner */
.consent-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 300;
  padding: 1rem;
  pointer-events: none;
}

.consent-banner[hidden] {
  display: none;
}

.consent-inner {
  pointer-events: auto;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: var(--burgundy-deep);
  color: var(--blush);
  box-shadow: 0 -12px 40px rgba(26, 18, 20, 0.28);
  animation: riseIn 0.55s var(--ease) both;
}

.consent-copy h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.consent-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(246, 232, 230, 0.82);
}

.consent-copy a {
  color: var(--blush);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.btn-consent-accept,
.btn-consent-decline {
  min-height: 2.6rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.btn-consent-accept {
  background: var(--blush);
  color: var(--burgundy-deep);
}

.btn-consent-decline {
  border: 1px solid rgba(246, 232, 230, 0.45);
  color: var(--blush);
}

.btn-consent-accept:hover,
.btn-consent-decline:hover {
  transform: translateY(-1px);
}

.btn-consent-decline:hover {
  background: rgba(246, 232, 230, 0.08);
}

@media (max-width: 760px) {
  .consent-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .btn-consent-accept,
  .btn-consent-decline {
    flex: 1;
  }
}
