/* =========================================================
   SUNFLOWER TRAIL – DARK PREMIUM DESIGN SYSTEM
   CSS Custom Properties + color-mix() palette generation
   ========================================================= */


:root {
  
  --color-base: oklch(14% 0.02 260);
  --color-primary: oklch(62% 0.18 52);
  --color-accent: oklch(72% 0.15 52);
  --color-surface: oklch(18% 0.025 260);
  --color-surface-2: oklch(22% 0.028 260);
  --color-surface-3: oklch(28% 0.03 260);

  
  --color-primary-dim: color-mix(in oklch, var(--color-primary), black 30%);
  --color-primary-glow: color-mix(in oklch, var(--color-primary), white 20%);
  --color-accent-subtle: color-mix(in oklch, var(--color-accent), var(--color-surface) 70%);
  --color-surface-hover: color-mix(in oklch, var(--color-surface-2), white 5%);
  --color-border: color-mix(in oklch, var(--color-surface-3), white 10%);
  --color-border-subtle: color-mix(in oklch, var(--color-surface-2), white 5%);

  
  --color-text-primary: oklch(93% 0.01 260);
  --color-text-secondary: oklch(72% 0.015 260);
  --color-text-muted: oklch(55% 0.012 260);
  --color-text-inverse: oklch(12% 0.02 260);

  
  --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.4), 0 1px 2px oklch(0% 0 0 / 0.3);
  --shadow-md: 0 4px 12px oklch(0% 0 0 / 0.5), 0 2px 6px oklch(0% 0 0 / 0.3);
  --shadow-lg: 0 8px 32px oklch(0% 0 0 / 0.6), 0 4px 16px oklch(0% 0 0 / 0.4);
  --shadow-glow: 0 0 24px color-mix(in oklch, var(--color-primary), transparent 60%);
  --shadow-card: 0 2px 8px oklch(0% 0 0 / 0.4), 0 8px 24px oklch(0% 0 0 / 0.3), 0 0 0 1px var(--color-border);

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

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  
  --nav-height: 72px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--color-base);
  color: var(--color-text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-glow);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.u-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.u-section-pad {
  padding-block: var(--space-2xl);
}

.u-hidden {
  display: none !important;
}

.u-text-center {
  text-align: center;
}

/* =========================================================
   COOKIE BAR (inline above nav)
   ========================================================= */
#cookie-bar {
  width: 100%;
  background: color-mix(in oklch, var(--color-surface-2), var(--color-primary) 8%);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  z-index: 999;
  bottom: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow), opacity var(--transition-slow);
}

#cookie-bar.is-visible {
  max-height: 120px;
}

#cookie-bar.is-hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.c-cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem var(--space-md);
  flex-wrap: wrap;
  max-width: 1200px;
  margin-inline: auto;
}

.c-cookie-bar__text {
  flex: 1;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  min-width: 200px;
}

