/* ============================================
   MICHALEK FOTOGRAFIE – LANDINGPAGE
   Umgesetzt nach Canva-Design
   ============================================ */

:root {
  /* Palette */
  --cream:        #efe4d9;   /* Haupt-Hintergrund Hero */
  --cream-alt:    #eadcd0;   /* zweite Section */
  --cream-soft:   #f4ebe1;   /* sehr helle Variante */
  --rose-light:   #e9d2c4;   /* Karten in Problem-Sektion */
  --rose:         #c19a87;   /* Accent/Highlights, italic Wörter */
  --rose-deep:    #b68976;   /* dunklere mauve-rosé für Footer-Section */
  --taupe:        #4e3f36;   /* Dunkle Buttons & Text */
  --taupe-soft:   #6b5a4d;   /* Body text warm */
  --text:         #3a2f27;
  --text-muted:   #7a695c;
  --white:        #ffffff;
  --line:         rgba(78, 63, 54, 0.12);

  /* Typografie */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Spacing & Shape */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 18px rgba(78, 63, 54, 0.08);
  --shadow-md: 0 10px 40px rgba(78, 63, 54, 0.12);

  --container: 1100px;
}

/* ------- RESET / BASE ------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .75; }

button, input, select, textarea { font: inherit; color: inherit; }

/* ------- LAYOUT ------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }

.section {
  padding: clamp(70px, 10vw, 130px) 0;
}

.section--cream   { background: var(--cream); }
.section--alt     { background: var(--cream-alt); }
.section--rose    { background: var(--rose-deep); color: var(--white); }

/* ------- TYPOGRAPHY ------- */
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 6.2vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 20px;
}
.display em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}
.display--md { font-size: clamp(32px, 4.8vw, 54px); }
.display--light, .display--light em { color: var(--white); }
.display--light em { opacity: 0.85; }

.lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}
.lead--light { color: rgba(255, 255, 255, 0.88); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 22px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.sparkle {
  color: var(--rose);
  font-size: 22px;
  letter-spacing: 0.2em;
  margin-top: 40px;
  opacity: 0.75;
}
.sparkle--center { text-align: center; margin: 60px 0 0; }

/* ------- BUTTONS ------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }

.btn--dark {
  background: var(--taupe);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(78, 63, 54, 0.22);
}
.btn--dark:hover { background: #3a2f27; box-shadow: 0 10px 30px rgba(78, 63, 54, 0.32); }

.btn--light {
  background: var(--white);
  color: var(--taupe);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}
.btn--light:hover { background: var(--cream-soft); }

/* ------- NAV / HERO ------- */
.hero {
  background: var(--cream);
  padding-bottom: clamp(60px, 8vw, 90px);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}
.nav__brand em { color: var(--rose); font-style: italic; }
.nav__cta {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--taupe);
  border-radius: 999px;
  color: var(--taupe);
  transition: background .2s ease, color .2s ease;
}
.nav__cta:hover { background: var(--taupe); color: var(--white); opacity: 1; }

.hero__content {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 110px) 24px 0;
  text-align: center;
}
.hero__content .display { margin-bottom: 24px; }
.hero__content .sparkle { display: block; margin-top: 56px; }

/* ------- PROBLEM ------- */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.problem__photo img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.problem__card {
  background: var(--rose-light);
  padding: 48px 40px;
  border-radius: var(--radius-md);
  text-align: center;
}
.problem__card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 18px;
  color: var(--taupe);
}
.problem__card p {
  color: var(--taupe-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 720px) {
  .problem { grid-template-columns: 1fr; gap: 28px; }
  .problem__card { padding: 36px 28px; }
}

/* ------- VIDEO ------- */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cream-soft), var(--rose-light));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ------- GALLERY ------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 800px;
  margin: 50px auto 60px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ------- PACKAGE BOX ------- */
.package {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 40px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.package h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--taupe);
}
.package p {
  color: var(--taupe-soft);
  margin: 0 0 20px;
  font-size: 15.5px;
}
.package__price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.price {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--rose);
  font-style: italic;
}
.dot { color: var(--rose); font-size: 18px; }
.price-label {
  font-size: 15px;
  color: var(--taupe-soft);
}

