/* ============================================
   Reiseleiter-Akademie Wien — Stylesheet
   ============================================ */

:root {
  /* Warm, travel-inspired palette */
  --color-cream: #FBF7F0;
  --color-sand: #F0E8D8;
  --color-warm: #E8DCC8;
  --color-terracotta: #C4704B;
  --color-terracotta-light: #D4896A;
  --color-terracotta-dark: #A85A3A;
  --color-forest: #2D5043;
  --color-forest-light: #3A6858;
  --color-ink: #1C1917;
  --color-text: #3D3630;
  --color-text-light: #7A716A;
  --color-white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;

  --nav-height: 72px;
  --container-max: 1180px;
  --section-gap: 120px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
em { font-family: var(--font-serif); font-style: italic; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section--about {
  background: var(--color-cream);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-forest);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: 40px;
  text-wrap: balance;
}

.handwritten {
  font-family: var(--font-hand);
  font-size: 1.15em;
  font-weight: 700;
  color: var(--color-terracotta);
  display: inline;
  position: relative;
}

/* Slightly larger when standalone (not inside a heading) */
h2 .handwritten,
h1 .handwritten {
  font-size: 1.1em;
}

.hero-badge .handwritten {
  font-size: 1.2em;
  font-weight: 500;
}

.footer-tagline .handwritten {
  font-size: 1.1em;
  color: rgba(255,255,255,0.55);
}

.termin-spots .handwritten {
  font-size: 1.3em;
  font-weight: 500;
}

.course-badge .handwritten {
  font-size: 1.1em;
  color: inherit;
  font-weight: 500;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 28px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 112, 75, 0.3);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-ink);
  border: 1.5px solid rgba(0,0,0,0.12);
}
.btn--secondary:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-terracotta);
  border: 1.5px solid var(--color-terracotta);
}
.btn--outline:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: var(--color-cream);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Light nav for dark page headers — white text before scroll */
.nav--light:not(.scrolled) .nav-logo { color: var(--color-white); }
.nav--light:not(.scrolled) .nav-logo-icon { color: var(--color-white); }
.nav--light:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.nav--light:not(.scrolled) .nav-link:hover { color: var(--color-white); }
.nav--light:not(.scrolled) .nav-link--active { color: var(--color-white); }
.nav--light:not(.scrolled) .nav-link--active::after { background: var(--color-white); }
.nav--light:not(.scrolled) .nav-toggle span { background: var(--color-white); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-ink);
  z-index: 101;
}

.nav-logo-icon {
  display: flex;
  color: var(--color-terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

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

.nav-link--active { color: var(--color-terracotta); }
.nav-link--active::after { width: 100%; }

.nav-link--cta {
  background: var(--color-terracotta);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link--dropdown svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link--dropdown svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--color-cream);
  color: var(--color-terracotta);
}

/* ---- Subpage Layout ---- */
.page-header {
  padding: calc(var(--nav-height) + 72px) 0 72px;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(196, 112, 75, 0.08);
}

.page-header .section-label {
  margin-top: 48px;
  margin-bottom: 24px;
}

.page-header .section-title {
  margin-bottom: 32px;
}

.page-header + .content-section,
.page-header + .content-section--alt {
  padding-top: 64px;
}

.page-header-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.page-breadcrumb {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-breadcrumb a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

.page-breadcrumb a:hover {
  color: var(--color-terracotta);
}

.page-breadcrumb-sep {
  font-size: 10px;
  opacity: 0.5;
}

/* Content blocks for subpages */
.content-section {
  padding: 100px 0;
  background: var(--color-white);
}

.content-section--alt {
  background: var(--color-cream);
  padding: 100px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.05);
}

.content-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 16px;
}

.content-card ul {
  list-style: none;
  padding: 0;
}

.content-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.93rem;
  color: var(--color-text);
}

.content-card ul li svg {
  flex-shrink: 0;
  color: var(--color-forest);
}

.content-card--cream {
  background: var(--color-cream);
}

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-img--tall {
  aspect-ratio: 3/4;
}

.content-img--square {
  aspect-ratio: 1;
}

.content-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 20px;
  line-height: 1.2;
  text-wrap: balance;
}

.content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.content-text p + p {
  margin-top: 16px;
}

