/* ============================================================
   ROSARIUM APOTHEKE — Main Stylesheet
   Colors: Forest Green #1e5c2e | Burgundy-Rose #852038 | Warm Ivory #f8f6f0
   ============================================================ */

/* ── Variables ── */
:root {
  --green:        #1e5c2e;
  --green-light:  #26713a;
  --green-pale:   #e4f0e8;
  --crimson:      #852038;
  --crimson-light:#a32842;
  --crimson-pale: #fdf0f3;
  --gold:         #c8a84b;
  --white:        #ffffff;
  --off-white:    #f8f6f0;
  --gray-50:      #f5f3ee;
  --gray-100:     #edeae3;
  --gray-200:     #dbd8cf;
  --gray-400:     #9c9888;
  --gray-600:     #696455;
  --gray-900:     #252018;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm:    0 2px 8px rgba(30,92,46,.08);
  --shadow-md:    0 6px 24px rgba(30,92,46,.14);
  --shadow-lg:    0 16px 48px rgba(30,92,46,.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section defaults ── */
.section { padding: 88px 0; }

.section-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(30,92,46,.2);
}
.section-badge--light {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title--white { color: var(--white); }
.section-title--white em { color: rgba(255,255,255,.8); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 16px;
}
#team .section-subtitle {
  white-space: nowrap;
}

.rose-divider { margin: 16px auto 0; width: 200px; display: block; }
.rose-divider--left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--crimson {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn--crimson:hover {
  background: var(--crimson-light);
  border-color: var(--crimson-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-200);
}
.btn--outline-dark:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 8px 18px; font-size: .82rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.topbar a:hover { color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.14); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img { width: 52px; height: 52px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 500;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--green); background: var(--green-pale); }
.nav__link--cta {
  background: var(--crimson);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--crimson-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1e5c2e 0%, #0d3318 52%, #1e0d14 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='white' opacity='.06'/%3E%3C/svg%3E");
}

.rose-deco {
  position: absolute;
  width: 180px;
  opacity: .4;
}
.rose-deco--left { left: -20px; top: 10%; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 0 60px;
}

.hero__welcome {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: rgba(255,255,255,.95);
  margin-bottom: 16px;
  letter-spacing: .02em;
  line-height: 1.15;
}
.hero__welcome em {
  font-style: italic;
  color: #b5d9a0;
}

.hero__badge {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.25);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.35;
  margin-bottom: 20px;
  white-space: nowrap;
}
.hero__title em {
  color: #b5d9a0;
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  animation: bounce 2s infinite;
  transition: all var(--transition);
}
.hero__scroll a:hover { border-color: var(--white); color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   INFO STRIP
   ============================================================ */
.infostrip {
  background: var(--crimson);
  padding: 20px 0;
}
.infostrip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.infostrip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.infostrip__item i {
  font-size: 1.4rem;
  opacity: .8;
  flex-shrink: 0;
}
.infostrip__item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.infostrip__item strong {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .7;
}
.infostrip__item span {
  font-size: .95rem;
  font-weight: 500;
}
.infostrip__item a { color: inherit; }
.infostrip__item a:hover { opacity: .8; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen { background: var(--off-white); }

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

.leistung-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.leistung-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--crimson));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}
.leistung-card:hover::before { transform: scaleX(1); }

.leistung-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.leistung-card__icon i {
  font-size: 1.4rem;
  color: var(--green);
}
.leistung-card:hover .leistung-card__icon {
  background: var(--green);
}
.leistung-card:hover .leistung-card__icon i { color: var(--white); }

.leistung-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.leistung-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   REZEPT
   ============================================================ */
.rezept {
  position: relative;
  overflow: hidden;
}
.rezept__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a5228 0%, #0a2c14 52%, #1e0d14 100%);
}
.rezept__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0;
}
.rezept__text p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.rezept__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.rezept__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--white);
}
.rezept__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Coming Soon styles */
.rezept__coming-soon { margin-bottom: 24px; }
.coming-soon-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 20px;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 600;
}
.coming-soon-feature i {
  color: var(--gold);
  font-size: 1rem;
  animation: pulse 2s infinite;
}
.rezept__actions--disabled { opacity: .6; pointer-events: none; }
.rezept__actions--disabled .btn { cursor: not-allowed; }

