:root {
  --yellow: #FFC93C;
  --coral: #FF6B5B;
  --plum: #2B1F3D;
  --cream: #FFF8EC;
  --white: #FFFFFF;
  --text: #2B1F3D;
  --muted: #6B6178;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo, .btn {
  font-family: 'Fredoka', sans-serif;
}

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

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

/* Promo bar */
.promo-bar {
  background: var(--coral);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
}

.promo-bar p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.promo-bar a {
  text-decoration: underline;
  font-weight: 700;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 100;
  border-bottom: 2px solid rgba(43, 31, 61, 0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--plum);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--coral); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 91, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: var(--yellow);
  color: var(--plum);
}

/* Hero */
.hero {
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, var(--cream) 0%, #FFEFD1 100%);
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

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

.location-box {
  background: var(--white);
  border: 2px solid rgba(43, 31, 61, 0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 auto 36px;
  max-width: 480px;
  text-align: left;
}

.location-label {
  font-weight: 700;
  color: var(--plum);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.location-address {
  color: var(--muted);
  margin-bottom: 12px;
}

.location-link {
  color: var(--coral);
  font-weight: 700;
}

/* Sections */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 680px;
  text-align: center;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--yellow);
}

.testimonial-video {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin: 8px auto 24px;
}

.testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--plum);
  color: var(--white);
  text-align: center;
}

.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.75); }
.section-dark .btn-ghost { color: var(--white); border-color: var(--white); }
.section-dark .offer-tag { color: var(--plum); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
}

.card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--coral);
}

.card p { margin: 0; color: var(--muted); }

#kontakt .section-inner {
  max-width: 1040px;
}

.cal-inline-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: visible;
  margin: 32px 0 8px;
}

.cal-inline-wrap > div {
  width: 100%;
  min-height: 950px;
  height: auto;
}

@media (max-width: 720px) {
  .cal-inline-wrap > div { min-height: 780px; }
}

.contact-direct {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Fredoka', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-tagline {
  margin: 4px 0 20px;
  color: var(--yellow);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.social-links a { color: rgba(255, 255, 255, 0.75); }
.social-links a:hover { color: var(--yellow); }

.footer-copy { font-size: 0.85rem; }

/* Cookie banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 2px solid rgba(43, 31, 61, 0.12);
  padding: 18px 24px;
  box-shadow: 0 -8px 24px rgba(43, 31, 61, 0.15);
}

.cookie-banner.is-visible {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-banner p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  max-width: 620px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 56px 20px 70px; }
  .section { padding: 56px 20px; }
}