.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: var(--color-text);
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list li svg {
  flex-shrink: 0;
  color: var(--color-terracotta);
  margin-top: 2px;
}

/* Price cards */
.price-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.price-card--featured {
  border-color: var(--color-terracotta);
  position: relative;
}

.price-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.price-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.price-card-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-terracotta);
  margin-bottom: 8px;
}

.price-card-price small {
  font-size: 0.5em;
  color: var(--color-text-light);
  font-family: var(--font-sans);
}

.price-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.price-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--color-text);
}

.price-card-features li svg {
  flex-shrink: 0;
  color: var(--color-forest);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  font-size: 0.85rem;
  color: white;
  font-weight: 500;
}

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s var(--ease-out);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.news-card--static {
  cursor: default;
}

.news-card--static:hover {
  transform: none;
  box-shadow: none;
}

.news-card--static:hover .news-card-img img {
  transform: none;
}

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 24px;
}

.news-card-date {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-terracotta);
  margin-bottom: 8px;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.news-highlight {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.news-highlight-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-highlight-body {
  padding: 32px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-terracotta);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  background: var(--color-forest);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--color-white);
}

.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item svg {
  flex-shrink: 0;
  color: var(--color-terracotta-light);
  margin-top: 2px;
}

.contact-info-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.contact-info-item strong {
  color: var(--color-white);
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

/* Funding cards */
.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Responsive grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.funding-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.funding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.funding-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 0;
}

.funding-card-text,
.funding-card-intro {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.funding-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(45, 80, 67, 0.1);
  color: var(--color-forest);
}

.funding-card-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.funding-card-list li {
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.funding-card-label {
  display: block;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-forest);
  margin-bottom: 6px;
}

.funding-card-link {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-terracotta);
}

.schedule-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.schedule-card-dates {
  display: grid;
  gap: 10px;
  margin: 8px 0 18px;
}

.schedule-card-date {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--color-ink);
  background: var(--color-cream);
  border: 1px solid rgba(45, 80, 67, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.schedule-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Responsive for subpages */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-grid--reverse {
    direction: ltr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    pointer-events: all;
    padding: 0 0 0 20px;
    min-width: 0;
  }
  .nav-dropdown-menu a {
    color: rgba(0,0,0,0.5);
    font-size: 1rem;
    padding: 6px 0;
  }
  .nav-link--dropdown svg {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-height) + 60px) 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 112, 75, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(45, 80, 67, 0.06) 0%, transparent 50%);
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(196, 112, 75, 0.1);
  animation: float 20s ease-in-out infinite;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(45, 80, 67, 0.08);
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: left;
}

/* Hero images collage */
.hero-images {
  position: relative;
  height: 520px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.6s forwards;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: transform 0.5s var(--ease-out);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--main {
  width: 75%;
  height: 65%;
  top: 0;
  right: 0;
  z-index: 2;
  border-radius: var(--radius-xl);
}

.hero-img--secondary {
  width: 50%;
  height: 45%;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-radius: var(--radius-lg);
}

.hero-img--tertiary {
  width: 35%;
  height: 30%;
  bottom: 15%;
  right: 5%;
  z-index: 1;
  border-radius: var(--radius-md);
  opacity: 0.85;
}

.hero-img:hover {
  transform: translateY(-4px) scale(1.02);
}

.hero-images-label {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--color-white);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  z-index: 5;
  white-space: nowrap;
}

.hero-images-label .handwritten {
  font-size: 1.1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-forest);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
  text-wrap: balance;
}

.hero-title-accent {
  color: var(--color-terracotta);
  position: relative;
}

.hero-title-accent::after {
  display: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-light);
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-ink);
  line-height: 1;
}

.hero-stat-plus, .hero-stat-percent {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-terracotta);
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-terracotta), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- Marquee ---- */
.marquee {
  background: var(--color-forest);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--color-forest), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--color-forest), transparent); }

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--color-terracotta-light);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* ---- Features ---- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease-out);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(196, 112, 75, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(45, 80, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-forest);
  transition: all 0.3s var(--ease-out);
}

.feature:hover .feature-icon {
  background: var(--color-forest);
  color: var(--color-white);
  transform: scale(1.08) rotate(-3deg);
}

.feature-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ---- Courses ---- */
.section--courses {
  background: var(--color-white);
}