.rezept__card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}
.rezept__card-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  opacity: .7;
}
.rezept__card-badge {
  display: inline-block;
  background: var(--crimson);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.rezept__card p {
  color: rgba(255,255,255,.8);
  margin: 0 0 28px;
  font-size: .9rem;
}
.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px;
}
.qr-placeholder i { font-size: 3rem; opacity: .5; }
.qr-placeholder span { font-size: .8rem; opacity: .6; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--white); }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.team-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo--placeholder {
  background: linear-gradient(135deg, var(--green-pale), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo--placeholder i {
  font-size: 2.2rem;
  color: var(--white);
  opacity: .9;
}
.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: .8rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.team__cta { text-align: center; }
.team__cta p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ============================================================
   NOTDIENST
   ============================================================ */
.notdienst {
  background: #1a201c;
  padding: 60px 0;
}
.notdienst__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.notdienst__icon {
  width: 72px;
  height: 72px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  flex-shrink: 0;
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155,27,27,.4); }
  50% { box-shadow: 0 0 0 12px rgba(155,27,27,0); }
}
.notdienst__text { flex: 1; min-width: 280px; }
.notdienst__text h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.notdienst__text p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  font-size: .95rem;
}
.notdienst__links { display: flex; gap: 14px; flex-wrap: wrap; }
.notdienst__links .btn--outline-dark {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}
.notdienst__links .btn--outline-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

/* ============================================================
   ÖFFNUNGSZEITEN
   ============================================================ */
.oezeiten { background: var(--off-white); }
.oezeiten__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.hours-row td {
  padding: 13px 8px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
}
.hours-row:last-child td { border-bottom: none; }
.hours-row.today td {
  background: var(--green-pale);
  font-weight: 600;
}
.hours-row.today td:first-child { border-left: 3px solid var(--green); padding-left: 12px; }
.hours-day { font-weight: 500; min-width: 120px; }
.hours-time { color: var(--gray-600); }
.badge-open {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-closed {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hours-note {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .83rem;
  color: var(--gray-600);
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--gray-100);
}
.hours-note i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

.oezeiten__map { position: relative; }
.oezeiten__map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.map-overlay-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.map-overlay-info i {
  color: var(--crimson);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.map-overlay-info > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.map-overlay-info strong { font-size: .9rem; }
.map-overlay-info span {
  font-size: .8rem;
  color: var(--gray-600);
}
.map-overlay-info a {
  font-size: .8rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.map-overlay-info a:hover { color: var(--green-light); }

/* ============================================================
   TERMIN
   ============================================================ */
.termin { background: var(--white); }
.termin__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.termin-option {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}
.termin-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.termin-option--featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.termin-option--featured h3 { color: rgba(255,255,255,.9); }

.termin-option__icon {
  width: 64px;
  height: 64px;
  background: rgba(30,92,46,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--green);
  transition: all var(--transition);
}
.termin-option--featured .termin-option__icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.termin-option h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.termin-option p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 24px;
}
.termin-option--featured p { color: rgba(255,255,255,.9); }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--gray-50); }
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.kontakt__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.kontakt__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  font-size: 1rem;
}
.kontakt__detail strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.kontakt__detail p { font-size: .95rem; line-height: 1.6; }
.kontakt__detail a { color: var(--green); }
.kontakt__detail a:hover { text-decoration: underline; }

.kontakt__social {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.social-btn {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.social-btn--wa:hover { background: #25d366; }

/* Form */
.kontakt__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.kontakt__form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  margin-bottom: 20px;
}
.form__group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,92,46,.08);
}
.form__group--checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form__group--checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form__group--checkbox label {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  color: var(--gray-600);
}
.form__group--checkbox a { color: var(--green); text-decoration: underline; }
.form__success {
  display: none;
  margin-top: 16px;
  background: var(--green-pale);
  color: var(--green);
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  align-items: center;
  gap: 8px;
}
.form__success.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer__main {
  background: #181d16;
  padding: 72px 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand p {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.footer__logo-img { width: 44px; height: 44px; object-fit: contain; }
.footer__logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--green);
  color: var(--white);
}

