@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { min-height: 100vh; }
  img, video { max-width: 100%; display: block; }
  input, button, textarea, select { font: inherit; }
  a { text-decoration: none; color: inherit; }
  ul, ol { list-style: none; }
  button { cursor: pointer; background: none; border: none; }
  address { font-style: normal; }
}

@layer tokens {
  :root {
    --clr-bg: #f5f4ef;
    --clr-bg-alt: #edecea;
    --clr-surface: #ffffff;
    --clr-surface-2: #f0efe9;
    --clr-primary: #2d4a3e;
    --clr-primary-light: #3d6355;
    --clr-primary-dark: #1e3329;
    --clr-accent: #7a9e6e;
    --clr-accent-light: #a8c49a;
    --clr-accent-dark: #5c7d52;
    --clr-secondary: #c8a96e;
    --clr-secondary-light: #dfc48f;
    --clr-text: #1e2820;
    --clr-text-mid: #3d4a3e;
    --clr-text-muted: #6b7a6c;
    --clr-border: #d8d6ce;
    --clr-border-light: #e8e6de;

    --ff-heading: 'Crimson Pro', Georgia, serif;
    --ff-body: 'Albert Sans', system-ui, sans-serif;

    --fs-xs: clamp(0.75rem, 1.5vw, 0.8rem);
    --fs-sm: clamp(0.85rem, 1.8vw, 0.9rem);
    --fs-base: clamp(0.95rem, 2vw, 1rem);
    --fs-md: clamp(1rem, 2.2vw, 1.1rem);
    --fs-lg: clamp(1.1rem, 2.5vw, 1.25rem);
    --fs-xl: clamp(1.25rem, 3vw, 1.5rem);
    --fs-2xl: clamp(1.5rem, 4vw, 2rem);
    --fs-3xl: clamp(2rem, 5vw, 2.75rem);
    --fs-4xl: clamp(2.5rem, 7vw, 4rem);
    --fs-5xl: clamp(3rem, 9vw, 5.5rem);

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(30,40,32,0.06), 0 1px 2px rgba(30,40,32,0.04);
    --shadow-md: 0 4px 12px rgba(30,40,32,0.08), 0 2px 4px rgba(30,40,32,0.05);
    --shadow-lg: 0 8px 24px rgba(30,40,32,0.10), 0 4px 8px rgba(30,40,32,0.06), 0 1px 2px rgba(30,40,32,0.04);
    --shadow-xl: 0 16px 40px rgba(30,40,32,0.12), 0 8px 16px rgba(30,40,32,0.07), 0 2px 4px rgba(30,40,32,0.04);
    --shadow-accent: 0 4px 20px rgba(122,158,110,0.25), 0 2px 8px rgba(122,158,110,0.15);

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

    --header-h: 80px;
    --header-h-compact: 60px;
  }
}

