/* =============================================
   FORAQIXX — CUSTOM CSS
   Design: Monochrome Plus (Warm Stone + Amber)
   ============================================= */


:root {
  
  --color-bg: #f5f3f0;
  --color-bg-tinted: #ede9e3;
  --color-bg-dark: #1e1c19;
  --color-bg-darker: #141210;

  
  --color-text: #2a2622;
  --color-text-secondary: #5c5650;
  --color-text-light: #f0ece5;
  --color-text-muted-light: #b8b0a5;

  
  --color-stone-100: #f5f3f0;
  --color-stone-200: #ede9e3;
  --color-stone-300: #d8d1c8;
  --color-stone-400: #bfb5a8;
  --color-stone-500: #9e9285;
  --color-stone-600: #7a6e63;
  --color-stone-700: #4a433c;
  --color-stone-800: #2a2622;

  
  --color-accent: #c8893a;
  --color-accent-hover: #b37a30;
  --color-accent-light: #f5e4cc;

  
  --shadow-sm: 0 1px 3px rgba(30,28,25,0.08), 0 1px 2px rgba(30,28,25,0.05);
  --shadow-md: 0 4px 12px rgba(30,28,25,0.10), 0 2px 4px rgba(30,28,25,0.06);
  --shadow-lg: 0 10px 30px rgba(30,28,25,0.12), 0 4px 10px rgba(30,28,25,0.08);
  --shadow-xl: 0 20px 50px rgba(30,28,25,0.16), 0 8px 20px rgba(30,28,25,0.10);
  --shadow-accent: 0 4px 18px rgba(200,137,58,0.22), 0 2px 6px rgba(200,137,58,0.12);

  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  
  --nav-height: 72px;

  
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}


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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.18;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: clamp(0.95rem, 1.8vw, 1.1rem); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--color-text-secondary); line-height: 1.72; }
p:last-child { margin-bottom: 0; }


.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background-color: var(--color-bg-dark);
}

.section--tinted {
  background-color: var(--color-bg-tinted);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--color-accent); }

.section-title {
  margin-bottom: var(--space-md);
}

.section-title--light { color: var(--color-text-light); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--accent {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.btn--accent:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 6px 24px rgba(200,137,58,0.30), 0 2px 8px rgba(200,137,58,0.16);
  transform: translateY(-2px);
  color: #fff;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-stone-300);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: rgba(240,236,229,0.3);
}

.btn--ghost:hover {
  background-color: rgba(240,236,229,0.1);
  border-color: rgba(240,236,229,0.6);
  transform: translateY(-2px);
  color: var(--color-text-light);
}

.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background-color: var(--color-bg);
  box-shadow: none;
  transition: box-shadow var(--transition-slow);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__list--left { justify-content: flex-end; flex: 1; }
.nav__list--right { justify-content: flex-start; flex: 1; }

.nav__logo {
  flex-shrink: 0;
  margin: 0 clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
}

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

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__cta {
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav__hamburger:hover { background: var(--color-bg-tinted); }

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu { display: none; }

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,18,16,0.55);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(2px);
}

.mobile-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background-color: var(--color-bg);
  z-index: 960;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  padding: 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(20,18,16,0.18), -2px 0 8px rgba(20,18,16,0.08);
}

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

.mobile-menu__close:hover {
  color: var(--color-text);
  background: var(--color-bg-tinted);
}

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

.mobile-menu__link {
  display: block;
  padding: 1rem 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-stone-200);
  transition: color var(--transition), padding-left var(--transition);
  min-height: 44px;
}

.mobile-menu__link:hover {
  color: var(--color-text);
  padding-left: 1rem;
}

.mobile-menu__link--cta {
  margin-top: 1.5rem;
  border-bottom: none;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow-accent);
}

.mobile-menu__link--cta:hover {
  background-color: var(--color-accent-hover);
  padding-left: 0.5rem;
  color: #fff;
}