/* ------- FEATURES ------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 60px 0 50px;
}
.feature {
  background: var(--rose-light);
  padding: 34px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: var(--taupe);
}
.feature__icon svg { width: 100%; height: 100%; }
.feature h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--taupe);
  margin: 0 0 10px;
}
.feature p {
  font-size: 14px;
  color: var(--taupe-soft);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}

/* ------- STEPS ------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.steps li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.steps__num {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream-alt);
  color: var(--rose);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.steps__label {
  font-size: 14px;
  color: var(--taupe-soft);
  max-width: 140px;
}

@media (max-width: 820px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* ------- UPGRADE PACKAGES ------- */
.packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 55px 0 20px;
}
.pkg {
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 34px 20px 28px;
  text-align: center;
  color: var(--taupe);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.pkg__grid {
  display: grid;
  gap: 4px;
  width: 72px;
  margin: 0 auto 20px;
  aspect-ratio: 1/1;
}
.pkg__grid span {
  background: var(--rose-deep);
  border-radius: 4px;
}
.pkg__grid--4 { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
.pkg__grid--6 { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); }
.pkg__grid--8 { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); }
.pkg__grid--9 { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); }

.pkg h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 14px;
  color: var(--taupe);
}
.pkg__price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--rose);
  font-style: italic;
}

@media (max-width: 820px) {
  .packages { grid-template-columns: repeat(2, 1fr); }
}

/* ------- CONTACT FORM ------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 30px;
}
.contact-intro .eyebrow { margin-bottom: 16px; }
.contact-intro .btn { margin-top: 14px; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--taupe);
  text-transform: uppercase;
}
.contact-form .full { grid-column: 1 / -1; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--cream-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text);
  transition: border-color .2s ease, background .2s ease;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--taupe-soft);
  line-height: 1.55;
}
.contact-form .checkbox input { accent-color: var(--rose); margin-top: 3px; }
.contact-form .checkbox a { color: var(--rose); text-decoration: underline; }

.contact-form button {
  margin-top: 6px;
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { grid-template-columns: 1fr; padding: 28px; }
}

/* ------- FOOTER ------- */
.footer {
  background: var(--taupe);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 50px;
  align-items: center;
}
.footer__logo { width: 90px; height: auto; }

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  font-size: 14.5px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__contact svg {
  width: 16px;
  height: 16px;
  color: var(--rose);
  flex-shrink: 0;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer__nav a:hover { color: var(--rose); opacity: 1; }

.footer__bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom .sparkle {
  color: var(--rose);
  display: block;
  margin-bottom: 14px;
}
.footer__bottom p { margin: 0; }

@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .footer__contact { justify-items: center; }
  .footer__contact li { justify-content: center; flex-wrap: wrap; }
  .footer__nav { flex-direction: row; justify-content: center; gap: 24px; }
}

/* ------- LEGAL PAGES (Impressum / Datenschutz) ------- */
.legal {
  background: var(--cream);
  padding: 60px 0 100px;
  min-height: 80vh;
}
.legal__back {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}
.legal h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  margin: 0 0 40px;
  color: var(--text);
}
.legal h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--taupe);
  margin: 40px 0 14px;
}
.legal h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--taupe);
  margin: 28px 0 10px;
}
.legal p, .legal li { font-size: 15.5px; line-height: 1.75; color: var(--taupe-soft); }
.legal ul { padding-left: 22px; }
.legal a { color: var(--rose); text-decoration: underline; }
.legal strong { color: var(--taupe); }
.legal__todo {
  background: #fff7ed;
  border-left: 3px solid #d97706;
  color: #92400e;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
}

/* ------- RESPONSIVE TWEAKS ------- */
@media (max-width: 500px) {
  .nav__cta { display: none; }
  .package { padding: 28px 24px; }
  .gallery { padding: 14px; gap: 10px; }
  .contact-form { padding: 22px; }
}