.c-cookie-bar__text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.c-cookie-bar__actions {
  display: flex;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.c-cookie-bar__btn {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.c-cookie-bar__btn--accept {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.c-cookie-bar__btn--accept:hover {
  background: var(--color-primary-glow);
  box-shadow: var(--shadow-glow);
}

.c-cookie-bar__btn--decline {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

.c-cookie-bar__btn--decline:hover {
  color: var(--color-text-secondary);
  border-color: var(--color-border-subtle);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
  background: color-mix(in oklch, var(--color-base), transparent 10%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  height: var(--nav-height);
}

.c-nav.is-visible {
  transform: translateY(0);
}

.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  gap: var(--space-md);
}

.c-nav__logo img {
  height: 36px;
  width: auto;
}

.c-nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .c-nav__links {
    display: flex;
  }
}

.c-nav__link {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.c-nav__link:hover,
.c-nav__link.is-active {
  color: var(--color-text-primary);
  background: var(--color-surface-hover);
}

.c-nav__link.is-active {
  color: var(--color-primary);
}

.c-nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.c-nav__burger:hover {
  background: var(--color-surface-hover);
}

.c-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

@media (min-width: 900px) {
  .c-nav__burger {
    display: none;
  }
}

/* =========================================================
   MOBILE MENU (slides from LEFT)
   ========================================================= */
.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s var(--transition-slow);
}

.c-mobile-menu.is-open {
  pointer-events: all;
  visibility: visible;
  transition: visibility 0s;
}

.c-mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 340px;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.c-mobile-menu.is-open .c-mobile-menu__panel {
  transform: translateX(0);
}

.c-mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 80%;
  right: 0;
  bottom: 0;
  background: oklch(0% 0 0 / 0.5);
  opacity: 0;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(2px);
}

.c-mobile-menu.is-open .c-mobile-menu__overlay {
  opacity: 1;
}

.c-mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.c-mobile-menu__close:hover {
  color: var(--color-text-primary);
  background: var(--color-surface-hover);
}

.c-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-mobile-menu__link {
  display: block;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem var(--space-sm);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-base);
  transform: translateX(-20px);
  opacity: 0;
}

.c-mobile-menu.is-open .c-mobile-menu__link {
  transform: translateX(0);
  opacity: 1;
}

.c-mobile-menu.is-open .c-mobile-menu__links li:nth-child(1) .c-mobile-menu__link { transition-delay: 80ms; }
.c-mobile-menu.is-open .c-mobile-menu__links li:nth-child(2) .c-mobile-menu__link { transition-delay: 130ms; }
.c-mobile-menu.is-open .c-mobile-menu__links li:nth-child(3) .c-mobile-menu__link { transition-delay: 180ms; }
.c-mobile-menu.is-open .c-mobile-menu__links li:nth-child(4) .c-mobile-menu__link { transition-delay: 230ms; }
.c-mobile-menu.is-open .c-mobile-menu__links li:nth-child(5) .c-mobile-menu__link { transition-delay: 280ms; }

.c-mobile-menu__link:hover {
  color: var(--color-text-primary);
  background: var(--color-surface-hover);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition-base);
  min-height: 48px;
  white-space: nowrap;
}

.c-btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.c-btn--primary:hover {
  background: var(--color-primary-glow);
  border-color: var(--color-primary-glow);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.c-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.c-btn--outline:hover {
  background: color-mix(in oklch, var(--color-primary), transparent 85%);
  color: var(--color-primary-glow);
  box-shadow: var(--shadow-glow);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.s-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

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

.s-hero__image-side {
  position: relative;
  min-height: 40vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .s-hero__image-side {
    min-height: 100svh;
  }
}

.s-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.s-hero__overlay-side {
  position: relative;
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--color-base), var(--color-primary) 8%) 0%,
    var(--color-surface) 60%,
    color-mix(in oklch, var(--color-surface-2), var(--color-primary) 5%) 100%
  );
  display: flex;
  align-items: center;
  padding: var(--space-2xl) var(--space-lg);
  clip-path: none;
}

@media (min-width: 768px) {
  .s-hero__overlay-side {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    padding-left: calc(var(--space-lg) + 2rem);
  }
}

.s-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 560px;
}

.s-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.s-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.s-hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
}

.s-hero__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.s-hero__subline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 460px;
}

#hero-sentinel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* =========================================================
   INTRO SECTION
   ========================================================= */
.s-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.s-intro__headline {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.s-intro__text p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.s-intro__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* =========================================================
   BENTO GRID
   ========================================================= */
.s-bento {
  background: linear-gradient(180deg, transparent 0%, color-mix(in oklch, var(--color-surface), transparent 50%) 50%, transparent 100%);
}

.s-bento__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.s-bento__headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.s-bento__subline {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

.s-bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .s-bento__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .s-bento__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .c-bento-card--wide {
    grid-column: span 2;
  }

  .c-bento-card--tall {
    grid-row: span 2;
  }
}

.c-bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  transform-style: preserve-3d;
  will-change: transform;
}

.c-bento-card:hover {
  border-color: color-mix(in oklch, var(--color-primary), var(--color-border) 60%);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.c-bento-card--accent {
  background: color-mix(in oklch, var(--color-surface), var(--color-primary) 12%);
  border-color: color-mix(in oklch, var(--color-primary), transparent 50%);
}

.c-bento-card__icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.c-bento-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.c-bento-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* =========================================================
   WEEKS HORIZONTAL SCROLL SECTION
   ========================================================= */
.s-weeks {
  background: var(--color-surface);
  overflow: hidden;
}

.s-weeks__headline {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.s-weeks__scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  cursor: grab;
  user-select: none;
  padding-bottom: var(--space-sm);
}

.s-weeks__scroll-wrapper:active {
  cursor: grabbing;
}

.s-weeks__scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.s-weeks__scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.s-weeks__scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.s-weeks__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  padding-bottom: var(--space-xs);
}