.mobile-menu--active .mobile-menu__overlay { opacity: 1; }
.mobile-menu--active .mobile-menu__panel { transform: translateX(0); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.hero__image-panel {
  position: relative;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,18,16,0.35) 0%, rgba(20,18,16,0.15) 100%);
}

.hero__content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) clamp(1.5rem, 4vw, 3rem);
  background-color: var(--color-bg);
  position: relative;
}

.hero__content-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__actions .btn--ghost {
  color: var(--color-text-secondary);
  border-color: var(--color-stone-300);
}

.hero__actions .btn--ghost:hover {
  color: var(--color-text);
  border-color: var(--color-stone-400);
  background: transparent;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.page-hero__inner {
  max-width: 700px;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.page-hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

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

.intro__text .section-label { display: block; }

.intro__text p {
  margin-bottom: 1.25rem;
}

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

/* =============================================
   FORMATS HORIZONTAL SCROLL
   ============================================= */
.formats__header {
  padding: 0 var(--space-lg);
  max-width: 1180px;
  margin: 0 auto var(--space-xl);
  padding-left: clamp(1rem, 4vw, 2.5rem);
}

.formats__intro {
  color: var(--color-text-muted-light);
  max-width: 580px;
  margin-top: 0.5rem;
}

.formats__scroll-container {
  overflow-x: auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) var(--space-md);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-stone-600) var(--color-bg-darker);
}

.formats__scroll-container:active { cursor: grabbing; }

.formats__scroll-container::-webkit-scrollbar {
  height: 4px;
}

.formats__scroll-container::-webkit-scrollbar-track {
  background: var(--color-bg-darker);
}

.formats__scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-stone-600);
  border-radius: 4px;
}

.formats__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  padding-bottom: 0.5rem;
}

.format-card {
  width: 300px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
}

.format-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 3px 10px rgba(0,0,0,0.12);
}

.format-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-accent);
}

.format-card__title {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.format-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.format-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(200,137,58,0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(200,137,58,0.2);
}

.formats__scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  max-width: 1180px;
  margin: 0 auto;
  color: var(--color-text-muted-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process__header { max-width: 600px; margin-bottom: var(--space-xl); }

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

.process__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-stone-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.process__step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-stone-300);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.process__step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.process__step-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery__header { margin-bottom: var(--space-lg); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.gallery__item { overflow: hidden; border-radius: var(--radius-lg); }

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: transform var(--transition-slow);
}

.gallery__item--large .gallery__img { aspect-ratio: 16/9; }

.gallery__item:hover .gallery__img {
  transform: scale(1.04);
}

/* =============================================
   OFFERINGS / COURSE CARDS
   ============================================= */
.offerings__header { max-width: 620px; margin-bottom: var(--space-xl); }
.offerings__intro { color: var(--color-text-secondary); }

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.offering-card {
  background: var(--color-bg);
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.offering-card--featured {
  background: var(--color-bg-dark);
  border-color: rgba(200,137,58,0.25);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,137,58,0.15);
}

.offering-card--featured h3,
.offering-card--featured p {
  color: var(--color-text-light);
}

.offering-card--featured p { color: var(--color-text-muted-light); }

.offering-card--featured:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(200,137,58,0.3);
}

