:root {
  --bg: #f0f0f1;
  --surface: #ffffff;
  --surface-alt: #ebebed;
  --text: #44464d;
  --muted: #8b8e97;
  --accent: #ff335f;
  --line: rgba(20, 20, 20, 0.08);
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hero {
  min-height: 92vh;
  color: #2f3340;
  padding: 24px 24px 72px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.62)),
    url("willkommen.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.nav,
.hero-inner,
.section,
.footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 50px;
  width: auto;
}

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

.nav-links a {
  color: #2f3340;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #2f3340;
  font-size: 1.7rem;
  cursor: pointer;
}

.menu-logo {
  display: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 88px 0 26px;
}

.eyebrow,
.section-kicker,
.program-day {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.eyebrow {
  color: rgba(47, 51, 64, 0.78);
}

.section-kicker {
  color: var(--muted);
}

.hero-logo {
  max-width: 460px;
  width: min(100%, 460px);
  height: auto;
  margin: 10px auto 14px;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(47, 51, 64, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 15px 24px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(47, 51, 64, 0.18);
  color: #2f3340;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(4px);
}

.btn.small {
  padding: 12px 16px;
  font-size: 0.94rem;
}

.btn.dark {
  color: var(--text);
  border: 1px solid var(--line);
  background: #fff;
}

.section {
  padding: 88px 24px;
}

.alt {
  background: var(--surface-alt);
}

.section-header {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-header.narrow {
  max-width: 640px;
}

.section h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.section p {
  margin: 0 0 12px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.align-center {
  align-items: center;
}

.lead-note {
  font-weight: 600;
  color: #5c6577;
}

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

.card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.program-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 30px;
}

.featured {
  background: linear-gradient(180deg, #fff, #fbfbfb);
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 51, 95, 0.12);
  color: var(--accent);
}

.badge.muted {
  background: rgba(68, 70, 77, 0.07);
  color: var(--text);
}

.card h3,
.program-card h3 {
  margin: 0 0 10px;
  line-height: 1.2;
  font-size: 1.35rem;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.meta {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 16px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.program-card {
  padding: 28px;
}

.program-day {
  color: var(--muted);
  margin-bottom: 8px;
}

.accent-card {
  background: linear-gradient(180deg, #fff, #fff5f8);
}

.preview-image {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease;
}

.preview-image:hover {
  transform: scale(1.015);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: 230px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #d6dbe4, #bcc5d3 42%, #e6eaef);
}

.gallery-item::before,
.intro-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: #fff;
  font-weight: 700;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.intro-photo {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: url("AWO01.jpg") center/cover no-repeat;
}

.intro-photo span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.order-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.order-form h3 {
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #5a5e67;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  font: inherit;
  background: #fff;
}

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

.mini-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mini-grid:last-child {
  border-bottom: 0;
}

.price {
  color: var(--muted);
  font-size: 0.92rem;
}

.qty {
  width: 92px !important;
}

.helper {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-card {
  padding: 34px;
}

.contact-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.contact-list li {
  margin-bottom: 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.footer {
  padding: 28px 24px 44px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .card-grid,
  .card-grid.two-up,
  .program-grid,
  .section-grid,
  .contact-box,
  .gallery-grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 20px 18px 48px;
  }

  .section {
    padding: 72px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-logo {
    display: block !important;
    height: 42px;
    margin-bottom: 10px;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}