.c-week-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

@media (min-width: 600px) {
  .c-week-card {
    width: 360px;
  }
}

.c-week-card:hover {
  border-color: color-mix(in oklch, var(--color-primary), var(--color-border) 50%);
  box-shadow: var(--shadow-md);
}

.c-week-card__number {
  font-size: 3rem;
  font-weight: 800;
  color: color-mix(in oklch, var(--color-primary), transparent 50%);
  line-height: 1;
  letter-spacing: -0.04em;
}

.c-week-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.c-week-card__text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  flex: 1;
}

.c-week-card__tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-accent-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  align-self: flex-start;
  margin-top: auto;
}

.s-weeks__scroll-hint {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================================
   ABOUT / FORMAT SECTION
   ========================================================= */
.s-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.s-about__image-wrap {
  position: relative;
}

.s-about__image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.s-about__image-badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  min-width: 80px;
  box-shadow: var(--shadow-md);
}

.s-about__image-badge span {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}

.s-about__image-badge small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
}

.s-about__headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-about__content p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.s-about__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.s-about__detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.s-about__detail i {
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =========================================================
   APPROACH SECTION
   ========================================================= */
.s-approach {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
}

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

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

.s-approach__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.s-approach__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-approach__text-block p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.s-faq__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.s-faq__headline {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.s-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-width: 800px;
  margin-inline: auto;
}

.c-faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.c-faq-item:hover {
  border-color: color-mix(in oklch, var(--color-primary), var(--color-border) 60%);
}

.c-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  min-height: 56px;
  transition: color var(--transition-fast);
}

.c-faq-item__trigger:hover {
  color: var(--color-primary);
}

.c-faq-item__trigger[aria-expanded="true"] {
  color: var(--color-primary);
}

.c-faq-item__trigger i {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-base), color var(--transition-fast);
}

.c-faq-item__trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.c-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  padding: 0 var(--space-lg);
}

.c-faq-item__body.is-open {
  max-height: 400px;
  padding: 0 var(--space-lg) var(--space-md);
}

.c-faq-item__body p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.c-faq-item__body p a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.s-cta {
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--color-surface-2), var(--color-primary) 10%) 0%,
    var(--color-surface-2) 100%
  );
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.s-cta__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.s-cta__headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-cta__text {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.c-page-header {
  background: linear-gradient(180deg,
    color-mix(in oklch, var(--color-surface), var(--color-primary) 6%) 0%,
    var(--color-surface) 100%
  );
  border-bottom: 1px solid var(--color-border);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.c-page-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: var(--space-md);
  line-height: 1.1;
}

.c-page-header__sub {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.c-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.c-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.c-breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--color-border);
}

.c-breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.c-breadcrumb a:hover {
  color: var(--color-primary);
}

.c-breadcrumb [aria-current="page"] {
  color: var(--color-text-secondary);
}

/* =========================================================
   INNER PAGE BASE
   ========================================================= */
.s-inner-page {
  padding-top: var(--space-xl);
}

/* =========================================================
   STORY PAGE (wie-die-idee-entstand)
   ========================================================= */
.s-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.s-story__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.s-story__image-full,
.s-story__image-pair {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.s-story__image-full img,
.s-story__image-pair img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.s-story__block h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.s-story__block p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.s-story__cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.s-story__cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.s-story__cta p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.s-story__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-self: start;
}

@media (min-width: 900px) {
  .s-story__sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
  }
}

.c-sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.c-sidebar-card--accent {
  background: color-mix(in oklch, var(--color-surface), var(--color-primary) 10%);
  border-color: color-mix(in oklch, var(--color-primary), transparent 50%);
}