.footer__col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.footer__col li a:hover { color: var(--white); }
.footer__col address p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 12px;
  line-height: 1.55;
}
.footer__col address i { color: var(--green-light); margin-top: 3px; flex-shrink: 0; }
.footer__col address a { color: rgba(255,255,255,.8); }
.footer__col address a:hover { color: var(--white); }

.footer__bottom {
  background: #111410;
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 1000;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-light); transform: translateY(-3px); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--green);
  box-shadow: 0 -8px 32px rgba(0,0,0,.12);
  z-index: 10000;
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__inner p {
  flex: 1;
  font-size: .88rem;
  color: var(--gray-600);
  min-width: 260px;
}
.cookie-banner__inner a { color: var(--green); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .infostrip__inner { grid-template-columns: repeat(2, 1fr); }
  .leistungen__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .oezeiten__inner,
  .rezept__inner,
  .kontakt__grid { grid-template-columns: 1fr; gap: 40px; }
  .rezept__inner { padding: 48px 0; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .termin__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .oezeiten__text { text-align: center; }
  .oezeiten__text .rose-divider--left { margin: 16px auto 0; }
  .hours-table { text-align: left; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar__right { display: none; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all .3s ease;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .nav__list { flex-direction: column; gap: 8px; text-align: center; }
  .nav__link { font-size: 1.1rem; padding: 12px 32px; }
  .burger { display: flex; z-index: 999; position: relative; }

  .hero { min-height: auto; }
  .hero__content { padding: 16px 16px 64px; }
  .hero__scroll { bottom: 12px; }
  .hero__welcome { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 12px; }
  .hero__title { font-size: clamp(1.2rem, 4.5vw, 1.6rem); white-space: nowrap; margin-bottom: 16px; }
  .hero__badge { margin-bottom: 16px; }
  .hero__subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero__actions { margin-bottom: 32px; justify-content: center; }
  .hero__actions .btn { padding: 10px 20px; font-size: .82rem; }
  .hero__stats { gap: 4px; flex-wrap: nowrap; justify-content: center; align-items: center; width: 100%; display: flex; }
  .hero__stat { text-align: center; min-width: 0; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .stat-number { font-size: 1.1rem; line-height: 1; display: block; }
  .stat-label { font-size: .5rem; line-height: 1.2; text-transform: uppercase; letter-spacing: .02em; display: block; }
  .hero__stat-divider { height: 20px; flex-shrink: 0; align-self: center; }
  .hero__actions { flex-direction: column; max-width: 360px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .leistungen__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .notdienst__inner { flex-direction: column; text-align: center; }
  .notdienst__links { justify-content: center; }

  /* Rezept section mobile */
  .rezept__inner { padding: 16px 16px 32px; }
  .rezept__text p { font-size: .95rem; margin-bottom: 24px; }
  .rezept__actions { flex-direction: column; max-width: 320px; margin: 0 auto; }
  .rezept__actions .btn { width: 100%; justify-content: center; padding: 10px 20px; font-size: .82rem; }
  .rezept__card { padding: 32px 24px; }
  .rezept__steps li { font-size: .9rem; }
  .coming-soon-feature { font-size: .8rem; padding: 6px 14px; }

  /* Allow team subtitle to wrap on mobile */
  #team .section-subtitle { white-space: normal; }

  /* Center section headers on mobile */
  .section-header { text-align: center; }
  .rose-divider--left { margin: 16px auto 0; }

  /* Kontakt grid stacks on mobile */
  .kontakt__grid { gap: 32px; }
}

@media (max-width: 480px) {
  .infostrip__inner { grid-template-columns: 1fr; gap: 12px; }
  .hero__title { font-size: 1.3rem; white-space: nowrap; }
  .section-title { font-size: 1.8rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATIONS — simple fade-in on scroll
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
