:root {
  --c-cream: #F7F1E6;
  --c-cream-deep: #EFE4D2;
  --c-paper: #FCFAF5;
  --c-ink: #2B2118;
  --c-ink-soft: #4A3D30;
  --c-mustard: #DDA43C;
  --c-mustard-deep: #B9812A;
  --c-terracotta: #C15F3C;
  --c-terracotta-deep: #9E4A2C;
  --c-olive: #6C7048;
  --c-olive-deep: #535936;
  --c-rose: #CD8D86;
  --c-rose-deep: #B06E68;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --text-hero: clamp(2.4rem, 4.5vw + 1rem, 4.2rem);
  --text-h1: clamp(2.1rem, 3vw + 1rem, 3rem);
  --text-h2: clamp(1.7rem, 2vw + 1rem, 2.4rem);
  --text-h3: clamp(1.2rem, 1vw + 1rem, 1.5rem);
  --text-lg: 1.15rem;
  --text-sm: 0.9rem;

  --shadow-sm: 0 1px 2px rgba(43,33,24,.07), 0 1px 1px rgba(43,33,24,.05);
  --shadow-md: 0 6px 14px -4px rgba(43,33,24,.12), 0 2px 6px rgba(43,33,24,.07);
  --shadow-lg: 0 18px 32px -10px rgba(43,33,24,.18), 0 6px 12px -4px rgba(43,33,24,.10);
  --shadow-xl: 0 30px 60px -14px rgba(43,33,24,.24), 0 10px 22px -6px rgba(43,33,24,.12);

  --font-display: 'Wix Madefor Display', serif;
  --font-body: 'Wix Madefor Text', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--c-ink); line-height: 1.15; }
p { margin: 0 0 var(--space-sm); }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.canvas { overflow-x: hidden; }
.canvas__container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.texture-grain { position: relative; isolation: isolate; }
.texture-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  min-height: 44px;
}
.btn--primary { background: var(--c-terracotta); color: var(--c-paper); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--c-terracotta-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: color-mix(in srgb, var(--c-ink) 30%, transparent); }
.btn--ghost:hover { border-color: var(--c-ink); background: color-mix(in srgb, var(--c-ink) 6%, transparent); }
.btn--light { background: var(--c-cream); color: var(--c-ink); box-shadow: var(--shadow-md); }
.btn--light:hover { background: var(--c-paper); transform: translateY(-2px); }


.nav-bar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 60;
  transition: background-color .4s ease, color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
  backdrop-filter: blur(14px);
  color: var(--c-paper);
}
.nav-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: var(--space-md);
}
.nav-bar--on-light { color: var(--c-ink); background: color-mix(in srgb, var(--c-cream) 78%, transparent); }
.nav-bar--on-dark { color: var(--c-paper); background: color-mix(in srgb, var(--c-ink) 45%, transparent); }
.nav-bar--scrolled { box-shadow: var(--shadow-md); }
.nav-bar__brand { display: flex; align-items: center; gap: .6rem; }
.nav-bar__logo { width: 34px; height: 34px; }
.nav-bar__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.nav-bar__links { display: flex; align-items: center; gap: 1.75rem; }
.nav-bar__links a { font-size: .95rem; font-weight: 500; opacity: .9; transition: opacity .25s ease; padding-block: .25rem; position: relative; }
.nav-bar__links a:hover, .nav-bar__links a.is-active { opacity: 1; }
.nav-bar__links a.is-active::after { content: ""; position: absolute; inset-inline: 0; block-size: 2px; background: currentColor; inset-block-end: -4px; border-radius: 2px; }
.nav-bar__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.3rem;
  border-radius: var(--radius-pill);
  background: var(--c-terracotta);
  color: var(--c-paper);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 44px;
}
.nav-bar__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-bar__cta-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-mustard); position: relative; }
.nav-bar__cta-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--c-mustard);
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }
.nav-bar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .5rem; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-bar__toggle span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }


