:root {
  --navy: #143245;
  --navy-soft: #1F4A60;
  --petrol: #62929A;
  --petrol-deep: #467178;
  --cream: #FBF6ED;
  --cream-soft: #F4ECDB;
  --coral: #E37856;
  --coral-deep: #C95F3A;
  --gold: #E0A53A;
  --gold-deep: #B98620;
  --ink: #1A2A35;
  --ink-soft: #4A5862;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "wght" 400, "opsz" 14;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--petrol);
  min-height: 100vh;
}
a { color: var(--coral-deep); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--navy); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* === HEADER === */
.site-header {
  background: var(--navy);
  padding: 1.5rem 0 1.25rem;
  position: relative;
  border-bottom: 4px solid var(--gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--coral);
  line-height: 1;
}
.brand-text {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 0.95;
  color: var(--coral);
  letter-spacing: -0.005em;
}
.brand-text small {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-top: 0.05rem;
}
.brand-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
nav a {
  display: inline-block;
  color: var(--ink);
  background: var(--cream);
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-variation-settings: "wght" 500;
  border: 1.5px solid var(--cream);
  transition: all 0.2s;
}
nav a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--cream);
}
nav a.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--cream);
}

/* === HERO CARD === */
.hero {
  padding: 3.5rem 0 2rem;
}
.hero-card {
  background: var(--cream);
  border: 3px solid var(--coral);
  border-radius: 32px;
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: 0 12px 40px rgba(20, 50, 69, 0.15);
}
.hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-photo {
  position: relative;
}
.hero-photo .polaroid {
  background: var(--cream);
  padding: 14px 14px 18px;
  border: 1.5px solid var(--coral);
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(20, 50, 69, 0.18);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}
.hero-photo .polaroid:hover { transform: rotate(0deg) scale(1.02); }
.hero-photo img {
  display: block;
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 3px;
}

.hero-bubble {
  position: absolute;
  top: -28px; right: -32px;
  width: 64px; height: 64px;
}

.hero-text h1 {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  color: var(--petrol-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}

.hero-text p.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.75rem;
  max-width: 36rem;
  font-variation-settings: "wght" 400;
}

.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  background: var(--navy);
  color: var(--cream);
  font-variation-settings: "wght" 500;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: all 0.25s;
  border: 2px solid var(--navy);
  cursor: pointer;
}
.btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn .arrow { transition: transform 0.25s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* Decorative botanicals corner */
.hero-decoration {
  position: absolute;
  bottom: -8px; right: 22px;
  width: 135px; height: auto;
  pointer-events: none;
  opacity: 0.95;
}

/* === AUDIENCE === */
.audience {
  padding: 4rem 0 5rem;
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--cream);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: "wght" 600;
  margin-bottom: 0.85rem;
}
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "wght" 500, "opsz" 36;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.section-head h2 .script {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.15em;
  display: inline-block;
  letter-spacing: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.25rem 1.85rem;
  border: 2px solid var(--cream);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.audience-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20, 50, 69, 0.18);
}
.audience-card .leaf {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.audience-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "wght" 600, "opsz" 22;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.audience-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* === PERSÖNLICHE BETREUUNG === */
.touch {
  padding: 2rem 0 5rem;
}
.touch-card {
  background: var(--navy);
  border-radius: 32px;
  padding: 3.5rem 3rem;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.touch-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.15;
}
.touch-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 220px; height: 220px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.12;
}
.touch-card > * { position: relative; z-index: 1; }
.touch-card h2 {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.touch-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--cream);
  opacity: 0.95;
}

.touch-card .btn {
  background: var(--coral);
  border-color: var(--coral);
}
.touch-card .btn:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.touch-card .btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.touch-card .btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  padding: 2.5rem 0 1.75rem;
  color: var(--cream);
  border-top: 4px solid var(--gold);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--coral);
  line-height: 1;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--cream);
  font-size: 0.92rem;
  font-variation-settings: "wght" 400;
}
.footer-links a:hover { color: var(--coral); }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(251, 246, 237, 0.15);
  font-size: 0.85rem;
  text-align: center;
  color: var(--cream);
  opacity: 0.7;
}

/* === MOBILE === */
@media (max-width: 800px) {
  .container { padding: 0 1.25rem; }
  .header-inner { gap: 1rem; }
  .brand-text { font-size: 1.95rem; }
  .brand-text small { font-size: 1.3rem; }
  .brand-icon { width: 42px; height: 42px; flex-basis: 42px; }
  nav ul { gap: 0.4rem; width: 100%; justify-content: flex-start; }
  nav a { padding: 0.4rem 0.85rem; font-size: 0.82rem; }
  .hero-card { padding: 2rem 1.5rem; border-radius: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .hero-photo { justify-self: center; }
  .hero-text h1 { font-size: 2.1rem; }
  .btn-row { justify-content: center; }
  .hero-decoration { width: 95px; bottom: -6px; right: 12px; opacity: 0.85; }
  .audience-grid { grid-template-columns: 1fr; gap: 1rem; }
  .touch-card { padding: 2.5rem 1.5rem; border-radius: 24px; }
  .audience { padding: 3rem 0 3rem; }
  .hero-bubble { width: 50px; height: 50px; top: -20px; right: -10px; }
}