.course--featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 56px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.course-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
}

.course-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.course-subtitle {
  font-size: 1rem;
  color: var(--color-terracotta);
  font-weight: 500;
  margin-bottom: 16px;
}

.course-desc {
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.course-highlights {
  list-style: none;
  margin-bottom: 32px;
}

.course-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.course-highlights li svg {
  flex-shrink: 0;
  color: var(--color-forest);
}

.course-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-visual-card {
  width: 240px;
  height: 320px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transform: rotate(3deg);
  transition: transform 0.6s var(--ease-out);
}

.course--featured:hover .course-visual-card {
  transform: rotate(0deg);
}

.course-visual-stamp {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-terracotta);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.course-visual-lines span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--color-sand);
  margin-bottom: 16px;
}
.course-visual-lines span:nth-child(1) { width: 100%; }
.course-visual-lines span:nth-child(2) { width: 80%; }
.course-visual-lines span:nth-child(3) { width: 90%; }
.course-visual-lines span:nth-child(4) { width: 60%; }

.course-visual-seal {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-visual-seal::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-forest);
  opacity: 0.15;
}
.course-visual-seal::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-forest);
}

/* Course cards grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.course-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  border: 1px solid var(--color-sand);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: rgba(196, 112, 75, 0.25);
}

.course-card-link {
  display: block;
}

.course-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-forest);
}

.course-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.course-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.course-card-price {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terracotta);
}

/* ---- Termine ---- */
.termine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.termin {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease-out);
}

.termin:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.termin-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.termin--soldout { opacity: 0.55; }
.termin--soldout .termin-status {
  background: var(--color-sand);
  color: var(--color-text-light);
}

.termin--hot .termin-status {
  background: rgba(196, 112, 75, 0.12);
  color: var(--color-terracotta);
}
.termin--hot {
  border-color: var(--color-terracotta);
}

.termin--available .termin-status {
  background: rgba(45, 80, 67, 0.1);
  color: var(--color-forest);
}

.termin-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.termin-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2rem;
  color: var(--color-ink);
  margin-bottom: 4px;
}

.termin-date {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.termin-spots {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.termin-bar {
  height: 4px;
  background: var(--color-sand);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.termin-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s var(--ease-out);
}

.termin--soldout .termin-bar-fill { background: var(--color-text-light); }
.termin--hot .termin-bar-fill { background: var(--color-terracotta); }
.termin--available .termin-bar-fill { background: var(--color-forest); }

/* Schnupperfahrten */
.schnupper {
  background: var(--color-forest);
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.schnupper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.schnupper-title {
  margin-bottom: 12px;
}

.schnupper-title .handwritten {
  color: var(--color-terracotta-light);
  font-size: 2rem;
}

.schnupper-text {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.schnupper-trips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.schnupper-trip {
  text-align: center;
}

.schnupper-trip-pin {
  width: 12px;
  height: 12px;
  background: var(--color-terracotta-light);
  border-radius: 50%;
  margin: 0 auto 8px;
  position: relative;
}

.schnupper-trip-pin::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background: var(--color-terracotta-light);
  border-radius: 2px;
}

.schnupper-trip-city {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-top: 12px;
}

.schnupper-trip-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.schnupper-trip-path {
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ---- Pull Quote ---- */
.section--quote {
  padding: 100px 0;
  background: var(--color-sand);
}

.pullquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.pullquote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--color-terracotta);
  opacity: 0.3;
  margin-bottom: 16px;
}

.pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.4;
  color: var(--color-ink);
  margin-bottom: 28px;
}

.pullquote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pullquote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-ink);
  font-size: 0.95rem;
}

.pullquote footer span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ---- Founder ---- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.founder-image-frame {
  aspect-ratio: 3/4;
  background: var(--color-sand);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.founder-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image {
  position: relative;
}

.founder-image-label {
  position: absolute;
  bottom: -12px;
  right: -16px;
  background: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: rotate(3deg);
}

.founder-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--color-text);
}

.founder-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.accreditation-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--color-sand);
  color: var(--color-forest);
}

/* ---- Audience ---- */
.section--audience {
  background: var(--color-white);
  text-align: center;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: all 0.4s var(--ease-out);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.audience-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--color-terracotta);
  transition: all 0.3s var(--ease-out);
}