.stage-curtain {
  position: fixed; inset: 0;
  background: rgba(20, 15, 10, .5);
  backdrop-filter: blur(2px);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.stage-curtain.is-visible { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 80;
  background: var(--c-paper);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-xl);
  padding: .75rem 1.5rem 2.25rem;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.32,.72,0,1);
  max-height: 82vh;
  overflow-y: auto;
}
.drawer--open { transform: translateY(0); }
.drawer__handle { width: 44px; height: 5px; border-radius: var(--radius-pill); background: var(--c-cream-deep); margin: .5rem auto 1.25rem; }
.drawer__links { display: flex; flex-direction: column; gap: .25rem; margin-block-end: 1.25rem; }
.drawer__links a {
  display: flex; align-items: center; gap: .9rem;
  padding: .95rem .5rem;
  font-weight: 600; font-size: 1.02rem;
  border-radius: var(--radius-md);
  transition: background-color .25s ease;
  min-height: 44px;
}
.drawer__links a:hover { background: var(--c-cream); }
.drawer__links a i { width: 22px; text-align: center; color: var(--c-terracotta); }
.drawer__cta {
  display: flex; justify-content: center; align-items: center;
  padding: .95rem; border-radius: var(--radius-pill);
  background: var(--c-terracotta); color: var(--c-paper); font-weight: 700;
  min-height: 44px;
}


.stage {
  padding-block: clamp(7rem, 14vw, 10rem) var(--space-2xl);
  background: linear-gradient(160deg, var(--c-ink) 0%, #3B2C1D 55%, var(--c-terracotta-deep) 100%);
  color: var(--c-paper);
}
.stage--compact { padding-block: clamp(6.5rem, 12vw, 8.5rem) var(--space-xl); }
.stage__container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-xl);
  align-items: center;
}
.stage--compact .stage__container { grid-template-columns: 1fr; text-align: left; }
.stage__eyebrow {
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  font-size: .82rem; color: var(--c-mustard);
  margin-block-end: var(--space-sm);
}
.stage__title { font-size: var(--text-hero); font-weight: 700; margin-block-end: var(--space-md); max-width: 22ch; color: var(--c-cream); }
.stage--compact .stage__title { font-size: var(--text-h1); max-width: 30ch; }
.stage__text { font-size: var(--text-lg); color: color-mix(in srgb, var(--c-paper) 88%, transparent); max-width: 42ch; margin-block-end: var(--space-lg); }
.stage__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-block-end: var(--space-md); }
.stage__note { font-size: .9rem; color: color-mix(in srgb, var(--c-paper) 75%, transparent); display: flex; align-items: center; gap: .5rem; }
.stage__note i { color: var(--c-mustard); }
.stage__visual { position: relative; }
.stage__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.08);
}
.stage__image { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.stage--compact .stage__image { aspect-ratio: 16/10; }
.stage__floating-card {
  position: absolute;
  inset-block-end: -1.5rem;
  inset-inline-start: -1.5rem;
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: .9rem;
}
.stage__floating-card div { display: flex; flex-direction: column; font-size: .85rem; }
.stage__floating-card strong { font-family: var(--font-display); font-size: 1rem; }
.stage__floating-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--c-olive); color: var(--c-paper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }


.gallery { padding-block: var(--space-2xl); }
.gallery--alt { background: var(--c-cream-deep); }
.gallery--faq { background: var(--c-paper); }
.gallery__head { max-width: 640px; margin-block-end: var(--space-xl); }
.gallery__head.reveal { margin-inline: 0; }
.gallery__eyebrow { font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; color: var(--c-terracotta-deep); margin-block-end: .6rem; }
.gallery__title { font-size: var(--text-h2); font-weight: 700; margin-block-end: var(--space-sm); }
.gallery__lead { font-size: var(--text-lg); color: var(--c-ink-soft); max-width: 60ch; }

.gallery__split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.gallery__split--reverse { direction: rtl; }
.gallery__split--reverse > * { direction: ltr; }
.gallery__split-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.gallery__split-image--portrait img { aspect-ratio: 3/4; }
.gallery__split-image--wide { margin-block: var(--space-lg); }
.gallery__split-image--wide img { aspect-ratio: 16/7; }
.gallery__split-copy p { color: var(--c-ink-soft); }

.gallery__grid { display: grid; gap: var(--space-md); container-type: inline-size; }
.gallery__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.gallery__grid--values { margin-block-start: var(--space-md); }