.c-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.c-sidebar-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-sidebar-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.c-sidebar-card li i {
  color: var(--color-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.c-sidebar-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* =========================================================
   RECORDED COURSES PAGE
   ========================================================= */
.s-recorded__intro {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

.s-recorded__lead {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.s-recorded__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .s-recorded__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-recorded-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  transform-style: preserve-3d;
}

.c-recorded-card:hover {
  border-color: color-mix(in oklch, var(--color-primary), var(--color-border) 50%);
  box-shadow: var(--shadow-card);
}

.c-recorded-card__icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.c-recorded-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-recorded-card__content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.c-recorded-card__meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-recorded-card__content p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.c-recorded-card__tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-accent-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: var(--space-xs);
}

.s-recorded__access {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.s-recorded__access-inner {
  max-width: 600px;
}

.s-recorded__access h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.s-recorded__access p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.s-recorded__access .c-btn {
  margin-top: var(--space-md);
}

/* =========================================================
   STORNO PAGE
   ========================================================= */
.s-storno__wrap {
  max-width: 800px;
}

.s-storno__intro {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.s-storno__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

.s-storno__section:last-child {
  border-bottom: none;
}

.s-storno__section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.s-storno__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-accent-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.s-storno__section p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.s-storno__table-wrap {
  overflow-x: auto;
  margin-block: var(--space-md);
}

.s-storno__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.s-storno__table th,
.s-storno__table td {
  padding: 0.85rem var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.s-storno__table th {
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.s-storno__table td {
  color: var(--color-text-secondary);
}

.s-storno__table tr:last-child td {
  border-bottom: none;
}

.s-storno__contact {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.s-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

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

.s-contact__form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.s-contact__form-intro {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}


.c-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.c-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.c-form__label span {
  color: var(--color-primary);
}

.c-form__input {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0.85rem var(--space-sm);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.c-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-primary), transparent 75%);
}

.c-form__input::placeholder {
  color: var(--color-text-muted);
}

.c-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.c-form__group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
}

.c-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.c-form__check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.c-form__check-label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.c-form__error {
  color: oklch(65% 0.2 25);
  font-size: 0.85rem;
  min-height: 1.2em;
}

.c-form__submit {
  align-self: flex-start;
}


.c-contact-info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.c-contact-info h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.c-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--color-border-subtle);
}

.c-contact-info__item:last-child {
  border-bottom: none;
}

.c-contact-info__item i {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.c-contact-info__item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.c-contact-info__item address,
.c-contact-info__item a,
.c-contact-info__item p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.c-building-info {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.c-building-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-primary);
}

.c-building-info h3 i {
  color: var(--color-primary);
}

.c-building-info p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.c-building-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-block: var(--space-sm);
}

.c-building-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.c-building-info li i {
  color: var(--color-primary);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.c-building-info__note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-sm);
}


.s-contact__map {
  margin-top: var(--space-xl);
}

.s-contact__map-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.s-contact__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.s-contact__map-wrap iframe {
  display: block;
  filter: grayscale(30%) brightness(0.85) contrast(1.05);
}

/* =========================================================
   THANKS PAGE
   ========================================================= */
.s-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--nav-height) - 200px);
  padding: var(--space-2xl) var(--space-md);
}

.s-thanks__inner {
  text-align: center;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.s-thanks__anim {
  width: 80px;
  height: 80px;
  color: var(--color-primary);
}

.s-thanks__svg {
  width: 100%;
  height: 100%;
}

.s-thanks__circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: draw-circle 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.s-thanks__check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw-check 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}

@keyframes draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.s-thanks__headline {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fade-up 0.5s ease 1.3s forwards;
}

.s-thanks__text {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0;
  animation: fade-up 0.5s ease 1.5s forwards;
}

.s-thanks .c-btn {
  opacity: 0;
  animation: fade-up 0.5s ease 1.7s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   LEGAL PAGES (two-column)
   ========================================================= */
.s-legal-page {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
}

.s-legal__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .s-legal__layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.s-legal__sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

@media (min-width: 900px) {
  .s-legal__sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
  }
}

.s-legal__sidebar h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.s-legal__sidebar ol,
.s-legal__sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.s-legal__sidebar li {
  list-style: none;
}

.s-legal__sidebar a {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  line-height: 1.4;
}

.s-legal__sidebar a:hover {
  color: var(--color-primary);
  background: var(--color-accent-subtle);
}

