:root {
  --navy: #1b2436;
  --navy-light: #2a3346;
  --navy-lighter: #232c3d;
  --bg: #faf8f4;
  --white: #ffffff;
  --border: #e6e1d6;
  --text-muted: #5b6478;
  --text-dark: #3d4657;
  --muted-2: #8b917f;
  --muted-3: #8b8470;
  --gold: oklch(76% 0.16 85);
  --gold-dark: oklch(60% 0.16 85);
  --gold-light: oklch(90% 0.06 85);
  --gold-text: #7a5b0c;
  --teal: oklch(52% 0.12 200);
  --nav-inactive: #c7ccd6;
  --footer-muted: #9aa1b3;
  --footer-border: #2a3346;
  --footer-border-2: #7a8296;
  --font-head: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }
input, textarea, select { font-family: var(--font-body); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-head); }
button { font-family: var(--font-head); cursor: pointer; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-checkout { max-width: 640px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.brand { display: flex; align-items: center; gap: 10px; padding: 14px 0; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 18px;
}
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -0.01em; }
.brand-name span { color: var(--gold); }
.main-nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  background: transparent; border: none; font-family: var(--font-head); font-weight: 600;
  font-size: 14px; padding: 10px 12px; cursor: pointer; border-radius: 2px; color: var(--nav-inactive);
  display: inline-block;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
.phone-link { color: var(--nav-inactive); font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.cart-btn {
  position: relative; background: var(--gold); border: none; border-radius: 2px;
  padding: 10px 16px; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  color: var(--navy);
}
.cart-badge {
  position: absolute; top: -6px; right: -6px; background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 50%; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}
.cart-badge.hidden { display: none; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--navy);
  color: #e8e6df; padding: 16px 24px; display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; font-size: 14px; max-width: 640px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.btn-accept-cookies {
  background: var(--gold); border: none; padding: 10px 20px; border-radius: 2px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); flex-shrink: 0;
}

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(27,36,54,0.5); z-index: 70;
  display: flex; justify-content: flex-end;
}
.cart-overlay.hidden { display: none; }
.cart-panel {
  background: #fff; width: min(420px, 100%); height: 100%; padding: 28px 24px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 16px;
}
.cart-panel-head { display: flex; justify-content: space-between; align-items: center; }
.cart-panel-head h3 { font-weight: 800; font-size: 20px; margin: 0; }
.cart-close { background: none; border: none; font-size: 22px; color: var(--text-muted); }
.cart-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.cart-item-title { margin: 0 0 6px; font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 22px; height: 22px; border: 1px solid var(--border); background: var(--bg); border-radius: 2px; }
.cart-item-price { margin: 0 0 6px; font-family: var(--font-head); font-weight: 700; font-size: 14px; text-align: right; }
.cart-remove { background: none; border: none; color: #a33333; font-size: 12px; padding: 0; }
.cart-empty { color: var(--text-muted); font-size: 14px; }
.cart-total-row {
  border-top: 2px solid var(--navy); padding-top: 16px; margin-top: auto;
  display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 800; font-size: 16px; margin-bottom: 14px;
}
.btn-checkout {
  width: 100%; background: var(--gold); border: none; padding: 14px; border-radius: 2px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy);
}