.gallery__card {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.gallery__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery__card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery__card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .4rem; }
.gallery__card-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--c-terracotta-deep); }
.gallery__card--plain { padding: 1.75rem; gap: .6rem; }
.gallery__card--plain p { color: var(--c-ink-soft); margin: 0; }
.gallery__card-icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: color-mix(in srgb, var(--c-mustard) 22%, var(--c-paper)); color: var(--c-terracotta-deep); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-block-end: .3rem; }

.gallery__module { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-xl); align-items: center; margin-block-end: var(--space-2xl); }
.gallery__module:last-child { margin-block-end: 0; }
.gallery__module--reverse { direction: rtl; }
.gallery__module--reverse > * { direction: ltr; }
.gallery__module-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.gallery__module-image--icon { display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3.4; background: linear-gradient(150deg, var(--c-olive), var(--c-olive-deep)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.gallery__module-image--icon span { font-size: 3.5rem; color: var(--c-cream); }
.gallery__module-copy h2 { font-size: var(--text-h2); margin-block: .5rem .8rem; }
.gallery__module-copy p { color: var(--c-ink-soft); }
.gallery__module-list { display: flex; flex-direction: column; gap: .6rem; margin-block-start: var(--space-sm); }
.gallery__module-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--c-ink-soft); }
.gallery__module-list i { color: var(--c-olive); margin-block-start: .2rem; }

.gallery__container--contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-xl); align-items: flex-start; }


.shelf { padding-block: var(--space-2xl); background: var(--c-paper); }
.shelf--courses { background: var(--c-cream); }
.shelf__head { max-width: 640px; margin-block-end: var(--space-xl); }
.shelf__row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: var(--space-md); align-items: stretch; }
.shelf__card {
  background: var(--c-cream-deep);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.shelf__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shelf__card-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: color-mix(in srgb, var(--c-terracotta) 60%, var(--c-ink)); opacity: .35; display: block; margin-block-end: .4rem; }
.shelf__card-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--c-terracotta); color: var(--c-paper); display: flex; align-items: center; justify-content: center; margin-block-end: 1rem; font-size: 1.1rem; }
.shelf__card h3 { font-size: var(--text-h3); margin-block-end: .5rem; }
.shelf__card p { color: var(--c-ink-soft); margin: 0; }
.shelf__connector { display: flex; align-items: center; justify-content: center; color: var(--c-terracotta); font-size: 1.3rem; opacity: .55; }


.spotlight {
  padding-block: var(--space-2xl);
  background: linear-gradient(135deg, var(--c-terracotta-deep) 0%, var(--c-terracotta) 42%, var(--c-mustard-deep) 100%);
  color: var(--c-paper);
}
.spotlight__head { max-width: 680px; margin-inline: auto; text-align: center; margin-block-end: var(--space-xl); }
.spotlight__eyebrow { color: var(--c-cream); opacity: .85; }
.spotlight__title { font-size: var(--text-h2); font-weight: 700; margin-block-end: var(--space-sm); }
.spotlight__lead { font-size: var(--text-lg); color: color-mix(in srgb, var(--c-paper) 88%, transparent); }
.spotlight__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.spotlight__card {
  background: color-mix(in srgb, var(--c-paper) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c-paper) 30%, transparent);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .3s ease, background-color .3s ease;
}
.spotlight__card:hover { transform: translateY(-6px); background: color-mix(in srgb, var(--c-paper) 22%, transparent); }
.spotlight__card-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: color-mix(in srgb, var(--c-paper) 25%, transparent); display: flex; align-items: center; justify-content: center; margin-block-end: .8rem; font-size: 1.1rem; }
.spotlight__card h3 { font-size: 1.1rem; margin-block-end: .4rem; }
.spotlight__card p { color: color-mix(in srgb, var(--c-paper) 85%, transparent); margin: 0; font-size: .95rem; }


.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--c-cream-deep); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; padding: 1.25rem 1.5rem;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--c-ink);
  text-align: left; min-height: 44px;
}
.faq-item__icon { width: 30px; height: 30px; border-radius: 50%; background: var(--c-terracotta); color: var(--c-paper); display: flex; align-items: center; justify-content: center; transition: transform .3s ease; flex-shrink: 0; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer-inner { overflow: hidden; padding-inline: 1.5rem; }
.faq-item.is-open .faq-item__answer-inner { padding-block-end: 1.4rem; }
.faq-item__answer p { color: var(--c-ink-soft); margin: 0; }


.banner { padding-block: var(--space-2xl); background: linear-gradient(160deg, var(--c-olive-deep), var(--c-olive)); color: var(--c-paper); text-align: center; }
.banner__container { max-width: 680px; }
.banner__title { font-size: var(--text-h2); margin-block-end: var(--space-sm); }
.banner__text { color: color-mix(in srgb, var(--c-paper) 88%, transparent); font-size: var(--text-lg); margin-block-end: var(--space-md); }
.banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.banner__image { width: 100%; max-width: 420px; margin-inline: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); margin-block-end: var(--space-md); aspect-ratio: 16/9; object-fit: cover; }