.offering-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.offering-card__icon {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.offering-card__title {
  font-size: 1.1rem;
}

.offering-card__text {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.offering-card__details {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offering-card__details li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.offering-card--featured .offering-card__details li {
  color: var(--color-text-muted-light);
}

.offering-card__details i {
  color: var(--color-accent);
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

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

.location__details {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text-muted-light);
  font-size: 0.95rem;
}

.location__detail i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.location__detail div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.location__detail strong {
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location__detail a {
  color: var(--color-text-muted-light);
  transition: color var(--transition);
}

.location__detail a:hover { color: var(--color-accent); }

.location__map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip__inner {
  background: var(--color-bg-tinted);
  border: 1px solid var(--color-stone-300);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.cta-strip__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-strip__text p {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.cta-strip__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: var(--color-bg-darker);
  padding: var(--space-2xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.footer__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
  transition: background var(--transition);
}

.footer__card:hover {
  background: rgba(255,255,255,0.06);
}

.footer__card--about { grid-column: 1; }

.footer__logo { height: 32px; width: auto; margin-bottom: 1rem; }

.footer__card p {
  font-size: 0.88rem;
  color: var(--color-text-muted-light);
  line-height: 1.6;
}

.footer__card-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted-light);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--color-stone-500);
  transition: color var(--transition);
}

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

.footer__address p {
  font-size: 0.88rem;
  color: var(--color-stone-500);
  margin-bottom: 0.5rem;
}

.footer__address a {
  color: var(--color-stone-500);
  transition: color var(--transition);
}

.footer__address a:hover { color: var(--color-accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--color-stone-600);
  margin-bottom: 0;
}

/* =============================================
   ABOUT DETAIL (Warum wir)
   ============================================= */
.about-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.about-detail__content p { margin-bottom: 1.25rem; }

/* =============================================
   VALUES
   ============================================= */
.values__header { max-width: 600px; margin-bottom: var(--space-xl); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.value-card__icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.value-card__title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.value-card p { font-size: 0.88rem; }

/* =============================================
   METHODOLOGY
   ============================================= */
.methodology__header { max-width: 600px; margin-bottom: var(--space-xl); }

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

.methodology__text p { color: var(--color-text-muted-light); margin-bottom: 1.25rem; }

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

/* =============================================
   COURSE DETAIL
   ============================================= */
.course-detail__intro { margin-bottom: var(--space-lg); }

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

.course-detail__grid--reversed .course-detail__content { order: 2; }
.course-detail__grid--reversed .course-detail__image { order: 1; }

.course-detail__content p { margin-bottom: 1.25rem; }

.course-detail__specs {
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-bg-tinted);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-stone-200);
}

.spec-item i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.spec-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spec-item strong {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}

.spec-item span {
  font-size: 0.85rem;
  color: var(--color-text);
}

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

/* =============================================
   FAQ
   ============================================= */
.faq__header { max-width: 600px; margin-bottom: var(--space-xl); }

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

.faq__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background var(--transition);
}

.faq__item:hover { background: rgba(255,255,255,0.08); }

.faq__question {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.faq__question i { color: var(--color-accent); flex-shrink: 0; margin-top: 0.15rem; }

.faq__answer {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  margin-bottom: 0;
  line-height: 1.65;
}

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

.business-intro__content p { margin-bottom: 1.25rem; }

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

.business-formats__header { max-width: 620px; margin-bottom: var(--space-xl); }

.business-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.biz-card {
  padding: var(--space-lg);
  background: var(--color-bg-tinted);
  border: 1px solid var(--color-stone-300);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.biz-card__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-stone-300);
  line-height: 1;
  margin-bottom: 1rem;
}

.biz-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.biz-card p { font-size: 0.9rem; margin-bottom: 1rem; }

/* =============================================
   BUSINESS PROCESS
   ============================================= */
.business-process__header { max-width: 600px; margin-bottom: var(--space-xl); }

.business-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.biz-step {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

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

.biz-step__icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.biz-step h3 {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}

.biz-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  margin-bottom: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-section__form-title,
.contact-section__info-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}


.contact-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__field {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field--message {
  flex: 0 0 100%;
}

.contact-form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form__input,
.contact-form__textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-stone-300);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  min-height: 44px;
  resize: vertical;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,137,58,0.12);
}

.contact-form__textarea { min-height: 80px; }

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  flex: 1;
}

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

.contact-form__privacy a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.contact-info-item:hover { box-shadow: var(--shadow-md); }