.s-legal__sidebar-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.s-legal__sidebar-blocks a {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.s-legal__sidebar-blocks a:hover {
  color: var(--color-primary);
  background: var(--color-accent-subtle);
}

.s-legal__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.s-legal__content section {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

.s-legal__content section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.s-legal__content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.s-legal__content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: var(--space-md);
  color: var(--color-text-secondary);
}

.s-legal__content p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.s-legal__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.s-legal__block {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

.s-legal__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.s-legal__block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.s-legal__block p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.s-legal__block a {
  color: var(--color-primary);
  text-decoration: underline;
}

.s-legal__cookie-table {
  overflow-x: auto;
  margin-block: var(--space-md);
}

.s-legal__cookie-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.s-legal__cookie-table th,
.s-legal__cookie-table td {
  padding: 0.65rem var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.s-legal__cookie-table th {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.s-legal__cookie-table td {
  color: var(--color-text-secondary);
}

.s-legal__cookie-table code {
  background: var(--color-surface-3);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-family: monospace;
  color: var(--color-primary);
}

/* =========================================================
   IMPRESSUM PAGE
   ========================================================= */
.s-impressum__wrap {
  max-width: 900px;
}

.s-impressum__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

.s-impressum__section:last-child {
  border-bottom: none;
}

.s-impressum__section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.s-impressum__section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
}

.s-impressum__section p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.s-impressum__section a {
  color: var(--color-primary);
}

.s-impressum__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-block: var(--space-sm);
}

.s-impressum__table th,
.s-impressum__table td {
  padding: 0.65rem var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--color-border-subtle);
  vertical-align: top;
}

.s-impressum__table th {
  width: 40%;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
}

.s-impressum__table td {
  color: var(--color-text-secondary);
}

.s-impressum__law-list {
  list-style: disc;
  padding-left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.s-impressum__law-list li {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  list-style: disc;
}

/* =========================================================
   FOOTER
   ========================================================= */
.c-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.c-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
}

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

.c-footer__logo {
  margin-bottom: var(--space-sm);
}

.c-footer__tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 240px;
}

.c-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .c-footer__nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.c-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-footer__col a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.c-footer__col a:hover {
  color: var(--color-primary);
}

.c-footer__col address p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.c-footer__col address a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.c-footer__sep {
  height: 1px;
  background: var(--color-border-subtle);
}

.c-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-block: var(--space-md);
}

.c-footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.c-footer__legal-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.c-footer__legal-links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.c-footer__legal-links a:hover {
  color: var(--color-primary);
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.u-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.u-reveal-delay-1 { transition-delay: 80ms; }
.u-reveal-delay-2 { transition-delay: 160ms; }
.u-reveal-delay-3 { transition-delay: 240ms; }
.u-reveal-delay-4 { transition-delay: 320ms; }

/* =========================================================
   INTL-TEL-INPUT DARK THEME OVERRIDES
   ========================================================= */
.iti__flag-container {
  background: transparent;
}

.iti__selected-flag {
  background: var(--color-surface) !important;
  border-right: 1px solid var(--color-border);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
  background: var(--color-surface-hover) !important;
}

.iti__country-list {
  background: var(--color-surface-2) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  color: var(--color-text-primary) !important;
}

.iti__country.iti__highlight {
  background: var(--color-surface-hover) !important;
}

.iti__dial-code {
  color: var(--color-text-muted) !important;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 639px) {
  .u-section-pad {
    padding-block: var(--space-xl);
  }

  .s-bento__grid {
    grid-template-columns: 1fr;
  }

  .s-about__details {
    grid-template-columns: 1fr;
  }

  .c-footer__nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .s-storno__table th,
  .s-storno__table td {
    padding: 0.65rem var(--space-sm);
    font-size: 0.82rem;
  }

  .s-impressum__table th {
    width: 35%;
    font-size: 0.75rem;
  }

  .s-legal__layout {
    grid-template-columns: 1fr;
  }

  .s-story__grid {
    grid-template-columns: 1fr;
  }

  .s-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .s-hero__content {
    gap: var(--space-sm);
  }

  .c-footer__nav-grid {
    grid-template-columns: 1fr;
  }

  .c-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .c-nav,
  .c-mobile-menu,
  #cookie-bar,
  .c-footer__sep,
  .c-btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}