.form-card { background: var(--c-paper); border-radius: var(--radius-xl); padding: clamp(1.75rem, 3vw, 2.75rem); box-shadow: var(--shadow-lg); }
.form-card h2 { font-size: var(--text-h3); margin-block-end: var(--space-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-field { margin-block-end: var(--space-md); display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-weight: 600; font-size: .9rem; }
.form-field input, .form-field select, .form-field textarea {
  padding: .8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-cream-deep);
  background: var(--c-cream);
  font-family: inherit; font-size: 1rem; color: var(--c-ink);
  transition: border-color .25s ease, box-shadow .25s ease;
  min-height: 44px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-terracotta); box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-terracotta) 20%, transparent);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--c-ink-soft); margin-block-end: var(--space-md); }
.form-checkbox input { margin-block-start: .25rem; width: 18px; height: 18px; flex-shrink: 0; }
.form-submit { width: 100%; justify-content: center; }

.contact-side { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-side__card { background: var(--c-paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-side__card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.contact-side__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.contact-side__body p { display: flex; align-items: center; gap: .6rem; margin: 0; color: var(--c-ink-soft); }
.contact-side__body i { color: var(--c-terracotta); width: 18px; }
.contact-side__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }


.timeline { display: flex; flex-direction: column; gap: 1.75rem; max-width: 720px; margin-inline: auto; }
.timeline__item { display: flex; gap: 1.25rem; }
.timeline__marker { width: 42px; height: 42px; border-radius: 50%; background: var(--c-cream-deep); color: var(--c-ink-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.timeline__content h3 { font-size: 1.05rem; margin-block-end: .3rem; }
.timeline__content p { margin: 0; color: var(--c-ink-soft); }
.timeline--mini .timeline__item--done .timeline__marker { background: var(--c-olive); color: var(--c-paper); }
.timeline--mini .timeline__item--current .timeline__marker { background: var(--c-terracotta); color: var(--c-paper); box-shadow: 0 0 0 6px color-mix(in srgb, var(--c-terracotta) 18%, transparent); }
.timeline--mini .timeline__item--current .timeline__content h3 { color: var(--c-terracotta-deep); }
.timeline--mini .timeline__item--upcoming { opacity: .55; }


.legal { padding-block: clamp(7rem, 12vw, 9rem) var(--space-2xl); }
.legal__container { max-width: 800px; }
.legal__updated { color: var(--c-ink-soft); font-size: .9rem; margin-block: .5rem var(--space-xl); }
.legal__section { margin-block-end: var(--space-lg); }
.legal__section h2 { font-size: 1.25rem; margin-block-end: .6rem; }
.legal p { color: var(--c-ink-soft); }
.legal a { color: var(--c-terracotta-deep); text-decoration: underline; }

.impressum table { width: 100%; border-collapse: collapse; margin-block: .75rem 1.25rem; }
.impressum th, .impressum td { text-align: left; padding: .65rem .9rem; border-bottom: 1px solid var(--c-cream-deep); font-size: .95rem; }
.impressum th { width: 220px; color: var(--c-ink-soft); font-weight: 600; }


.site-footer { background: var(--c-ink); color: var(--c-cream); padding-block: var(--space-2xl) var(--space-lg); text-align: center; }
.site-footer__container { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.site-footer__logo { width: 42px; height: 42px; }
.site-footer__tagline { color: color-mix(in srgb, var(--c-cream) 75%, transparent); max-width: 420px; margin: 0; }
.site-footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-block: .5rem; }
.site-footer__nav a { font-size: .92rem; opacity: .85; transition: opacity .25s ease; }
.site-footer__nav a:hover { opacity: 1; }
.site-footer__contact { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; font-size: .88rem; color: color-mix(in srgb, var(--c-cream) 75%, transparent); }
.site-footer__contact i { color: var(--c-mustard); margin-inline-end: .35rem; }
.site-footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; font-size: .82rem; margin-block-start: .5rem; }
.site-footer__legal a, .site-footer__legal button { opacity: .7; transition: opacity .25s ease; background: none; border: none; color: inherit; font-size: inherit; padding: 0; min-height: auto; }
.site-footer__legal a:hover, .site-footer__legal button:hover { opacity: 1; }
.site-footer__copy { font-size: .8rem; color: color-mix(in srgb, var(--c-cream) 55%, transparent); margin-block-start: 1rem; }


.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


.cookie-modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,15,10,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.cookie-modal-backdrop.is-visible { opacity: 1; visibility: visible; }
.cookie-modal {
  background: var(--c-paper);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-xl);
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(20px) scale(.98);
  transition: transform .35s ease;
}
.cookie-modal-backdrop.is-visible .cookie-modal { transform: translateY(0) scale(1); }
.cookie-modal h2 { font-size: 1.4rem; margin-block-end: .6rem; }
.cookie-modal > p { color: var(--c-ink-soft); font-size: .95rem; margin-block-end: 1.25rem; }
.cookie-modal__category { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding-block: .9rem; border-block-end: 1px solid var(--c-cream-deep); }
.cookie-modal__category:first-of-type { border-block-start: 1px solid var(--c-cream-deep); }
.cookie-modal__category-text strong { display: block; font-size: .96rem; }
.cookie-modal__category-text span { font-size: .85rem; color: var(--c-ink-soft); }
.cookie-modal__toggle { position: relative; width: 46px; height: 26px; flex-shrink: 0; margin-block-start: .2rem; }
.cookie-modal__toggle input { opacity: 0; width: 100%; height: 100%; position: absolute; cursor: pointer; margin: 0; }
.cookie-modal__toggle-track { position: absolute; inset: 0; background: var(--c-cream-deep); border-radius: var(--radius-pill); transition: background-color .25s ease; }
.cookie-modal__toggle-track::after { content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--c-paper); top: 3px; left: 3px; transition: transform .25s ease; box-shadow: var(--shadow-sm); }
.cookie-modal__toggle input:checked ~ .cookie-modal__toggle-track { background: var(--c-terracotta); }
.cookie-modal__toggle input:checked ~ .cookie-modal__toggle-track::after { transform: translateX(20px); }
.cookie-modal__toggle input:disabled ~ .cookie-modal__toggle-track { background: var(--c-olive); opacity: .6; cursor: not-allowed; }
.cookie-modal__actions { display: flex; flex-direction: column; gap: .7rem; margin-block-start: 1.5rem; }
.cookie-modal__actions .btn { justify-content: center; width: 100%; }
.cookie-modal__link-row { text-align: center; margin-block-start: .9rem; font-size: .82rem; }
.cookie-modal__link-row a { text-decoration: underline; color: var(--c-terracotta-deep); }


@media (max-width: 1080px) {
  .stage__container { grid-template-columns: 1fr; text-align: left; }
  .stage__visual { order: -1; }
  .stage__floating-card { position: static; margin-block-start: 1rem; display: inline-flex; }
  .gallery__split, .gallery__module, .gallery__container--contact { grid-template-columns: 1fr !important; direction: ltr !important; }
  .gallery__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
  .spotlight__grid { grid-template-columns: repeat(2, 1fr); }
  .shelf__row { grid-template-columns: 1fr; }
  .shelf__connector { transform: rotate(90deg); padding-block: .5rem; }
}

@media (max-width: 760px) {
  .nav-bar__links, .nav-bar__cta { display: none; }
  .nav-bar__toggle { display: flex; }
  .gallery__grid--cols-4, .gallery__grid--cols-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stage { padding-block: 6.5rem var(--space-xl); }
  .impressum th { width: 130px; font-size: .85rem; }
  .impressum th, .impressum td { padding: .5rem .5rem; font-size: .85rem; }
  .site-footer__contact { flex-direction: column; gap: .6rem; }
}

@media (max-width: 480px) {
  .stage__title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .banner__actions, .stage__actions { flex-direction: column; align-items: stretch; }
}