@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a14;
  --surface: #15152a;
  --surface-2: #1e1e3a;
  --surface-3: #24244a;
  --text: #f5f5fa;
  --text-muted: #a0a0b8;
  --text-dim: #6a6a85;
  --accent: #d4af7a;
  --accent-2: #a78bfa;
  --accent-glow: rgba(212, 175, 122, 0.15);
  --border: #2a2a4a;
  --border-soft: #1f1f3a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --fs-display: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover { color: var(--accent-2); }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #15152a;
}

.btn-primary:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(167, 139, 250, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
  max-width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.link-arrow:hover { gap: 0.875rem; }

.overline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.overline::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.takt {
  color: var(--accent);
  font-weight: 600;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .container {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0.5rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  min-width: 0;
}

.logo img {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a:hover, .main-nav a.active { color: var(--text); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ad-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-orb.orb-2 {
  top: auto;
  bottom: -30%;
  right: auto;
  left: -10%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-weight: 300;
  font-style: italic;
  display: block;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-badges {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hbadge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.hbadge:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.hbadge i {
  font-size: 1.25rem;
  color: var(--accent);
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.hbadge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}

.hbadge span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-star {
  font-size: 1.2rem;
  color: var(--accent);
  margin-left: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/2;
  box-shadow: var(--shadow-lg);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
}

.hero-corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hero-corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.hero-corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.hero-corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.hero-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4757;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.philosophy {
  padding: 7rem 0;
  background: var(--surface);
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.philo-visual {
  position: relative;
}

.philo-visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.philo-card {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}

.philo-card i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.philo-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text);
}

.philo-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.philo-content h2 {
  margin-bottom: 2rem;
}

.philo-content > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.philo-features {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.feature {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}

.feature i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.programmes {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  background-image: radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-head .overline {
  justify-content: center;
}

.section-head .overline::before { display: none; }

.section-head h2 {
  margin-bottom: 1.25rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.prog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.prog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.prog-featured {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 40px rgba(212, 175, 122, 0.15);
}

.prog-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.25rem 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.prog-tag.tag-hot {
  background: var(--accent);
  color: #15152a;
  border-color: var(--accent);
}

.prog-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.prog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.prog-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.prog-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
}

.prog-from {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prog-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 500;
}

.prog-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.prog-includes {
  list-style: none;
  display: grid;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.prog-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.prog-includes i {
  color: var(--accent);
  font-size: 0.75rem;
}

.prog-ideal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.chip {
  padding: 0.25rem 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.prog-link:hover { gap: 0.875rem; color: var(--accent); }

.locations {
  padding: 7rem 0;
  background: var(--surface);
  position: relative;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.loc-content h2 {
  margin-bottom: 2rem;
}

.loc-content > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.loc-features {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.loc-feat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.loc-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 400;
}

.loc-feat > span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.loc-visual {
  position: relative;
}

.loc-visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.loc-tags {
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  margin: 0 1.5rem;
  border: 1px solid var(--border);
}

.loc-tag {
  padding: 0.375rem 0.875rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text);
}

.kontakt {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 122, 0.08) 0%, transparent 50%);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-form-wrap h2 {
  margin-bottom: 1.5rem;
}

.kontakt-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.kontakt-promises {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.kontakt-promises li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.kontakt-promises i {
  color: var(--accent);
  width: 32px;
  height: 32px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.kontakt-form {
  display: grid;
  gap: 1rem;
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-row { display: grid; gap: 1rem; }

.form-row-2 { grid-template-columns: 1fr 1fr; }

.form-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.checkbox-wrap {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  align-items: flex-start;
}

.checkbox-wrap input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
  width: auto;
  flex-shrink: 0;
}

.checkbox-wrap a { text-decoration: underline; }

.kontakt-faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.faq-intro {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-intro i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.faq-intro h3 {
  margin-bottom: 0.25rem;
}

.faq-intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 1rem 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  list-style: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  color: var(--accent);
  flex-shrink: 0;
}

.faq-toggle .fa-minus { display: none; }

.faq-item[open] .faq-toggle .fa-plus { display: none; }
.faq-item[open] .faq-toggle .fa-minus { display: inline; }

.faq-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0.75rem 0 0.25rem;
}

.page-hero {
  padding: 6rem 0 4rem;
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-inner .overline {
  justify-content: center;
}

.page-hero-inner .overline::before { display: none; }

.page-hero-inner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.page-hero-inner > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.story {
  padding: 6rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.story-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--surface-2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}

.story-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}

.story-badge > span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-content h2 {
  margin-bottom: 2rem;
}

.story-content > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.story-quote {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
}

.story-quote i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.story-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
}

.values {
  padding: 6rem 0;
  background: var(--surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.value-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.3;
  font-weight: 300;
}

.value-card i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.team {
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.team-content h2 {
  margin-bottom: 2rem;
}

.team-content > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.team-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.team-signature span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
}

.team-signature span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.team-visual {
  position: relative;
}

.team-visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.team-stats {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 1rem;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.team-stat {
  flex: 1;
  text-align: center;
}

.team-stat span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.team-stat span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band-inner h2 {
  margin-bottom: 1rem;
}

.cta-band-inner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.prog-detail {
  padding: 5rem 0;
}

.pd-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
  position: relative;
}

.pd-featured {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-color: var(--accent);
}

.pd-visual {
  position: relative;
}

.pd-visual img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.pd-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.375rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pd-badge.badge-hot {
  background: var(--accent);
  color: #15152a;
  border-color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pd-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.pd-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.pd-sub {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-family: var(--font-display);
}

.pd-content > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pd-includes {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.pd-includes h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pd-includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.pd-includes li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
}

.pd-includes i {
  color: var(--accent);
  font-size: 0.75rem;
}

.pd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.pd-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pd-from {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pd-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--accent);
  font-weight: 500;
}

.pd-note {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.loc-intro {
  padding: 6rem 0 4rem;
}

.loc-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.loc-intro-content h2 {
  margin-bottom: 2rem;
}

.loc-intro-content > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.loc-intro-visual {
  position: relative;
}

.loc-intro-visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.loc-intro-stat {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.loc-intro-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}

.loc-intro-stat > span:last-child {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.loc-grid-section {
  padding: 4rem 0 6rem;
}

.loc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.loc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.loc-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.loc-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.loc-card-body {
  padding: 1.75rem;
}

.loc-card-body h3 {
  margin-bottom: 0.75rem;
}

.loc-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.loc-specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.loc-specs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background: var(--surface-2);
  border-radius: 20px;
}

.loc-specs i { color: var(--accent); }

.loc-more {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 760px;
  margin: 0 auto;
}

.loc-more p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.gifts {
  padding: 5rem 0;
}

.gifts-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.gift-visual {
  position: relative;
}

.gift-visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1/2;
  object-fit: cover;
  width: 100%;
}

.gift-features {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 0.5rem;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.gift-feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.gift-feat i {
  color: var(--accent);
  font-size: 1.25rem;
}

.gift-content h2 {
  margin-bottom: 2rem;
}

.gift-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gift-option {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.gift-option:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.gift-option i {
  color: var(--accent);
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gift-option h4 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.gift-option p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.gift-price {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.gift-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 1rem;
  text-align: center;
}

.legal-page {
  padding: 4rem 0 6rem;
  background: var(--surface);
  min-height: 70vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  word-break: break-word;
}

.legal-content h1 {
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.625rem;
  top: 0.5rem;
}

.callout {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.callout h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.callout p {
  margin-bottom: 0.5rem;
}

.thanks-page {
  padding: 5rem 0;
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
}

.thanks-icon i {
  font-size: 2.5rem;
  color: var(--accent);
}

.thanks-card h1 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.thanks-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thanks-personal {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.thanks-personal p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.thanks-personal p:last-child { margin-bottom: 0; }

.thanks-personal strong {
  color: var(--accent);
}

.thanks-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.thanks-steps h3 {
  margin-bottom: 1.25rem;
  text-align: center;
}

.thanks-step {
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  border-left: 2px solid var(--border);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.thanks-step:hover { border-left-color: var(--accent); }

.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}

.thanks-step h4 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.thanks-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.thanks-info {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  text-align: left;
  margin-bottom: 2rem;
}

.thanks-info i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.thanks-info h4 {
  margin-bottom: 0.5rem;
}

.thanks-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.site-footer {
  background: #050509;
  padding: 4rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid var(--border-soft);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.625rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent); }

.footer-date {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-contact {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  display: grid;
  gap: 1.5rem;
}

.disclaimer {
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 900px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 680px;
  width: calc(100% - 2rem);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: none;
}

.cookie-banner.active { display: block; }

.cookie-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.cookie-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.25rem;
}

.cookie-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.375rem;
  font-weight: 500;
}

.cookie-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  .prog-grid, .loc-cards, .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner, .philosophy-grid, .locations-grid, .kontakt-grid,
  .story-grid, .team-grid, .loc-intro-grid, .gifts-grid, .pd-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid var(--border);
  }
  .header-inner {
    align-items: center;
    min-height: auto;
    padding: 0.75rem 0;
  }
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
  }
  .logo-text {
    word-break: break-word;
    white-space: normal;
    text-align: left;
  }
  .header-right {
    flex-shrink: 0;
    align-self: center;
  }
  .header-cta { display: none; }
  .hero, .page-hero { padding-top: 3rem; padding-bottom: 3rem; }
  .philosophy, .programmes, .locations, .kontakt,
  .story, .values, .team, .cta-band, .gifts, .prog-detail,
  .loc-intro, .loc-grid-section, .legal-page, .thanks-page { padding: 4rem 0; }
  .prog-grid, .loc-cards, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .pd-includes ul { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .hero-scroll { display: none; }
  .cookie-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cookie-icon { margin: 0 auto; }
  .cookie-actions {
    flex-direction: row;
    justify-content: center;
  }
  .hero-frame { aspect-ratio: 3/4; }
  .philo-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    max-width: none;
  }
  .story-badge, .loc-tags, .team-stats, .gift-features,
  .loc-intro-stat {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 1.25rem 0 0;
  }
  .loc-tags { margin: 1rem 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-inner > *,
  .kontakt-grid > *,
  .philosophy-grid > *,
  .locations-grid > *,
  .story-grid > *,
  .team-grid > *,
  .loc-intro-grid > *,
  .gifts-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .logo-text,
  .ad-badge,
  .footer-col {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .kontakt-form {
    padding: 1.25rem;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
}