@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Allura&display=swap');

:root {
  --bg: #fbf8f4;
  --surface: #fffdf9;
  --surface-soft: #f5f0e9;
  --surface-tint: #eeebe2;
  --text: #433a32;
  --muted: #72685f;
  --muted-soft: #9a8f82;
  --accent: #4f5a42;
  --accent-rose: #c79081;
  --line: rgba(118, 103, 88, 0.18);
  --line-soft: rgba(118, 103, 88, 0.1);
  --shadow: 0 16px 40px rgba(87, 73, 60, 0.08);
  --max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #fdfbf8 0%, #f8f4ef 100%);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #fff;
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  min-height: 90px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; }

.brand-mark {
  width: auto;
  max-width: 140px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  overflow: visible;
  padding: 0;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-mark span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  color: #66705a;
}

.brand-mark small {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.54rem;
  letter-spacing: 0.34em;
  white-space: nowrap;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.main-nav a,
.nav-cta,
.btn {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
}

.main-nav a { color: #5e554c; }
.main-nav a:hover { color: var(--accent-rose); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent-rose); color: #fffdfb; box-shadow: 0 14px 28px rgba(199, 144, 129, 0.18); }
.btn-secondary { background: var(--accent); color: #fff; }
.btn-outline { border: 1px solid #868077; color: #5c544c; background: rgba(255, 255, 255, 0.9); }

main {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 90px);
  background: linear-gradient(180deg, #fdfaf6 0%, #fffdfa 100%);
  overflow: hidden;
}

.hero-layout {
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(340px, 540px) minmax(420px, 1fr);
  align-items: center;
  gap: 44px;
  padding: 40px 34px 72px;
  position: relative;
}

.hero-copy {
  padding-left: 26px;
  position: relative;
  z-index: 2;
}

.hero-logo-block {
  margin: 0 auto 36px;
  max-width: 320px;
  display: flex;
  justify-content: center;
}

.hero-logo-circle {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.hero-logo-circle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-logo-circle span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #65705a;
  line-height: 1;
}

.hero-logo-text {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #655e56;
}

.hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.6vw, 4.8rem);
  line-height: 1.02;
  font-weight: 500;
}

.hero h1 span {
  color: var(--accent-rose);
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  white-space: nowrap;
}

.hero p {
  margin: 24px 0 34px;
  max-width: 480px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
}

.image-placeholder span {
  display: none;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-hero {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero-curve {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -52px;
  height: 110px;
  z-index: 2;
  overflow: hidden;
}

.hero-curve::before,
.hero-curve::after {
  content: '';
  position: absolute;
  left: -10%;
  width: 120%;
  background: #fffdfa;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-curve::before {
  bottom: 0;
  height: 80px;
  opacity: 1;
  transform: scaleX(1.05);
}

.hero-curve::after {
  bottom: 18px;
  height: 70px;
  opacity: 0.85;
  transform: scaleX(1.15);
}

.section { width: 100%; }

.services {
  margin-top: 0;
  padding: 64px 34px 76px;
  background: #fffdfa;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 56px;
  text-align: center;
}

.section-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
}

.section-icon img {
  width: 60px;
  height: auto;
  display: block;
}

.section-label {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.15rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #504840;
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.service-card {
  position: relative;
  padding: 10px 24px 0;
  text-align: center;
}

.service-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(134, 118, 103, 0.2), transparent);
}

.service-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1ede7;
  color: #6f665d;
}

.service-icon img {
  width: 63px;
  height: 63px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 0.96rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4d463f;
}

.service-card p {
  margin: 0 auto;
  max-width: 210px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 44%) minmax(320px, 56%);
  align-items: stretch;
  background: linear-gradient(180deg, #faf7f2 0%, #fffdfa 100%);
}

.about-visual,
.about-copy { min-width: 0; }

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%);
}

.image-about {
  min-height: 540px;
  height: 100%;
  border-radius: 0;
}

.map-section {
  padding: 64px 34px;
  background: #fffdf9;
}

.map-container {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(380px, 1fr);
  gap: 32px;
  align-items: center;
}

.map-text {
  padding-right: 18px;
}