.audience-card:hover .audience-card-icon {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: scale(1.08) rotate(-3deg);
}

.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ---- CTA ---- */
.section--cta {
  padding-bottom: 0;
}

.cta-card {
  background: var(--color-forest);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-confetti span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.25;
}
.cta-confetti span:nth-child(1) { top: 15%; left: 10%; background: var(--color-terracotta); width: 12px; height: 12px; }
.cta-confetti span:nth-child(2) { top: 25%; right: 15%; background: var(--color-forest-light); width: 6px; height: 6px; }
.cta-confetti span:nth-child(3) { bottom: 30%; left: 20%; background: var(--color-terracotta-light); }
.cta-confetti span:nth-child(4) { top: 40%; right: 8%; background: var(--color-sand); width: 10px; height: 10px; }
.cta-confetti span:nth-child(5) { bottom: 20%; right: 25%; background: var(--color-terracotta); width: 5px; height: 5px; }
.cta-confetti span:nth-child(6) { top: 60%; left: 8%; background: var(--color-forest-light); width: 7px; height: 7px; }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-title .handwritten {
  color: var(--color-terracotta-light);
}

.cta-text {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-actions {
  margin-bottom: 48px;
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}

.cta-contact-item svg {
  color: rgba(255,255,255,0.35);
}

/* ---- Footer ---- */
.footer {
  background: var(--color-forest);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-terracotta-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.footer-address {
  font-size: 0.78rem;
}

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

.reveal-ready.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger children */
.reveal-ready[data-delay="100"].revealed { transition-delay: 0.1s; }
.reveal-ready[data-delay="200"].revealed { transition-delay: 0.2s; }
.reveal-ready[data-delay="300"].revealed { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-images {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .course--featured {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .course-visual {
    display: none;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-gap: 64px;
  }

  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.3rem;
    font-family: var(--font-serif);
  }

  .nav-link::after { display: none; }

  .nav-link--cta {
    font-size: 1rem;
    padding: 14px 28px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

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

  .hero {
    min-height: auto;
  }

  .hero-images {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .audience-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .schnupper {
    padding: 40px 24px;
  }

  .schnupper-trips {
    flex-direction: column;
    gap: 16px;
  }

  .schnupper-trip-path {
    transform: rotate(90deg);
  }

  .cta-card {
    padding: 48px 24px;
  }

  .course--featured {
    padding: 32px 24px;
  }

  .cta-contact {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }
}

/* ============================================
   Page-specific styles
   ============================================ */

/* ---- Full-width image break ---- */
.image-break {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.image-break-caption {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
}

/* ---- Big number / stat callout ---- */
.big-stat {
  text-align: center;
  padding: 80px 24px;
}

.big-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--color-terracotta);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.big-stat-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Pull quote (standalone) ---- */
.inline-quote {
  background: var(--color-forest);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.inline-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 12rem;
  line-height: 0.6;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 20px;
  left: 24px;
}

.inline-quote p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.inline-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-sand);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-forest);
  border: 3px solid var(--color-cream);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 4px;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.65;
}

/* ---- Staggered image grid ---- */
.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.image-mosaic-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.image-mosaic-item:hover img {
  transform: scale(1.05);
}

.image-mosaic-item:nth-child(1) {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}

.image-mosaic-item:nth-child(2) {
  grid-column: 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.image-mosaic-item:nth-child(3),
.image-mosaic-item:nth-child(4) {
  aspect-ratio: 4/3;
}

/* ---- Number strip (horizontal stats) ---- */
.number-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 24px;
  flex-wrap: wrap;
}

.number-strip-item {
  text-align: center;
}

.number-strip-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-forest);
  line-height: 1;
}

.number-strip-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

.banner--forest .number-strip-value {
  color: var(--color-white);
}

.banner--forest .number-strip-label {
  color: rgba(255,255,255,0.6);
}

/* ---- Overlapping card pair ---- */
.overlap-cards {
  position: relative;
  min-height: 360px;
}

.overlap-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
}

.overlap-card--back {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  transform: rotate(2deg);
  z-index: 1;
  background: var(--color-sand);
  box-shadow: none;
}

.overlap-card--front {
  position: relative;
  z-index: 2;
  width: 80%;
  margin-top: 40px;
}