@layer layout {
  .canvas {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    overflow-x: hidden;
  }

  .gallery__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
  }

  .gallery__container--wide {
    max-width: 1400px;
  }

  .gallery {
    padding: var(--space-20) 0;
  }

  .gallery__header {
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery__label {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(122,158,110,0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
  }

  .gallery__heading {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  .gallery__subtext {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: 1.7;
  }
}

@layer components {

  /* Pace progress bar */
  .pace .pace-progress {
    background: var(--clr-accent) !important;
    height: 3px !important;
  }

  /* ===== HEADER ===== */
  .stage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(245,244,239,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: padding var(--transition-slow), background var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
  }

  .stage-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-5) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding var(--transition-slow);
  }

  .stage-header.is-compact {
    background: rgba(245,244,239,0.97);
    border-color: var(--clr-border-light);
    box-shadow: var(--shadow-sm);
  }

  .stage-header.is-compact .stage-header__inner {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }

  .stage-header.is-compact .stage-header__logo {
    height: 28px;
  }

  .stage-header__brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

  .stage-header__logo {
    height: 36px;
    width: auto;
    transition: height var(--transition-slow);
  }

  .stage-header__name {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    transition: font-size var(--transition-slow);
  }

  .stage-header.is-compact .stage-header__name {
    font-size: var(--fs-lg);
  }

  .stage-header__nav {
    display: none;
    align-items: center;
    gap: var(--space-6);
  }

  .stage-header__link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-text-mid);
    transition: color var(--transition-fast);
    position: relative;
  }

  .stage-header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
  }

  .stage-header__link:hover {
    color: var(--clr-primary);
  }

  .stage-header__link:hover::after {
    width: 100%;
  }

  .stage-header__link--cta {
    background: var(--clr-primary);
    color: #fff;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  }

  .stage-header__link--cta::after { display: none; }

  .stage-header__link--cta:hover {
    background: var(--clr-primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
  }

  .stage-header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .stage-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-primary);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  .stage-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .stage-header__burger.is-open span:nth-child(2) { opacity: 0; }
  .stage-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (min-width: 768px) {
    .stage-header__nav { display: flex; }
    .stage-header__burger { display: none; }
  }

  /* ===== MOBILE DRAWER (Bottom Sheet) ===== */
  .drawer {
    position: fixed;
    inset: 0;
    z-index: 950;
    pointer-events: none;
  }

  .drawer.is-open {
    pointer-events: all;
  }

  .drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30,40,32,0);
    transition: background var(--transition-slow);
  }

  .drawer.is-open .drawer__backdrop {
    background: rgba(30,40,32,0.5);
  }

  .drawer__sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-surface);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    padding: var(--space-4) var(--space-6) var(--space-8);
    transform: translateY(100%);
    transition: transform var(--transition-slow) cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -8px 40px rgba(30,40,32,0.15);
    max-height: 80vh;
    overflow-y: auto;
  }

  .drawer.is-open .drawer__sheet {
    transform: translateY(0);
  }

  .drawer__handle {
    width: 40px;
    height: 4px;
    background: var(--clr-border);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-6);
  }

  .drawer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .drawer__link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    font-size: var(--fs-lg);
    font-weight: var(--fw-medium);
    color: var(--clr-text-mid);
    border-radius: var(--radius-lg);
    transition: background var(--transition-fast), color var(--transition-fast);
    min-height: 52px;
  }

  .drawer__link i {
    width: 20px;
    color: var(--clr-accent);
    font-size: 1rem;
  }

  .drawer__link:hover, .drawer__link:active {
    background: var(--clr-surface-2);
    color: var(--clr-primary);
  }

  .drawer__link--cta {
    background: var(--clr-primary);
    color: #fff;
    margin-top: var(--space-2);
  }

  .drawer__link--cta i { color: #fff; }

  .drawer__link--cta:hover {
    background: var(--clr-primary-light);
    color: #fff;
  }

  /* ===== HERO STAGE ===== */
  .stage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + var(--space-12)) var(--space-6) var(--space-16);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
  }

  .stage__geo {
    position: absolute;
    pointer-events: none;
  }

  .stage__geo--circle-lg {
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    border-radius: 50%;
    border: 1px solid rgba(122,158,110,0.15);
    top: -10%;
    right: -10%;
  }

  .stage__geo--circle-sm {
    width: clamp(150px, 25vw, 300px);
    height: clamp(150px, 25vw, 300px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,158,110,0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
  }

  .stage__geo--line-h {
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122,158,110,0.3), transparent);
    top: 40%;
    right: 0;
  }

  .stage__geo--dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(122,158,110,0.3) 1px, transparent 1px);
    background-size: 15px 15px;
    bottom: 20%;
    right: 5%;
    opacity: 0.6;
  }

  .stage__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }

  .stage__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-5);
  }

  .stage__eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--clr-accent);
    border-radius: var(--radius-full);
  }

  .stage__headline {
    font-family: var(--ff-heading);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary-dark);
    line-height: 1.05;
    margin-bottom: var(--space-6);
  }

  .stage__headline em {
    font-style: italic;
    color: var(--clr-accent);
  }

  .stage__subline {
    font-size: var(--fs-lg);
    color: var(--clr-text-mid);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: var(--space-8);
  }

  .stage__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
  }

  .stage__visual {
    display: flex;
    justify-content: center;
  }

  .stage__image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: visible;
    max-width: 480px;
    width: 100%;
  }

  .stage__hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
  }

  .stage__image-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-3) var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: var(--shadow-lg);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
  }

  .stage__image-badge i {
    color: var(--clr-accent);
    font-size: 1.1rem;
  }

  .stage__scroll-hint {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    letter-spacing: 0.08em;
    animation: scrollBounce 2s ease-in-out infinite;
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  @media (min-width: 900px) {
    .stage__inner {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* ===== BUTTONS ===== */
  .spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-7);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    min-height: 48px;
    white-space: nowrap;
  }

  .spotlight-btn--primary {
    background: var(--clr-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
  }

  .spotlight-btn--primary:hover {
    background: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .spotlight-btn--ghost {
    background: transparent;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
  }

  .spotlight-btn--ghost:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
  }

  .spotlight-btn--full {
    width: 100%;
    justify-content: center;
  }

  /* ===== INTRO SECTION ===== */
  .gallery--intro {
    background: var(--clr-surface);
  }

  .gallery__intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }

  .gallery__intro-text p {
    color: var(--clr-text-mid);
    margin-bottom: var(--space-4);
    font-size: var(--fs-md);
    line-height: 1.75;
  }

  .gallery__intro-text p:last-child { margin-bottom: 0; }

  .gallery__intro-text h2 {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: var(--space-6);
  }

  .gallery__img-stack {
    position: relative;
    height: 380px;
  }

  .gallery__img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
  }

  .gallery__img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--clr-surface);
  }

  @media (min-width: 768px) {
    .gallery__intro-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* ===== KURSE SECTION ===== */
  .gallery--kurse {
    background: var(--clr-bg);
    position: relative;
    overflow: hidden;
  }

  .gallery__geo--rect {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(122,158,110,0.12);
    border-radius: var(--radius-lg);
    top: 10%;
    right: -60px;
    transform: rotate(15deg);
    pointer-events: none;
  }

  .shelf--kurse {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  @media (min-width: 600px) {
    .shelf--kurse { grid-template-columns: repeat(2, 1fr); }
  }

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

  .shelf__card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--clr-border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
  }

  .shelf__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
  }

  .shelf__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-accent-light);
  }

  .shelf__card:hover::before {
    transform: scaleX(1);
  }

  .shelf__card-icon {
    width: 52px;
    height: 52px;
    background: rgba(122,158,110,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    transition: background var(--transition-base);
  }

  .shelf__card:hover .shelf__card-icon {
    background: rgba(122,158,110,0.18);
  }

  .shelf__card-icon i {
    font-size: 1.3rem;
    color: var(--clr-accent);
  }

  .shelf__card-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-bottom: var(--space-3);
  }

  .shelf__card-text {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-5);
  }

  .shelf__card-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-secondary);
    background: rgba(200,169,110,0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
  }

  /* ===== PROZESS SECTION ===== */
  .gallery--prozess {
    background: var(--clr-primary-dark);
    color: #fff;
  }

  .gallery--prozess .gallery__label {
    color: var(--clr-accent-light);
    background: rgba(168,196,154,0.15);
  }

  .gallery--prozess .gallery__heading {
    color: #fff;
  }

  .shelf--prozess {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  @media (min-width: 700px) {
    .shelf--prozess { grid-template-columns: repeat(2, 1fr); }
  }

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

  .shelf__step {
    position: relative;
    padding: var(--space-6);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition-base), transform var(--transition-base);
  }

  .shelf__step:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
  }

  .shelf__step-number {
    font-family: var(--ff-heading);
    font-size: 3.5rem;
    font-weight: var(--fw-bold);
    color: rgba(122,158,110,0.2);
    line-height: 1;
    margin-bottom: var(--space-4);
  }

  .shelf__step-connector {
    display: none;
  }

  .shelf__step-icon {
    width: 48px;
    height: 48px;
    background: rgba(122,158,110,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
  }

  .shelf__step-icon i {
    font-size: 1.2rem;
    color: var(--clr-accent-light);
  }

  .shelf__step-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: var(--space-3);
  }

  .shelf__step-text {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
  }

  /* ===== KARUSSELL SECTION ===== */
  .gallery--karussell {
    background: var(--clr-surface);
    overflow: hidden;
  }

  .shelf--karussell {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--space-4) var(--space-6) var(--space-8);
    scroll-padding: var(--space-6);
  }

  .shelf--karussell::-webkit-scrollbar {
    display: none;
  }

  .shelf__krauter-card {
    flex: 0 0 clamp(280px, 80vw, 380px);
    scroll-snap-align: start;
    background: var(--clr-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--clr-border-light);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
  }

  .shelf__krauter-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
  }

  .shelf__krauter-img-wrap {
    height: 220px;
    overflow: hidden;
  }

  .shelf__krauter-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }

  .shelf__krauter-card:hover .shelf__krauter-img-wrap img {
    transform: scale(1.04);
  }

  .shelf__krauter-body {
    padding: var(--space-6);
  }

  .shelf__krauter-latin {
    display: block;
    font-size: var(--fs-xs);
    font-style: italic;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-2);
  }

  .shelf__krauter-name {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    margin-bottom: var(--space-3);
  }

  .shelf__krauter-desc {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-5);
  }

  .shelf__krauter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .shelf__krauter-tags span {
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--clr-accent-dark);
    background: rgba(122,158,110,0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
  }

  .shelf__karussell-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-6);
    padding: 0 var(--space-6);
  }

  .shelf__karussell-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
  }

  .shelf__karussell-btn:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
  }

  .shelf__karussell-dots {
    display: flex;
    gap: var(--space-2);
  }

  .shelf__karussell-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
  }

  .shelf__karussell-dot.is-active {
    background: var(--clr-accent);
    width: 24px;
    border-radius: var(--radius-full);
  }

  /* ===== REGIONEN SECTION ===== */
  .gallery--regionen {
    background: var(--clr-bg-alt);
  }

  .shelf--regionen {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: start;
  }

  @media (min-width: 768px) {
    .shelf--regionen { grid-template-columns: 1fr 1fr; }
  }

  .shelf__region-visual {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }

  .shelf__region-geo--bg {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(122,158,110,0.1);
    top: -60px;
    right: -60px;
    pointer-events: none;
  }

  .shelf__region-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .shelf__region-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--clr-bg);
    transition: background var(--transition-fast);
  }

  .shelf__region-item:hover {
    background: var(--clr-bg-alt);
  }

  .shelf__region-item--primary {
    background: rgba(122,158,110,0.08);
    border: 1px solid rgba(122,158,110,0.2);
  }

  .shelf__region-item i {
    color: var(--clr-accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .shelf__region-item div {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }

  .shelf__region-item strong {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
  }

  .shelf__region-item span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
  }

  .shelf__region-info h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-bottom: var(--space-5);
  }

  .shelf__region-info p {
    font-size: var(--fs-md);
    color: var(--clr-text-mid);
    line-height: 1.75;
    margin-bottom: var(--space-5);
  }

  .shelf__region-contact-box {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    border: 1px solid var(--clr-border-light);
    margin-top: var(--space-6);
  }

  .shelf__region-contact-box i {
    font-size: 1.2rem;
    color: var(--clr-accent);
  }

  .shelf__region-contact-box div {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }

  .shelf__region-contact-box span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
  }

  .shelf__region-contact-box a {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    transition: color var(--transition-fast);
  }

  .shelf__region-contact-box a:hover {
    color: var(--clr-accent);
  }

  /* ===== WISSEN SECTION ===== */
  .gallery--wissen {
    background: var(--clr-surface);
  }

  .shelf--wissen {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  @media (min-width: 600px) {
    .shelf--wissen { grid-template-columns: repeat(2, 1fr); }
  }

  .shelf__wissen-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: var(--clr-bg);
    border: 1px solid var(--clr-border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .shelf__wissen-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .shelf__wissen-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(122,158,110,0.15), rgba(200,169,110,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
  }

  .shelf__wissen-icon i {
    font-size: 1.2rem;
    color: var(--clr-secondary);
  }

  .shelf__wissen-card h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-bottom: var(--space-3);
  }

  .shelf__wissen-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.75;
  }

  /* ===== KONTAKT SECTION ===== */
  .gallery--kontakt {
    background: var(--clr-bg);
  }

  .shelf--kontakt {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: start;
  }

  @media (min-width: 900px) {
    .shelf--kontakt { grid-template-columns: 1fr 1.4fr; }
  }

  .shelf__kontakt-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .shelf__kontakt-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border-light);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  }

  .shelf__kontakt-detail:hover {
    border-color: var(--clr-accent-light);
    box-shadow: var(--shadow-sm);
  }

  .shelf__kontakt-detail i {
    color: var(--clr-accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
  }

  .shelf__kontakt-detail div {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }

  .shelf__kontakt-detail strong {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
  }

  .shelf__kontakt-detail span,
  .shelf__kontakt-detail a {
    font-size: var(--fs-sm);
    color: var(--clr-text-mid);
    line-height: 1.5;
  }

  .shelf__kontakt-detail a {
    transition: color var(--transition-fast);
  }

  .shelf__kontakt-detail a:hover {
    color: var(--clr-accent);
  }

  .shelf__kontakt-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
  }

  /* ===== CONTACT FORM ===== */
  .spotlight-form {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-md);
  }

  .spotlight-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-5);
  }

  @media (min-width: 500px) {
    .spotlight-form__row { grid-template-columns: 1fr 1fr; }
  }

  .spotlight-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
  }

  .spotlight-form__row .spotlight-form__field {
    margin-bottom: 0;
  }

  .spotlight-form__field label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-mid);
  }

  .spotlight-form__field label span {
    color: var(--clr-accent);
  }

  .spotlight-form__field input,
  .spotlight-form__field textarea {
    padding: var(--space-3) var(--space-4);
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    color: var(--clr-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 48px;
  }

  .spotlight-form__field textarea {
    resize: vertical;
    min-height: 120px;
  }

  .spotlight-form__field input:focus,
  .spotlight-form__field textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(122,158,110,0.15);
  }

  .spotlight-form__field input::placeholder,
  .spotlight-form__field textarea::placeholder {
    color: var(--clr-text-muted);
    opacity: 0.7;
  }

  .spotlight-form__privacy {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.6;
  }

  .spotlight-form__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--clr-accent);
    cursor: pointer;
  }

  .spotlight-form__privacy a {
    color: var(--clr-accent);
    text-decoration: underline;
    transition: color var(--transition-fast);
  }

  .spotlight-form__privacy a:hover {
    color: var(--clr-accent-dark);
  }

  /* ===== FOOTER ===== */
  .stage-footer {
    background: var(--clr-primary-dark);
    color: rgba(255,255,255,0.8);
  }

  .stage-footer__stats {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stage-footer__stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-5) var(--space-6);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: center;
  }

  @media (min-width: 600px) {
    .stage-footer__stats-inner { justify-content: space-around; }
  }

  .stage-footer__stat {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: rgba(255,255,255,0.7);
  }

  .stage-footer__stat i {
    color: var(--clr-accent-light);
    font-size: 1rem;
  }

  .stage-footer__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-16) var(--space-6) var(--space-8);
  }

  .stage-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
  }

  @media (min-width: 600px) {
    .stage-footer__inner { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 900px) {
    .stage-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  }

  .stage-footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-4);
    filter: brightness(0) invert(1) opacity(0.9);
  }

  .stage-footer__brand p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    max-width: 260px;
  }

  .stage-footer__brand address {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
  }

  .stage-footer__brand address a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
  }

  .stage-footer__brand address a:hover {
    color: var(--clr-accent-light);
  }

  .stage-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .stage-footer__links h4 {
    font-family: var(--ff-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-2);
  }

  .stage-footer__links a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.55);
    transition: color var(--transition-fast);
  }

  .stage-footer__links a:hover {
    color: var(--clr-accent-light);
  }

  .stage-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--space-6);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.4);
  }

  /* ===== REVEAL ANIMATION ===== */
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== COOKIE CONSENT ===== */
  .stage-curtain {
    position: fixed;
    bottom: var(--space-5);
    right: var(--space-5);
    z-index: 1000;
  }

  .stage-curtain__bell {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border: none;
    transition: transform var(--transition-spring), box-shadow var(--transition-base);
    position: relative;
  }

  .stage-curtain__bell:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-xl);
  }

  .stage-curtain__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--clr-secondary);
    border-radius: 50%;
    border: 2px solid var(--clr-bg);
    transition: opacity var(--transition-base);
  }

  .stage-curtain__badge.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .stage-curtain__panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-surface);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    padding: var(--space-6) var(--space-6) calc(var(--space-6) + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 40px rgba(30,40,32,0.15);
    transform: translateY(100%);
    transition: transform var(--transition-slow) cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1001;
    max-height: 90vh;
    overflow-y: auto;
  }

  .stage-curtain__panel.is-open {
    transform: translateY(0);
  }

  .stage-curtain__panel-handle {
    width: 40px;
    height: 4px;
    background: var(--clr-border);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-5);
  }

  .stage-curtain__panel-inner {
    max-width: 560px;
    margin: 0 auto;
  }

  .stage-curtain__panel h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-bottom: var(--space-3);
  }

  .stage-curtain__panel p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-5);
  }

  .stage-curtain__toggles {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }

  .stage-curtain__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    gap: var(--space-4);
  }

  .stage-curtain__toggle-info {
    flex: 1;
  }

  .stage-curtain__toggle-info strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-bottom: var(--space-1);
  }

  .stage-curtain__toggle-info span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
  }

  .stage-curtain__switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
  }

  .stage-curtain__switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

  .stage-curtain__slider {
    position: absolute;
    inset: 0;
    background: var(--clr-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-base);
  }

  .stage-curtain__slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-sm);
  }

  .stage-curtain__switch input:checked + .stage-curtain__slider {
    background: var(--clr-accent);
  }

  .stage-curtain__switch input:checked + .stage-curtain__slider::before {
    transform: translateX(20px);
  }

  .stage-curtain__switch input:disabled + .stage-curtain__slider {
    background: var(--clr-accent);
    opacity: 0.7;
    cursor: not-allowed;
  }

  .stage-curtain__actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
  }

  .stage-curtain__actions button {
    flex: 1;
    min-width: 120px;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    min-height: 48px;
    transition: all var(--transition-base);
  }

  .stage-curtain__btn-accept {
    background: var(--clr-primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
  }

  .stage-curtain__btn-accept:hover {
    background: var(--clr-primary-light);
    box-shadow: var(--shadow-md);
  }

  .stage-curtain__btn-save {
    background: var(--clr-surface);
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-border);
  }

  .stage-curtain__btn-save:hover {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-sm);
  }

  .stage-curtain__btn-reject {
    background: transparent;
    color: var(--clr-text-muted);
    font-size: var(--fs-xs);
    text-decoration: underline;
    flex: none;
    width: 100%;
    min-height: 36px;
    padding: var(--space-2);
  }

  .stage-curtain__btn-reject:hover {
    color: var(--clr-text);
  }

  /* ===== LEGAL PAGE STYLES ===== */
  .canvas--legal {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .stage--legal {
    background: var(--clr-bg);
    padding: calc(var(--header-h) + var(--space-16)) var(--space-6) var(--space-16);
    flex: 1;
  }

  .stage--legal .gallery__container {
    max-width: 860px;
  }

  .legal-eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-4);
  }

  .legal-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    line-height: 1.15;
    margin-bottom: var(--space-3);
  }

  .legal-meta {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--clr-border-light);
  }

  .legal-body {
    font-size: var(--fs-md);
    line-height: 1.8;
    color: var(--clr-text-mid);
  }

  .legal-body h2 {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-top: var(--space-12);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--clr-border-light);
  }

  .legal-body h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
  }

  .legal-body p {
    margin-bottom: var(--space-5);
  }

  .legal-body ul, .legal-body ol {
    margin-bottom: var(--space-5);
    padding-left: var(--space-6);
  }

  .legal-body ul li { list-style: disc; margin-bottom: var(--space-2); }
  .legal-body ol li { list-style: decimal; margin-bottom: var(--space-2); }

  .legal-body a {
    color: var(--clr-accent);
    text-decoration: underline;
    transition: color var(--transition-fast);
  }

  .legal-body a:hover { color: var(--clr-accent-dark); }

  .legal-term {
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    border-bottom: 1.5px dotted var(--clr-accent);
    cursor: help;
  }

  .legal-definition {
    background: rgba(122,158,110,0.07);
    border-left: 3px solid var(--clr-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-4) var(--space-6);
    margin: var(--space-5) 0;
    font-size: var(--fs-sm);
    color: var(--clr-text-mid);
  }

  .legal-definition strong {
    display: block;
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    margin-bottom: var(--space-1);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-6);
    font-size: var(--fs-sm);
  }

  .legal-table th {
    background: var(--clr-primary);
    color: #fff;
    padding: var(--space-3) var(--space-4);
    text-align: left;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-xs);
    letter-spacing: 0.05em;
  }

  .legal-table td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--clr-border-light);
    color: var(--clr-text-mid);
    vertical-align: top;
  }

  .legal-table tr:nth-child(even) td {
    background: var(--clr-bg);
  }

  .legal-table tr:hover td {
    background: rgba(122,158,110,0.04);
  }

  /* ===== THANKS PAGE ===== */
  .stage--thanks {
    min-height: calc(100vh - var(--header-h) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + var(--space-16)) var(--space-6) var(--space-16);
    background: var(--clr-bg);
  }

  .stage--thanks .spotlight {
    text-align: center;
    max-width: 560px;
  }

  .stage--thanks .spotlight__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(122,158,110,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
  }

  .stage--thanks .spotlight__icon i {
    font-size: 2rem;
    color: var(--clr-accent);
  }

  .stage--thanks h1 {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    margin-bottom: var(--space-4);
  }

  .stage--thanks p {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }
}

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

  .text-center { text-align: center; }
  .mt-auto { margin-top: auto; }

  @media (min-width: 768px) {
    .hide-desktop { display: none; }
  }

  @media (max-width: 767px) {
    .hide-mobile { display: none; }
  }
}