.map-text .section-label {
  margin-bottom: 14px;
  font-size: 0.88rem;
  letter-spacing: 0.32em;
  color: #504840;
}

.map-text h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 500;
  color: #433a32;
}

.map-text p {
  margin: 0;
  color: #72685f;
  font-size: 0.98rem;
  line-height: 1.8;
}

.map-frame {
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(87, 73, 60, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 1200px) {
  .map-container {
    grid-template-columns: 1fr;
  }
}

.about-copy {
  padding: 72px 68px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Impressum styling: match layout and typography of other content pages */
.impressum-content {
  padding: 48px 34px;
  background: #fffdf9;
}

.impressum-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 56px;
  background: transparent;
}

.impressum-inner h2 {
  margin: 18px 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.15rem;
  color: #433a32;
  font-weight: 500;
}

.impressum-inner p {
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 920px;
  line-height: 1.8;
}

.script-text {
  margin: 0 0 10px;
  font-family: 'Allura', cursive;
  font-size: 2.4rem;
  color: #c59a8a;
}

.about-copy h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  line-height: 1.04;
  font-weight: 500;
}

.about-copy h2 span {
  color: var(--accent-rose);
  font-style: italic;
  font-weight: 400;
}

.about-copy p {
  margin: 0 0 14px;
  max-width: 620px;
  color: var(--muted);
}

.about-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #585047;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.feature-dot {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1ede7;
}

.feature-dot img {
  width: 33px;
  height: auto;
  display: block;
}

.feature-icon-large {
  width: 42px;
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 56%) minmax(260px, 44%);
  align-items: stretch;
  background: linear-gradient(90deg, #e8e4d8 0%, #f2ede4 100%);
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 2;
  padding: 58px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cta-visual .image-placeholder {
  height: 100%;
}

.cta-visual .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  color: #a49280;
  background: rgba(255,255,255,0.65);
}

.cta-icon img {
  width: 32px;
  height: auto;
  display: block;
}

.cta-copy h2 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.08;
  font-weight: 500;
}

.cta-copy p {
  margin: 0 0 24px;
  max-width: 540px;
  color: #685f56;
}

.image-cta {
  min-height: 280px;
  height: 100%;
  border-radius: 0;
}

.site-footer {
  background: #fffdfa;
  border-top: 1px solid var(--line-soft);
  padding: 30px 32px 18px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 0;
}

.footer-brand,
.footer-column { padding: 12px 28px; }

.footer-column,
.footer-brand + .footer-column { border-left: 1px solid var(--line-soft); }