/* ---- Colored banner section ---- */
.banner {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.banner--terracotta {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.banner--terracotta .section-label {
  color: rgba(255,255,255,0.6);
}

.banner--terracotta .section-title,
.banner--terracotta .content-heading {
  color: var(--color-white);
}

.banner--terracotta .handwritten {
  color: var(--color-sand);
}

.banner--forest {
  background: var(--color-forest);
  color: var(--color-white);
}

.banner--forest .section-label {
  color: var(--color-terracotta-light);
}

.banner--forest .section-title,
.banner--forest .content-heading {
  color: var(--color-white);
}

.banner--forest .handwritten {
  color: var(--color-terracotta-light);
}

.banner--forest .btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
}

.banner--forest .btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

/* ---- Decorated page header variants ---- */
.page-header--tall {
  padding: calc(var(--nav-height) + 80px) 0 100px;
}

.page-header--with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) 24px 80px;
}

.page-header--dark {
  background: var(--color-forest);
  color: var(--color-white);
}

.page-header--dark .section-label {
  color: var(--color-terracotta-light);
}

.page-header--dark .section-title {
  color: var(--color-white);
}

.page-header--dark .page-breadcrumb,
.page-header--dark .page-breadcrumb a,
.page-header--dark .page-header-desc {
  color: rgba(255,255,255,0.5);
}

.page-header--dark .handwritten {
  color: var(--color-terracotta-light);
}

.page-header--dark .hero-stat-number {
  color: var(--color-white);
}

.page-header--dark .hero-stat-plus,
.page-header--dark .hero-stat-percent {
  color: var(--color-terracotta-light);
}

.page-header--dark .hero-stat-label {
  color: rgba(255,255,255,0.6);
}

.page-header--dark .hero-stat-divider {
  background: rgba(255,255,255,0.15);
}

.page-header--dark .hero-stats {
  animation: none;
  opacity: 1;
}

/* ---- Sticky aside for detail pages ---- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.detail-main .number-strip {
  margin-bottom: 56px;
}

.detail-main > * + * {
  margin-top: 64px;
}

.sidebar-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1.5px solid rgba(0,0,0,0.06);
}

.sidebar-card-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-terracotta);
  margin-bottom: 4px;
}

.sidebar-card-price small {
  font-size: 0.45em;
  color: var(--color-text-light);
  font-family: var(--font-sans);
}

.sidebar-card-meta {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sidebar-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.founder-name {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.founder-role {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* ---- Stepped / numbered list ---- */
.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: start;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  counter-increment: step;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-forest);
}

.step-number::before {
  content: counter(step, decimal-leading-zero);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---- Responsive for new components ---- */
@media (max-width: 1024px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
  .page-header--with-image {
    grid-template-columns: 1fr;
  }
  .image-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .image-mosaic-item:nth-child(1) {
    grid-column: 1 / 3;
  }
  .image-mosaic-item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .image-break {
    height: 250px;
  }
  .number-strip {
    gap: 32px;
  }
  .number-strip-value {
    font-size: 2.2rem;
  }
  .overlap-card--back {
    display: none;
  }
  .overlap-card--front {
    width: 100%;
    margin-top: 0;
  }
  .image-mosaic {
    grid-template-columns: 1fr;
  }
  .image-mosaic-item:nth-child(1) {
    grid-column: auto;
  }
}

/* ============================================
   Language Switcher — fixed bottom-right
   ============================================ */
.lang-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.lang-switcher:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(45, 80, 67, 0.35);
}

/* ============================================
   Booking Popup
   ============================================ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: background 0.3s ease;
  pointer-events: none;
}

.booking-overlay--visible {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.booking-popup {
  position: relative;
  background: var(--color-forest);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.booking-overlay--visible .booking-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.booking-close:hover {
  background: rgba(255,255,255,0.2);
}

.booking-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 28px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}

.booking-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.booking-field select option {
  background: var(--color-forest);
  color: var(--color-white);
}

.booking-field textarea {
  resize: vertical;
  min-height: 70px;
}

.booking-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
}

.booking-success p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

@media (max-width: 540px) {
  .booking-popup {
    padding: 40px 24px 32px;
    border-radius: var(--radius-lg);
  }
  .booking-row {
    grid-template-columns: 1fr;
  }
  .booking-title {
    font-size: 1.5rem;
  }
}