/* Buttons */
.btn { display: inline-block; border: none; border-radius: 2px; font-family: var(--font-head); font-weight: 700; cursor: pointer; text-align: center; }
.btn-gold { background: var(--gold); color: var(--navy); padding: 15px 28px; font-size: 15px; }
.btn-outline { background: transparent; border: 2px solid var(--navy-light); color: #fff; padding: 13px 28px; font-size: 15px; }
.btn-dark { background: var(--navy); color: #fff; padding: 15px 28px; font-size: 15px; }
.btn-dark-sm { background: var(--navy); color: #fff; padding: 13px 20px; font-size: 14px; }
.btn-add-cart { background: var(--navy); color: #fff; padding: 13px 20px; border-radius: 2px; font-weight: 700; font-size: 14px; }
.btn-add-cart-sm { background: var(--navy); color: #fff; padding: 11px 16px; border-radius: 2px; font-weight: 700; font-size: 13px; }

/* Hero */
.hero { background: var(--navy); padding: 80px 24px; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 48px; align-items: center; }
.hero-eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 14px; }
.hero h1 { font-weight: 800; font-size: 44px; line-height: 1.12; color: #fff; margin: 0 0 18px; letter-spacing: -0.01em; }
.hero p { font-size: 17px; line-height: 1.7; color: var(--nav-inactive); margin: 0 0 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; }

/* Stats */
.stats { padding: 44px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.stat { text-align: center; }
.stat p:first-child { font-family: var(--font-head); font-weight: 800; font-size: 34px; margin: 0; color: var(--navy); }
.stat p:last-child { margin: 4px 0 0; color: var(--text-muted); font-size: 14px; }

/* Section */
.section { padding: 44px 24px; }
.section-lg { padding: 56px 24px; }
.section-xl { padding: 64px 24px; }
.section h2 { font-weight: 800; font-size: 32px; margin: 0 0 32px; letter-spacing: -0.01em; }
.page-title { font-weight: 800; font-size: 38px; margin: 0 0 14px; letter-spacing: -0.01em; }
.page-title-sm { font-weight: 800; font-size: 34px; margin: 0 0 24px; }
.page-lead { max-width: 680px; color: var(--text-muted); font-size: 16px; line-height: 1.7; margin: 0 0 40px; }

.section-white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-white-inner { max-width: 1120px; margin: 0 auto; padding: 56px 24px; }

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.grid-2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.grid-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; }
.grid-blog { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.grid-theory { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 14px; }
.grid-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; }
.grid-split-about { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); gap: 40px; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 26px; }
.card h3 { font-weight: 700; font-size: 17px; margin: 0 0 10px; }
.card p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.step-num { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--gold-dark); margin: 0 0 8px; }
.step-label { margin: 0; font-weight: 600; font-size: 15px; }

.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px; }
.testimonial p:first-child { margin: 0 0 14px; color: var(--text-dark); font-size: 15px; line-height: 1.6; }
.testimonial p:last-child { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 14px; }

.cta-band { background: var(--gold); padding: 56px 24px; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.cta-band h2 { font-weight: 800; font-size: 26px; margin: 0; color: var(--navy); }

/* Courses */
.course-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.course-tag { align-self: flex-start; background: var(--gold-light); color: var(--gold-text); font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 5px 10px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.course-card h3 { font-weight: 800; font-size: 22px; margin: 0; }
.course-card ul { margin: 0; padding: 0 0 0 18px; color: var(--text-dark); font-size: 15px; line-height: 1.8; }
.course-price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.course-price { font-family: var(--font-head); font-weight: 800; font-size: 28px; }
.course-vat { color: var(--muted-2); font-size: 13px; }

.theory-box { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 18px; font-size: 14px; color: var(--text-dark); }

.dark-cta { background: var(--navy); border-radius: 4px; padding: 36px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.dark-cta h3 { font-weight: 800; font-size: 20px; color: #fff; margin: 0 0 6px; }
.dark-cta p { margin: 0; color: var(--nav-inactive); font-size: 14px; }

/* Prices table */
.price-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 40px; }
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table tr { border-bottom: 1px solid var(--border); }
.price-table tr:nth-child(even) { background: var(--bg); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 16px 20px; color: var(--text-dark); }
.price-table td:last-child { text-align: right; font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.price-note { color: var(--muted-2); font-size: 13px; }

/* Instructors */
.instructor-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.instructor-photo { width: 100%; aspect-ratio: 1; object-fit: cover; }
.instructor-body { padding: 20px; }
.instructor-body h3 { font-weight: 700; font-size: 17px; margin: 0 0 4px; }
.instructor-exp { margin: 0 0 10px; color: var(--teal); font-size: 13px; font-weight: 600; }
.instructor-quote { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Shop */
.addon-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.addon-card h3 { font-weight: 700; font-size: 16px; margin: 0; }
.addon-price-row { display: flex; align-items: baseline; gap: 6px; margin-top: auto; }
.addon-price { font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.addon-unit { color: var(--muted-2); font-size: 13px; }

/* Blog */
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: block; }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-date { margin: 0 0 8px; color: var(--teal); font-size: 12px; font-weight: 600; }
.blog-card h3 { font-weight: 700; font-size: 17px; margin: 0 0 10px; line-height: 1.4; }
.blog-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.blog-detail-back { background: none; border: none; color: var(--teal); font-size: 14px; font-weight: 600; padding: 0; margin-bottom: 24px; display: inline-block; }
.blog-detail-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 28px; border-radius: 4px; }
.blog-detail-title { font-weight: 800; font-size: 32px; margin: 0 0 24px; line-height: 1.3; }
.blog-detail-body { color: var(--text-dark); font-size: 16px; line-height: 1.8; white-space: pre-line; }

/* About */
.about-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px; }
.about-text p { color: var(--text-dark); font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.about-text p:last-child { margin: 0; }
.info-box { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 22px; }
.info-box h3 { font-weight: 700; font-size: 15px; margin: 0 0 8px; }
.info-box p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Contact */
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-info p:first-child { margin: 0 0 4px; font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.contact-info p:last-child { margin: 0; color: var(--text-muted); font-size: 15px; }
.contact-map { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 6px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.form-card input, .form-card textarea { padding: 12px 14px; border: 1px solid var(--border); border-radius: 2px; font-size: 14px; width: 100%; }
.form-card textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted-2); font-size: 12px; }
.form-submit { background: var(--gold); border: none; padding: 14px; border-radius: 2px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); width: 100%; }
.thanks-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 32px; text-align: center; }
.thanks-card h3, .thanks-card h1 { font-weight: 700; margin: 0 0 10px; }
.thanks-card p { margin: 0 0 20px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.faq-item p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* Checkout */
.checkout-summary { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px; margin-bottom: 24px; }
.checkout-summary-row { display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.checkout-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); padding: 6px 0; }
.checkout-agree { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-muted); }
.checkout-agree input { width: auto; margin-top: 2px; }
.btn-place-order { background: var(--gold); border: none; padding: 14px; border-radius: 2px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); width: 100%; }
.btn-place-order:disabled { opacity: 0.5; cursor: not-allowed; }

/* Legal */
.legal-body { color: var(--text-dark); font-size: 15px; line-height: 1.8; display: flex; flex-direction: column; gap: 20px; }
.legal-body h3 { font-family: var(--font-head); font-size: 16px; margin: 0 0 8px; }
.legal-body p { margin: 0; }
.cookie-type-box { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 20px; }
.cookie-type-box h3 { font-family: var(--font-head); font-size: 15px; margin: 0 0 8px; }
.cookie-type-box p { margin: 0; color: var(--text-muted); }
.impressum-box { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 10px; color: var(--text-dark); font-size: 15px; line-height: 1.8; }
.impressum-box p { margin: 0; }

main { flex: 1; }

/* Footer */
.site-footer { background: var(--navy); color: var(--nav-inactive); padding: 56px 24px 28px; margin-top: auto; }
.footer-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 32px; margin-bottom: 32px; }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #fff; }
.footer-brand span { color: var(--gold); }
.footer-desc { margin: 14px 0 0; font-size: 14px; line-height: 1.7; color: var(--footer-muted); max-width: 280px; }
.footer-heading { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--footer-muted); font-size: 14px; }
.footer-contact p { margin: 0 0 8px; font-size: 14px; color: var(--footer-muted); }
.footer-contact p:last-child { margin: 0; }
.footer-bottom { max-width: 1120px; margin: 0 auto; border-top: 1px solid var(--footer-border); padding-top: 20px; font-size: 13px; color: var(--footer-border-2); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: auto; background: var(--gold); color: var(--navy);
  padding: 10px 16px; z-index: 100; font-family: var(--font-head); font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

@media (max-width: 860px) {
  .hero-grid, .grid-split, .grid-split-about { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .page-title { font-size: 30px; }
}