.footer-mark { width: 120px; }

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #564e47;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-bottom {
  max-width: var(--max);
  margin: 12px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted-soft);
  font-size: 0.84rem;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: #b88679;
  background: rgba(255,255,255,0.75);
}

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero,
  .hero-layout { min-height: auto; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .hero-copy {
    padding-left: 0;
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-visual {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .image-hero {
    min-height: 520px;
    border-radius: 0 0 0 80px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .service-card {
    padding: 18px 12px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line-soft);
  }

  .service-card::after { display: none; }

  .about,
  .cta-banner,
  .footer-grid { grid-template-columns: 1fr; }

  .footer-column,
  .footer-brand + .footer-column { border-left: 0; }
}

@media (max-width: 760px) {
  .site-header { position: static; }
  .header-inner { padding-inline: 16px; }
  .main-nav { gap: 12px 18px; }

  .main-nav a,
  .nav-cta,
  .btn {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .brand-mark { width: 86px; }
  .brand-mark span { font-size: 2.4rem; }

  .hero-layout { padding: 22px 16px 56px; }
  .hero-logo-circle { width: 130px; }
  .hero-logo-circle span { font-size: 3.8rem; }
  .hero-logo-text { font-size: 1.05rem; letter-spacing: 0.24em; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.4rem); }
  .hero p { font-size: 0.96rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .image-hero {
    min-height: 380px;
    border-radius: 0 0 0 44px;
  }

  .hero-curve {
    bottom: -46px;
    height: 96px;
  }

  .services { padding: 50px 16px 46px; }
  .section-label { font-size: 0.8rem; letter-spacing: 0.2em; }
  .service-grid,
  .about-icons { grid-template-columns: 1fr; }
  .about-copy { padding: 42px 18px; }
  .script-text { font-size: 2rem; }
  .image-about,
  .image-cta { min-height: 320px; }
  .map-frame { height: 320px; }
  .cta-copy { padding: 40px 18px; }
  .site-footer { padding: 20px 16px 16px; }
  .footer-brand,
  .footer-column { padding: 14px 0; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Page-specific styles for Über mich page */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: linear-gradient(180deg, #fdfaf6 0%, #fffdfa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 34px;
  overflow: hidden;
}

.page-hero-about {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(260px, 380px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 64px max(34px, 8vw) 76px;
}

.page-hero-content {
  max-width: var(--max);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  line-height: 1.02;
  font-weight: 500;
  color: #433a32;
}

.page-hero-subtitle {
  margin: 0;
  font-family: 'Allura', cursive;
  font-size: 2.4rem;
  color: #c79081;
}

.page-hero-about .page-hero-content {
  text-align: left;
}

.page-hero-about .about-photo-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(87, 73, 60, 0.12);
}

.page-hero-about .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero-curve {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -48px;
  height: 100px;
  z-index: 3;
  overflow: hidden;
}

.page-hero-curve::before {
  content: '';
  position: absolute;
  left: -10%;
  width: 120%;
  height: 70px;
  bottom: 0;
  background: #fffdfa;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.05);
}

.about-page {
  width: 100%;
  padding: 72px 34px 64px;
  background: #fffdfa;
}

.about-page-content {
  max-width: 780px;
  margin: 0 auto;
}

.about-intro {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  color: #c79081;
  margin: 0 0 48px;
  line-height: 1.6;
}

.about-text-block {
  margin-bottom: 46px;
}

.about-text-block h2 {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.1;
  font-weight: 500;
  color: #433a32;
}

.about-text-block p {
  margin: 0 0 14px;
  color: #72685f;
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

.about-tagline {
  margin-top: 58px;
  padding: 44px 32px;
  background: linear-gradient(180deg, #faf7f2 0%, #f5f0e9 100%);
  border-radius: 16px;
  text-align: center;
}

.tagline-main {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #433a32;
}

.tagline-sub {
  margin: 0;
  font-size: 1.08rem;
  color: #72685f;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.about-cta {
  text-align: center;
  margin-top: 42px;
}

.about-cta .btn {
  min-width: 240px;
}

@media (max-width: 760px) {
  .page-hero {
    padding: 48px 16px;
    min-height: auto;
  }

  .page-hero-about {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 16px 64px;
  }

  .page-hero-about .page-hero-content {
    text-align: center;
  }

  .page-hero-about .about-photo-frame {
    width: min(100%, 340px);
    justify-self: center;
    border-radius: 16px;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .page-hero-subtitle {
    font-size: 1.8rem;
  }

  .page-hero-curve {
    bottom: -40px;
    height: 80px;
  }

  .page-hero-curve::before {
    height: 60px;
  }

  .about-page {
    padding: 48px 16px 40px;
  }

  .about-page-content {
    max-width: 100%;
  }

  .about-intro {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .about-text-block {
    margin-bottom: 32px;
  }

  .about-text-block h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .about-text-block p {
    font-size: 1rem;
  }

  .about-tagline {
    padding: 32px 20px;
    margin-top: 40px;
  }

  .tagline-main {
    font-size: 2rem;
  }

  .tagline-sub {
    font-size: 1rem;
  }

  .about-cta .btn {
    min-width: 100%;
  }
}

/* Packages Section Styles */
.packages-section {
  width: 100%;
  padding: 72px 34px 64px;
  background: #fffdfa;
}

.packages-container {
  max-width: 780px;
  margin: 0 auto;
}

.package-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-item {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #fffdf9;
  overflow: hidden;
  transition: box-shadow 300ms ease;
}

.package-item.active {
  box-shadow: 0 12px 32px rgba(87, 73, 60, 0.12);
}

.package-toggle {
  width: 100%;
  padding: 28px 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background-color 200ms ease;
}

.package-item.active .package-toggle {
  background: linear-gradient(180deg, #faf7f2 0%, #f5f0e9 100%);
}

.package-toggle:hover {
  background: rgba(79, 90, 66, 0.04);
}

.package-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #433a32;
  text-align: left;
  margin: 0;
}

.package-toggle-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #c79081;
  transition: transform 300ms ease;
  font-weight: 300;
}

.package-item.active .package-toggle-icon {
  transform: rotate(45deg);
}

.package-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.package-item.active .package-content {
  max-height: 2000px;
}

.package-inner {
  padding: 0 32px 28px;
  border-top: 1px solid var(--line-soft);
}

.package-tagline {
  margin: 24px 0 12px;
  font-family: 'Allura', cursive;
  font-size: 1.4rem;
  color: #c79081;
}

.package-price {
  margin: 0 0 20px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #433a32;
  letter-spacing: 0.02em;
}

.package-description {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: #72685f;
}

.package-inner h3 {
  margin: 22px 0 12px;
  font-size: 0.96rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #504840;
}

.package-features {
  margin: 0 0 18px;
  padding-left: 20px;
  list-style: none;
  color: #72685f;
  font-size: 0.98rem;
  line-height: 1.8;
}

.package-features li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 18px;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4f5a42;
  font-weight: 600;
}

.package-balance-text {
  margin-top: 18px;
  padding: 16px;
  background: rgba(79, 90, 66, 0.06);
  border-left: 3px solid #4f5a42;
  font-size: 0.98rem;
  color: #504840;
  font-weight: 500;
  border-radius: 4px;
}

.package-cta {
  margin-top: 24px;
}

.btn-small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.68rem;
}

.services-note {
  width: 100%;
  padding: 64px 34px;
  background: linear-gradient(180deg, #faf7f2 0%, #f5f0e9 100%);
}

.note-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.note-content p {
  margin: 0 0 16px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #72685f;
}

.note-content p:first-child {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  color: #c79081;
  margin-bottom: 18px;
}

.note-content p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

.note-content h3 {
  margin: 28px 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #433a32;
  font-weight: 500;
}

.note-content .source {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: none;
}

.leistungen-intro {
  width: 100%;
  padding: 32px 34px 40px;
  background: #fffdfa;
}

.leistungen-intro p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #72685f;
  text-align: center;
}

/* Legal / cancellation text below note-content */
.services-legal {
  max-width: var(--max);
  margin: 32px auto 64px;
  padding: 48px 34px;
  color: #72685f;
  font-size: 1.02rem;
  line-height: 1.9;
}

.services-legal .note-content {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 40px;
}

.services-legal .legal-item + .legal-item {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}

.services-legal h3 {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 1.8rem);
  color: #433a32;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.services-legal p {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
}

.services-legal .source {
  margin-top: 28px;
  margin-bottom: 0;
  padding-top: 12px;
  font-size: 0.9rem;
  color: var(--muted-soft);
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 760px) {
  .services-legal {
    margin: 40px auto 48px;
    padding: 48px 16px;
  }
  .services-legal .note-content { 
    padding-top: 32px;
  }
}

@media (max-width: 760px) {
  .packages-section {
    padding: 48px 16px 40px;
  }

  .packages-container {
    max-width: 100%;
  }

  .package-accordion {
    gap: 12px;
  }

  .package-toggle {
    padding: 20px 16px;
  }

  .package-title {
    font-size: 1.3rem;
  }

  .package-toggle-icon {
    width: 28px;
    height: 28px;
    font-size: 1.6rem;
  }

  .package-inner {
    padding: 0 16px 20px;
  }

  .package-tagline {
    font-size: 1.2rem;
    margin: 16px 0 8px;
  }

  .package-price {
    font-size: 1rem;
  }

  .package-features {
    padding-left: 16px;
    font-size: 0.95rem;
  }

  .services-note {
    padding: 48px 16px;
  }

  .note-content p {
    font-size: 1.02rem;
  }

  .note-content p:first-child {
    font-size: 1.6rem;
  }
}

/* Contact page */
.contact-section {
  padding: 72px 34px 84px;
  background: #fffdfa;
}

.contact-layout {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 72px;
  align-items: start;
}

.contact-intro {
  padding-top: 12px;
}

.contact-intro .script-text {
  margin-bottom: 12px;
}

.contact-intro h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 3.4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 500;
  color: #433a32;
}

.contact-intro > p:not(.script-text) {
  max-width: 430px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.contact-intro .contact-note {
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: #5f564d;
  font-size: 0.94rem;
}

.contact-form {
  padding: 36px;
  background: linear-gradient(180deg, #faf7f2 0%, #f5f0e9 100%);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #504840;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(118, 103, 88, 0.24);
  border-radius: 6px;
  padding: 12px 14px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--text);
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field select {
  cursor: pointer;
}

.form-field input:not([type="checkbox"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-rose);
  background: #fffdf9;
  box-shadow: 0 0 0 3px rgba(199, 144, 129, 0.18);
}

.form-field [aria-invalid="true"] {
  border-color: #b6655b;
}

.form-error {
  display: block;
  min-height: 1.35em;
  margin-top: 5px;
  color: #a34f48;
  font-size: 0.82rem;
  line-height: 1.4;
}

.form-consent {
  margin-top: 4px;
}

.consent-control {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-control input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent-control label {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  cursor: pointer;
}

.form-status {
  min-height: 1.5em;
  margin: 2px 0 16px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.is-success { color: #4f5a42; }
.form-status.is-error { color: #a34f48; }

.contact-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 760px) {
  .contact-section {
    padding: 48px 16px 56px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-intro {
    padding-top: 0;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 12px;
  }
}

/* Tablet layout refinements */
@media (max-width: 1100px) and (min-width: 761px) {
  .header-inner {
    grid-template-columns: 120px 1fr auto;
    min-height: 78px;
    padding: 10px 20px;
    gap: 14px;
  }

  .brand-mark { max-width: 110px; }

  .main-nav {
    gap: 18px;
  }

  .main-nav a,
  .nav-cta,
  .btn {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero-layout {
    padding-inline: 24px;
  }

  .services,
  .map-section,
  .contact-section {
    padding-inline: 24px;
  }
}

@media (max-width: 900px) {
  .page-hero-about {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 24px 72px;
  }

  .page-hero-about .page-hero-content {
    text-align: center;
  }

  .page-hero-about .about-photo-frame {
    width: min(100%, 360px);
    justify-self: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 700px;
  }

  .contact-intro > p:not(.script-text) {
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    gap: 12px;
  }

  .main-nav {
    gap: 10px 14px;
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .page-hero-subtitle {
    font-size: 1.65rem;
  }

  .page-hero-about {
    gap: 22px;
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .page-hero-about .about-photo-frame {
    width: min(100%, 310px);
  }

  .contact-form {
    padding: 22px 16px;
  }

  .form-field {
    margin-bottom: 16px;
  }

  .form-field input:not([type="checkbox"]),
  .form-field select,
  .form-field textarea {
    padding: 11px 12px;
  }

  .map-frame {
    height: 280px;
  }
}

/* Cookie banner styles */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px rgba(87,73,60,0.12);
  border-radius: 12px;
  z-index: 9999;
  padding: 18px;
}
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.cookie-copy { flex: 1 1 60%; color: var(--muted); }
.cookie-copy strong { display:block; font-family: 'Cormorant Garamond', serif; font-size:1.05rem; color: #433a32; margin-bottom:6px; }
.cookie-copy p { margin:0; }
.cookie-actions { display:flex; gap:10px; align-items:center; }
.cookie-btn-accept { min-width: 180px; }
.cookie-panel { margin-top:12px; padding: 12px 0 0; }
.cookie-panel-inner { padding: 12px; border-top: 1px solid var(--line-soft); }
.cookie-panel label { display:block; margin: 10px 0; color: var(--muted); }
.cookie-panel-actions { display:flex; gap:10px; justify-content:flex-end; margin-top:12px; }
.cookie-note { font-size:0.9rem; color:var(--muted-soft); margin-top:12px; }

@media (max-width: 760px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}