.contact-info-item i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-item strong {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-info-item a:hover { color: var(--color-accent); }


.contact-quote__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--color-bg-tinted);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-stone-300);
  box-shadow: var(--shadow-md);
}

.contact-quote__icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  display: block;
}

.contact-quote__text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 1rem;
}

.contact-quote__attribution {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-bottom: 0;
}


.contact-map__header {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.contact-map__header h2 { color: var(--color-text-light); }
.contact-map__header p { color: var(--color-text-muted-light); }

.contact-map__embed iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-page { min-height: 100vh; display: flex; flex-direction: column; }

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) clamp(1rem, 4vw, 2.5rem);
  background: radial-gradient(ellipse at 50% 40%, var(--color-accent-light) 0%, var(--color-bg) 65%);
}

.thanks-card {
  background: var(--color-bg);
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(200,137,58,0.08);
}

.thanks-card__icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: block;
}

.thanks-card__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.thanks-card__text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  min-height: 80vh;
}

.legal-page__header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-stone-200);
}

.legal-page__title { font-size: clamp(1.8rem, 4vw, 2.8rem); }

.legal-page__date {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.legal-page__body h2 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-stone-200);
}

.legal-page__body h3 {
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.legal-page__body p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: 1.1rem;
}

.legal-page__body ul {
  margin-bottom: 1.1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-page__body ul li {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.legal-page__body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.impressum-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.impressum-table th,
.impressum-table td {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--color-stone-200);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.impressum-table th {
  background: var(--color-bg-tinted);
  font-weight: 600;
  color: var(--color-text);
  width: 35%;
}

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

.impressum-table a { color: var(--color-accent); }

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-trigger {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  border: 1px solid var(--color-stone-300);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.cookie-trigger:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.cookie-trigger--pulse {
  animation: cookiePulse 2.5s ease-in-out 1.5s 3;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 5px rgba(200,137,58,0.15), var(--shadow-sm); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,18,16,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(2px);
}

.cookie-modal-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--color-bg);
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.96) translateY(8px);
  transition: transform var(--transition-slow);
}

.cookie-modal-overlay--active .cookie-modal {
  transform: scale(1) translateY(0);
}

.cookie-modal__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cookie-modal__title i { color: var(--color-accent); }

.cookie-modal__desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--color-bg-tinted);
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-md);
}

.cookie-category__info { flex: 1; padding-right: 1rem; }

.cookie-category__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.cookie-category__desc {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}

.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-stone-300);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--color-accent);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-modal__actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .offerings__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__card--about { grid-column: span 2; }
  .business-process__steps { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--large { grid-column: span 2; }
}

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

  .nav__list { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh auto;
    min-height: auto;
  }

  .hero__content-panel::before { display: none; }

  .intro__grid,
  .about-detail__grid,
  .methodology__content,
  .course-detail__grid,
  .business-intro__grid,
  .location__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .course-detail__grid--reversed .course-detail__content { order: 1; }
  .course-detail__grid--reversed .course-detail__image { order: 2; }

  .process__steps { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .business-formats__grid { grid-template-columns: 1fr; }
  .business-process__steps { grid-template-columns: repeat(2, 1fr); }
  .faq__grid { grid-template-columns: 1fr; }

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .course-detail__specs { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .values__grid { grid-template-columns: 1fr; }
  .offerings__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__card--about { grid-column: span 1; }
  .business-process__steps { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large { grid-column: span 1; }
  .contact-form__footer { flex-direction: column; align-items: stretch; }
  .contact-form__footer .btn { width: 100%; justify-content: center; }
  .cookie-modal__actions { flex-direction: column; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-strip__actions { flex-direction: column; align-items: stretch; }
  .cta-strip__actions .btn { width: 100%; justify-content: center; }
  .impressum-table th { width: 40%; }
}

/* =============================================
   SCROLL BEHAVIOR & BODY PADDING
   ============================================= */
body { padding-top: 0; }

.hero,
.page-hero {
  position: relative;
}