/* =========================================================
   Michael Kellner Fotografie – Dreamweaver Template Basis
   Hinweis: Lokale Fontdateien sind bewusst NICHT enthalten.
   Falls vorhanden, bitte in /fonts/... ablegen und @font-face
   hier ergänzen oder die vorhandenen Fallbacks verwenden.
   ========================================================= */

@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-v25-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root{
  --bg:#f3efeb;
  --surface:#f8f4f1;
  --surface-2:#efe7df;
  --text:#2a211c;
  --muted:#6f645b;
  --line:#d7c8bb;
  --accent:#b17a47;
  --button:#2d241f;
  --shadow:0 18px 45px rgba(42,33,28,.08);
  --radius-xl:32px;
  --radius-lg:22px;
  --radius-md:16px;
  --container:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  font-size:18px;
}

body{
  margin:0;
  color:var(--text);
  background:linear-gradient(180deg,#f7f4f1 0%,var(--bg) 100%);
  font-family:'Lato', Arial, Helvetica, sans-serif;
  font-size:1rem;
  line-height:1.72;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  letter-spacing:.01em;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

p{
  margin:0 0 1rem;
  font-family:'Lato', Arial, Helvetica, sans-serif;
  font-size:1rem;
  line-height:1.72;
}

li,
input,
textarea,
label,
button{
  font-family:'Lato', Arial, Helvetica, sans-serif;
  font-size:1rem;
  line-height:1.65;
}

h1,h2,h3,h4{
  margin:0 0 1rem;
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight:400;
  line-height:1.03;
  letter-spacing:-0.03em;
}

h1{
  font-size:clamp(3rem,7vw,6rem);
}

h2{
  font-size:clamp(2rem,4vw,3.3rem);
}

h3{
  font-size:clamp(1.3rem,2.2vw,1.9rem);
}

small,
.small{
  font-size:.95rem;
  color:var(--muted);
}

.container{
  width:min(calc(100% - 40px),var(--container));
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(249,246,243,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(215,200,187,.65);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:84px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:5px;
  flex-shrink:0;
  min-width:0;
}

.brand__title{
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(1.12rem,1.45vw,1.42rem);
  letter-spacing:-.02em;
}

.brand__sub{
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--muted);
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto;
  min-width:0;
}

.nav,
.desktop-nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav a,
.desktop-nav a{
  position:relative;
  font-family:'Lato', Arial, Helvetica, sans-serif;
  font-size:.95rem;
  color:#4a4038;
  white-space:nowrap;
  letter-spacing:.01em;
}

.nav a:hover,
.desktop-nav a:hover{
  color:#000;
}

.nav-dropdown{
  position:relative;
}

.nav-dropdown::before{
  content:'';
  position:absolute;
  left:-10px;
  right:-10px;
  top:100%;
  height:22px;
}

.nav-dropdown__toggle{
  position:relative;
  border:0;
  background:transparent;
  padding:0;
  font-family:'Lato', Arial, Helvetica, sans-serif;
  font-size:.95rem;
  color:#4a4038;
  cursor:pointer;
  white-space:nowrap;
  transition:color .22s ease;
}

.nav-dropdown__toggle:hover,
.nav-dropdown:hover .nav-dropdown__toggle{
  color:#000;
}

.nav-dropdown__menu{
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  min-width:240px;
  transform:translateX(-50%) translateY(8px);
  display:grid;
  gap:4px;
  padding:12px;
  border:1px solid rgba(215,200,187,.9);
  border-radius:18px;
  background:rgba(249,246,243,.985);
  box-shadow:0 18px 42px rgba(42,33,28,.11);
  z-index:80;
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
}

.nav-dropdown__menu a{
  padding:10px 14px;
  border-radius:12px;
  white-space:nowrap;
  transition:background .2s ease, color .2s ease, padding-left .2s ease;
}

.nav-dropdown__menu a:hover{
  background:rgba(255,255,255,.95);
  color:#000;
  padding-left:18px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.desktop-nav > a.is-active,
.desktop-nav .nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.is-active,
.desktop-nav > a.active,
.desktop-nav .nav-dropdown__toggle.active,
.nav-dropdown__menu a.active{
  color:var(--text) !important;
  font-weight:700 !important;
}

.desktop-nav > a.is-active::after,
.desktop-nav .nav-dropdown__toggle.is-active::after,
.desktop-nav > a.active::after,
.desktop-nav .nav-dropdown__toggle.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
}

.nav-dropdown__menu a.is-active,
.nav-dropdown__menu a.active{
  background:rgba(248,244,241,.96);
}

.mobile-panel{
  display:none;
}

.mobile-overlay{
  display:none;
}

.nav-toggle{
  display:none;
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff8;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  position:relative;
  flex:0 0 auto;
}

.nav-toggle span{
  position:absolute;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}

.nav-toggle span:nth-child(1){
  transform:translateY(-6px);
}

.nav-toggle span:nth-child(3){
  transform:translateY(6px);
}

.nav-toggle.is-active span:nth-child(1){
  transform:rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2){
  opacity:0;
}

.nav-toggle.is-active span:nth-child(3){
  transform:rotate(-45deg);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 30px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff7;
  font-family:'Lato', Arial, Helvetica, sans-serif;
  font-size:.95rem;
  font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.btn--primary{
  background:linear-gradient(135deg,#6a4b3c 0%,#4a3429 100%);
  color:#fff;
  border-color:rgba(74,52,41,.28);
  box-shadow:0 10px 24px rgba(74,52,41,.16);
}

.btn--primary:hover{
  box-shadow:0 14px 30px rgba(74,52,41,.22);
}

.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(193,173,157,.72);
  box-shadow:none;
}

.btn--ghost:hover{
  background:rgba(255,255,255,.55);
}

.site-header .cta-button,
.site-header .btn--ghost{
  min-height:58px;
  padding:0 30px;
  white-space:nowrap;
  border-radius:999px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 30px;
  border-radius:999px;
  border:1px solid rgba(215,200,187,.95);
  background:rgba(255,252,249,.58);
  font-family:'Lato', Arial, Helvetica, sans-serif;
  font-size:.95rem;
  font-weight:700;
  white-space:nowrap;
  transition:background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.cta-button:hover{
  background:#c8b8a6;
  color:#fff;
  border-color:#c8b8a6;
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(42,33,28,.12);
}

/* Hero */
.hero{
  padding:72px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
  gap:52px;
  align-items:center;
}

.hero-grid > *{
  opacity:0;
  transform:translateY(18px);
  animation:heroFade .9s ease forwards;
}

.hero-grid > *:nth-child(2){
  animation-delay:.12s;
}

@keyframes heroFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.kicker{
  display:inline-block;
  margin-bottom:20px;
  color:var(--accent);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.95rem;
}

.lead{
  font-size:clamp(1.15rem,2vw,1.45rem);
  color:#433831;
  max-width:760px;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:28px 0 30px;
}

.badge{
  padding:12px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#5f564f;
  background:rgba(255,255,255,.55);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-media{
  position:relative;
  padding-bottom:118px;
}

.frame{
  position:relative;
  border-radius:38px;
  background:linear-gradient(180deg,#f6f1ed 0%,#efe7df 100%);
  padding:24px;
  box-shadow:var(--shadow);
}

.frame img{
  width:100%;
  border-radius:28px;
  aspect-ratio:4 / 4.25;
  object-fit:cover;
}

.float-card{
  position:absolute;
  left:18px;
  bottom:-22px;
  width:min(340px,84%);
  background:rgba(249,246,243,.98);
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px 22px 18px;
  box-shadow:0 18px 40px rgba(42,33,28,.10);
}

.float-card h3{
  margin-bottom:8px;
  font-size:1.6rem;
}

.float-card p{
  margin:0;
  color:var(--muted);
}

.image-label{
  display:none !important;
}

/* Sections */
.section{
  padding:88px 0;
}

.section--tight{
  padding:46px 0;
}

.section--soft{
  background:linear-gradient(180deg,rgba(255,255,255,.48),rgba(255,255,255,.32));
  border-top:1px solid rgba(215,200,187,.55);
  border-bottom:1px solid rgba(215,200,187,.55);
}

.section-head,
.section-header{
  max-width:760px;
  margin-bottom:34px;
}

.section-eyebrow{
  display:inline-block;
  margin-bottom:12px;
  font-size:.82rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
}

.copy{
  max-width:760px;
}

.text-block{
  max-width:820px;
}

/* Grids */
.grid-2,
.grid-3,
.grid-4{
  display:grid;
  gap:24px;
}

.grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.grid-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.grid-4{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

/* Cards */
.card{
  border:1px solid rgba(215,200,187,.75);
  border-radius:26px;
  background:rgba(255,255,255,.58);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.card__media{
  aspect-ratio:4/3;
  object-fit:cover;
  width:100%;
}

.card__body{
  padding:22px;
}

.card__body p{
  color:var(--muted);
}

.link-arrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:700;
}

.link-arrow::after{
  content:"→";
}

/* CTA band */
.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:28px 30px;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(239,231,223,.9));
  box-shadow:var(--shadow);
}

.cta-band p{
  margin:0;
  color:var(--muted);
}

/* Forms */
.form-card{
  border:1px solid var(--line);
  border-radius:30px;
  background:rgba(255,255,255,.65);
  padding:28px;
  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field label{
  font-weight:700;
}

.form-field input,
.form-field textarea{
  width:100%;
  min-height:54px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  font:inherit;
  color:var(--text);
  background:#fffdfb;
}

.form-field textarea{
  min-height:180px;
  resize:vertical;
}

.checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.checkbox input{
  margin-top:6px;
}

.form-status{
  display:none;
  margin:0 0 22px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.08);
  font-size:.98rem;
  line-height:1.5;
}

.form-status--success{
  display:block;
  background:rgba(231,244,235,.95);
  border-color:rgba(105,148,112,.28);
  color:#2d4a33;
}

.form-status--error{
  display:block;
  background:rgba(248,233,233,.96);
  border-color:rgba(168,102,102,.26);
  color:#6e2f2f;
}

.form-status--info{
  display:block;
  background:rgba(244,239,235,.96);
  border-color:rgba(145,123,104,.22);
  color:#5c4a3d;
}

.hidden-honeypot{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Footer */
.footer{
  padding:40px 0 58px;
  border-top:1px solid rgba(215,200,187,.6);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:28px;
}

.footer p,
.footer a{
  color:var(--muted);
}

.landing-links{
  margin-top:1rem;
  color:var(--muted);
}

.landing-links a{
  white-space:nowrap;
}

/* Utility */
.notice{
  border-left:4px solid var(--accent);
  padding:14px 18px;
  background:rgba(255,255,255,.52);
  border-radius:0 18px 18px 0;
}

.legal main,
.page-legal main{
  max-width:860px;
}

/* Mobile */
@media (max-width:1080px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .grid-4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .nav-wrap{
    display:none !important;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .mobile-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(20,16,13,.34);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    z-index:80;
    transition:opacity .25s ease, visibility .25s ease;
  }

  .mobile-overlay.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .mobile-panel{
    position:fixed;
    top:0;
    right:0;
    width:min(86vw,360px);
    height:100vh;
    padding:92px 28px 28px;
    background:#f7f2ed;
    box-shadow:-18px 0 40px rgba(0,0,0,.14);
    z-index:90;
    transform:translateX(100%);
    transition:transform .28s ease;
    gap:14px;
    flex-direction:column;
  }

  .mobile-panel.is-open{
    display:flex !important;
    transform:translateX(0);
  }

  .mobile-panel a{
    display:block !important;
    width:100%;
    padding:8px 0;
  }

  .mobile-panel a.is-active,
  .mobile-panel a.active{
    color:var(--text) !important;
    font-weight:700 !important;
  }
}

@media (max-width:780px){
  html{
    font-size:17px;
  }

  .header-inner{
    min-height:76px;
  }

  .brand__title{
    font-size:clamp(1rem,6vw,1.28rem);
  }

  .brand__sub{
    letter-spacing:.18em;
    font-size:.74rem;
  }

  .hero{
    padding-top:44px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:56px 0;
  }

  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

  .frame{
    padding:18px;
  }

  .hero-media{
    padding-bottom:96px;
  }

  .float-card{
    width:min(100%, 340px);
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }
}


/* ===== Portfolio Galleries ===== */
.gallery-intro{max-width:760px;margin-bottom:28px}
.gallery-showcase{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.gallery-tile{position:relative;overflow:hidden;border-radius:20px;background:#fff;box-shadow:0 14px 30px rgba(42,33,28,.08);aspect-ratio:4/5}
.gallery-tile img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease, filter .35s ease}
.gallery-tile::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 45%, rgba(0,0,0,.18) 100%);opacity:.7;transition:opacity .3s ease;pointer-events:none}
.gallery-tile:hover img{transform:scale(1.04);filter:saturate(1.03)}
.gallery-tile:hover::after{opacity:1}
.gallery-note{margin-top:18px;color:var(--muted);font-size:.97rem}
.gallery-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:18px}
.gallery-toolbar .kicker{margin-bottom:0}
@media (max-width: 1100px){.gallery-showcase{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width: 820px){.gallery-showcase{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.gallery-tile{border-radius:16px}}
@media (max-width: 520px){.gallery-showcase{grid-template-columns:1fr 1fr;gap:12px}.gallery-note{font-size:.92rem}}


.gallery-trigger{
  
  display:block;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
}
.gallery-trigger img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.gallery-tile::before{pointer-events:none;
  content:"+";
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  color:var(--text);
  display:grid;
  place-items:center;
  font-size:1.45rem;
  line-height:1;
  box-shadow:0 10px 18px rgba(42,33,28,.12);
  z-index:2;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .25s ease, transform .25s ease;
  pointer-events:none;
}
.gallery-tile:hover::before{
  opacity:1;
  transform:translateY(0);
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
}
.lightbox.is-open{
  display:block;
}
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(20,16,13,.72);
  backdrop-filter:blur(4px);
}
.lightbox__dialog{
  position:relative;
  z-index:1;
  width:min(92vw,1100px);
  max-height:88vh;
  margin:6vh auto;
  padding:16px;
  border-radius:28px;
  background:rgba(248,244,241,.96);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}
.lightbox__image{
  width:100%;
  max-height:72vh;
  object-fit:contain;
  border-radius:20px;
  background:#ebe4dd;
}
.lightbox__caption{
  padding:14px 8px 4px;
  color:var(--muted);
  text-align:center;
  font-size:.98rem;
}
.lightbox__close{
  position:absolute;
  top:8px;
  right:8px;
  width:46px;
  height:46px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--text);
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(42,33,28,.12);
}
@media (max-width: 640px){
  .lightbox__dialog{
    width:min(94vw,1100px);
    margin:4vh auto;
    padding:12px;
    border-radius:22px;
  }
  .lightbox__image{
    max-height:68vh;
    border-radius:16px;
  }
  .lightbox__close{
    width:42px;
    height:42px;
    font-size:1.6rem;
  }
}


.footer-grid{
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.landing-links{
  margin-top:1rem;
  color:var(--muted);
}
.landing-links a{
  white-space:nowrap;
}
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 640px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}


.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.5rem;
}
.price-card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(157,138,117,.18);
  border-radius:28px;
  padding:2rem;
  box-shadow:0 18px 40px rgba(42,33,28,.08);
  display:flex;
  flex-direction:column;
  gap:.9rem;
}
.price-card--highlight{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,241,235,.98));
  border-color:rgba(157,138,117,.36);
  box-shadow:0 24px 54px rgba(42,33,28,.12);
}
.price-card__tag{
  display:inline-flex;
  align-self:flex-start;
  padding:.45rem .8rem;
  border-radius:999px;
  background:rgba(198,164,126,.16);
  color:var(--text);
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.price-card h3{
  margin:0;
  padding:0;
}
.price-card__duration{
  margin:0;
  color:var(--muted);
  font-size:1rem;
}
.price-card__price{
  margin:0;
  font-family:'Playfair Display', Georgia, serif;
  font-size:2.1rem;
  line-height:1.1;
  color:var(--text);
}
.price-card__list{
  list-style:none;
  padding:0;
  margin:.25rem 0 0;
}
.price-card__list li{
  position:relative;
  padding-left:1.15rem;
  margin:.35rem 0;
}
.price-card__list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
}
.price-card__extra{
  margin-top:auto;
  color:var(--muted);
  font-size:.96rem;
}
@media (max-width: 980px){
  .pricing-grid{
    grid-template-columns:1fr;
  }
}
.gallery-tile::before,
.gallery-tile::after{
  pointer-events:none !important;
}
.gallery-trigger{
  position:relative;
  z-index:1;
}


.lightbox__dialog, .lightbox__close, .lightbox__backdrop { pointer-events:auto; }


.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--text);
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(42,33,28,.12);
  display:grid;
  place-items:center;
}
.lightbox__nav--prev{ left:14px; }
.lightbox__nav--next{ right:14px; }
.lightbox__counter{
  padding:0 8px 8px;
  color:var(--muted);
  text-align:center;
  font-size:.92rem;
}
@media (max-width: 640px){
  .lightbox__nav{
    width:44px;
    height:44px;
    font-size:1.7rem;
  }
  .lightbox__nav--prev{ left:10px; }
  .lightbox__nav--next{ right:10px; }
}


/* Final tweaks */
.hero-note,
.hero-card,
.note-card,
.info-card{
  background: rgba(248,244,241,.96);
  border: 1px solid rgba(204,184,166,.55);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(42,33,28,.10);
}

@media (min-width: 981px){
  .prices-hero .hero-grid,
  .landing-hero .hero-grid{
    align-items: start;
  }
  .prices-hero .hero-note,
  .prices-hero .hero-card,
  .prices-hero .note-card,
  .prices-hero .info-card{
    margin-top: 38px;
  }
}

.package,
.package.highlight,
.pricing-card,
.pricing-card.highlight{
  background: rgba(248,244,241,.96) !important;
  border: 1px solid rgba(204,184,166,.55);
  box-shadow: 0 16px 34px rgba(42,33,28,.08);
}

.package .btn,
.package.highlight .btn,
.pricing-card .btn,
.pricing-card.highlight .btn{
  border-radius: 999px;
}

.hero-note p,
.hero-card p,
.note-card p,
.info-card p{
  margin-bottom: 0;
}


/* Luxus Desktop + ruhige Einheitlichkeit */
.hero-grid{
  align-items:center;
}
.prices-hero .hero-grid,
.landing-hero .hero-grid{
  align-items:center;
  gap:64px;
}
.prices-hero .copy,
.landing-hero .copy{
  max-width: 720px;
}
.prices-hero .hero-note,
.prices-hero .hero-card,
.prices-hero .note-card,
.prices-hero .info-card,
.landing-hero .hero-card,
.landing-hero .note-card,
.landing-hero .info-card{
  margin-top:0;
  min-height:260px;
  padding:34px 30px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px;
}
.package,
.pricing-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:100%;
}
.package__body,
.pricing-card__body{
  display:flex;
  flex-direction:column;
  flex:1;
}
.package .btn,
.pricing-card .btn{
  margin-top:auto;
}

.prices-hero{
  padding:72px 0 92px;
}
.prices-hero + .section,
.prices-hero + main .section{
  padding-top:92px;
}
.section{
  padding-top:88px;
  padding-bottom:88px;
}

@media (max-width: 980px){
  .prices-hero .hero-grid,
  .landing-hero .hero-grid{
    gap:34px;
  }
  .prices-hero{
    padding:44px 0 56px;
  }
  .section{
    padding-top:62px;
    padding-bottom:62px;
  }
  .pricing-grid{
    grid-template-columns:1fr;
  }
}


/* === Layout-Fix März 2026 === */

/* Preise- und Landingpage-Hero ruhiger setzen */
.hero--subpage .hero-grid,
.prices-hero .hero-grid,
.landing-hero .hero-grid{
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 46px;
  align-items: center;
}

.hero--subpage .copy,
.prices-hero .copy,
.landing-hero .copy{
  max-width: 620px;
}

.hero--subpage h1,
.prices-hero h1,
.landing-hero h1{
  max-width: 7.2ch;
  font-size: clamp(2.85rem, 5.6vw, 5.15rem);
  line-height: .98;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.hero--subpage .frame,
.prices-hero .frame,
.landing-hero .frame,
.hero-note,
.hero-card,
.note-card,
.info-card{
  background: rgba(248,244,241,.97);
  border: 1px solid rgba(204,184,166,.55);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(42,33,28,.08);
  padding: 28px 28px 30px;
}

/* Startseite: unschönen Zusatzkasten unter dem Hero-Bild entfernen */
.hero-media{
  padding-bottom: 118px;
}
.frame{
  padding: 24px;
}
.frame.frame--soft{
  padding: 28px;
}
.hero-media .frame{
  padding: 22px;
}
.hero-media .frame img{
  aspect-ratio: 4 / 4.25;
}
.hero-media .float-card{
  left: 18px;
  bottom: -22px;
  width: min(340px, 84%);
  background: rgba(249,246,243,.98);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(42,33,28,.10);
}
.hero-media .frame,
.hero-media .float-card{
  position: relative;
  z-index: 1;
}
.hero-media::after{
  content: none !important;
}

/* Preisekarten angleichen */
.price-card{
  background: rgba(248,244,241,.97);
  border: 1px solid rgba(204,184,166,.55);
  box-shadow: 0 16px 34px rgba(42,33,28,.08);
  min-height: 100%;
}
.price-card--highlight{
  background: rgba(248,244,241,.97) !important;
  border: 1px solid rgba(204,184,166,.55) !important;
  box-shadow: 0 16px 34px rgba(42,33,28,.08) !important;
}
.pricing-grid{
  gap: 30px;
}
.price-card .btn{
  margin-top: auto;
  border-radius: 999px;
}

/* Footer-Lücke durch entfernten Menüpunkt säubern */
.footer .navigation-clean br:first-child{
  display:none;
}

@media (max-width: 1080px){
  .hero--subpage .hero-grid,
  .prices-hero .hero-grid,
  .landing-hero .hero-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero--subpage h1,
  .prices-hero h1,
  .landing-hero h1{
    max-width: 9.5ch;
    font-size: clamp(2.7rem, 9vw, 4.6rem);
  }
  .hero-media{
    padding-bottom: 96px;
  }
}


.home-hero + .section .gallery-trigger{
  display:block;
  width:100%;
  height:100%;
}


/* === Real fix: active nav + Preise-Hero === */

/* Aktiver Menüpunkt - tatsächliche Header-Klassen */
.nav > a.is-active,
.nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.is-active{
  color: var(--text) !important;
  font-weight: 700;
  position: relative;
}
.nav > a.is-active::after,
.nav-dropdown__toggle.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
}
.nav-dropdown__menu a.is-active{
  background: rgba(248,244,241,.96);
}

/* Preise-Hero sauber und ruhiger */
.hero--subpage.prices-hero .hero-grid{
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 430px);
  gap: 54px;
  align-items: center;
}
.hero--subpage.prices-hero .copy{
  max-width: 760px;
}
.hero--subpage.prices-hero h1{
  max-width: 11ch;
  font-size: clamp(3.35rem, 6.4vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.038em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.hero--subpage.prices-hero .lead{
  max-width: 38rem;
}
.hero--subpage.prices-hero .hero-note,
.hero--subpage.prices-hero .info-card{
  min-height: 270px;
  padding: 30px 30px 28px;
  background: rgba(248,244,241,.97);
  border: 1px solid rgba(204,184,166,.55);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(42,33,28,.08);
}
.hero--subpage.prices-hero .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

/* Landingpages etwas entspannter */
.hero--subpage.landing-hero .hero-grid{
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
  gap: 50px;
  align-items: center;
}
.hero--subpage.landing-hero h1{
  max-width: 11ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* Mobile/Tablet */
@media (max-width: 1100px){
  .hero--subpage.prices-hero .hero-grid,
  .hero--subpage.landing-hero .hero-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero--subpage.prices-hero h1,
  .hero--subpage.landing-hero h1{
    max-width: 10ch;
    font-size: clamp(2.95rem, 9vw, 4.9rem);
  }
}

/* Mobile aktive Punkte */
.mobile-panel a.is-active{
  color: var(--text) !important;
  font-weight: 700;
}


/* actual fix for current header */
.desktop-nav > a.is-active,
.desktop-nav .nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.is-active,
.nav > a.is-active,
.nav .nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.is-active{
  color: var(--text) !important;
  font-weight: 700 !important;
  position: relative;
}
.desktop-nav > a.is-active::after,
.desktop-nav .nav-dropdown__toggle.is-active::after,
.nav > a.is-active::after,
.nav .nav-dropdown__toggle.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
}
.mobile-panel a.is-active{
  color: var(--text) !important;
  font-weight: 700 !important;
}
.nav-dropdown__menu a.is-active{
  background: rgba(248,244,241,.96);
}

/* prices hero present and calm */
.prices-hero{
  padding-top:72px;
  padding-bottom:92px;
}
.prices-hero .hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,430px);
  gap:54px;
  align-items:center;
}
.prices-hero .copy{
  max-width:760px;
}
.prices-hero h1{
  max-width:11ch;
  font-size:clamp(3.35rem,6.4vw,5.7rem);
  line-height:.98;
  letter-spacing:-.038em;
  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
}
.prices-hero .lead{
  max-width:38rem;
}
.prices-hero .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}
@media (max-width:1100px){
  .prices-hero .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .prices-hero h1{
    max-width:10ch;
    font-size:clamp(2.95rem,9vw,4.9rem);
  }
}


/* robust active menu styles */
.desktop-nav > a.is-active,
.desktop-nav .nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.is-active{
  color: var(--text) !important;
  font-weight: 700 !important;
  position: relative;
}
.desktop-nav > a.is-active::after,
.desktop-nav .nav-dropdown__toggle.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
}
.mobile-panel a.is-active{
  color: var(--text) !important;
  font-weight: 700 !important;
}
.nav-dropdown__menu a.is-active{
  background: rgba(248,244,241,.96);
}

/* robust prices hero */
.prices-hero{
  display:block;
  padding-top:72px;
  padding-bottom:92px;
}
.prices-hero .hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,430px);
  gap:54px;
  align-items:center;
}
.prices-hero h1{
  max-width:11ch;
  font-size:clamp(3.35rem,6.4vw,5.7rem);
  line-height:.98;
  letter-spacing:-.038em;
  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
}
.prices-hero .copy{max-width:760px;}
.prices-hero .lead{max-width:38rem;}
.prices-hero .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:22px;}
@media (max-width:1100px){
  .prices-hero .hero-grid{grid-template-columns:1fr;gap:32px;}
  .prices-hero h1{max-width:10ch;font-size:clamp(2.95rem,9vw,4.9rem);}
}


/* truly final fixes */
.nav-wrap{
  display:flex;
  align-items:center;
  gap:28px;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.desktop-nav > a.is-active,
.desktop-nav .nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.is-active{
  color: var(--text) !important;
  font-weight: 700 !important;
  position: relative;
}
.desktop-nav > a.is-active::after,
.desktop-nav .nav-dropdown__toggle.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
}
.mobile-panel a.is-active{
  color: var(--text) !important;
  font-weight:700 !important;
}
.nav-dropdown__menu a.is-active{
  background: rgba(248,244,241,.96);
}
.prices-hero{
  display:block !important;
  padding-top:72px;
  padding-bottom:92px;
}
.prices-hero .hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,430px);
  gap:54px;
  align-items:center;
}
.prices-hero h1{
  max-width:11ch;
  font-size:clamp(3.35rem,6.4vw,5.7rem);
  line-height:.98;
  letter-spacing:-.038em;
  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
}
.prices-hero .copy{max-width:760px;}
.prices-hero .lead{max-width:38rem;}
.prices-hero .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:22px;}
@media (max-width: 1100px){
  .nav-wrap{gap:18px;}
  .desktop-nav{gap:18px;}
  .prices-hero .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .prices-hero h1{
    max-width:10ch;
    font-size:clamp(2.95rem,9vw,4.9rem);
  }
}
/* Mobile panel hardening */
.mobile-panel{
  display:flex;
  flex-direction:column;
}
.mobile-panel a{
  display:block !important;
  width:100%;
}


/* ===== Hard fix: desktop/mobile navigation ===== */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(248,244,241,.96);
  flex:0 0 auto;
}

.mobile-overlay{
  display:none;
}

.mobile-panel{
  display:none !important;
}

.mobile-panel.is-open{
  display:flex !important;
  flex-direction:column;
}

@media (max-width: 980px){
  .nav-wrap{
    display:none !important;
  }

  .nav-toggle{
    display:flex !important;
  }

  .mobile-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(20,16,13,.34);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    z-index:80;
    transition:opacity .25s ease, visibility .25s ease;
  }

  .mobile-overlay.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .mobile-panel{
    position:fixed;
    top:0;
    right:0;
    width:min(86vw,360px);
    height:100vh;
    padding:92px 28px 28px;
    background:#f7f2ed;
    box-shadow:-18px 0 40px rgba(0,0,0,.14);
    z-index:90;
    transform:translateX(100%);
    transition:transform .28s ease;
    gap:14px;
  }

  .mobile-panel.is-open{
    transform:translateX(0);
  }

  .mobile-panel a{
    display:block !important;
    width:100%;
    padding:8px 0;
  }
}


/* Preise page header hardening */
@media (max-width: 980px){
  .site-header .nav-wrap{
    display:none !important;
  }
  .site-header .nav-toggle{
    display:flex !important;
  }
}
.desktop-nav > a.is-active,
.mobile-panel a.is-active{
  color: var(--text) !important;
  font-weight: 700 !important;
}
.desktop-nav > a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
}


/* final prices page fix */
.desktop-nav > a.is-active,
.desktop-nav .nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.is-active{
  color:var(--text) !important;
  font-weight:700 !important;
  position:relative;
}
.desktop-nav > a.is-active::after,
.desktop-nav .nav-dropdown__toggle.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
}
.mobile-panel a.is-active{
  color:var(--text) !important;
  font-weight:700 !important;
}
@media (max-width: 980px){
  body.page-preise .nav-wrap{
    display:none !important;
  }
  body.page-preise .nav-toggle{
    display:flex !important;
    align-items:center;
    justify-content:center;
  }
  body.page-preise .mobile-panel{
    display:none !important;
  }
  body.page-preise .mobile-panel.is-open{
    display:flex !important;
    flex-direction:column;
  }
}


/* ===== Final nav state + form status ===== */
.desktop-nav a,
.mobile-panel a,
.nav-dropdown__menu a,
.nav-dropdown__toggle{
  position:relative;
  text-decoration:none;
}

.desktop-nav a::after,
.nav-dropdown__toggle::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .28s ease, opacity .28s ease;
  opacity:.95;
}

.desktop-nav a:hover::after,
.nav-dropdown__toggle:hover::after,
.desktop-nav a.active::after,
.desktop-nav a.is-active::after,
.nav-dropdown__toggle.active::after,
.nav-dropdown__toggle.is-active::after{
  transform:scaleX(1);
}

.desktop-nav a.active,
.desktop-nav a.is-active,
.nav-dropdown__toggle.active,
.nav-dropdown__toggle.is-active,
.nav-dropdown__menu a.active,
.nav-dropdown__menu a.is-active,
.mobile-panel a.active,
.mobile-panel a.is-active{
  color:var(--text) !important;
  font-weight:700 !important;
}

.nav-dropdown__menu a.active,
.nav-dropdown__menu a.is-active{
  background:rgba(248,244,241,.96);
}

.form-status{
  display:none;
  margin:0 0 22px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.08);
  font-size:.98rem;
  line-height:1.5;
}
.form-status--success{
  display:block;
  background:rgba(231,244,235,.95);
  border-color:rgba(105,148,112,.28);
  color:#2d4a33;
}
.form-status--error{
  display:block;
  background:rgba(248,233,233,.96);
  border-color:rgba(168,102,102,.26);
  color:#6e2f2f;
}
.form-status--info{
  display:block;
  background:rgba(244,239,235,.96);
  border-color:rgba(145,123,104,.22);
  color:#5c4a3d;
}


/* ===== Preise Karten Feinschliff ===== */

.package-card h3,
.price-card h3 {
  letter-spacing: -0.02em;
}

.package-card .btn,
.price-card .btn,
.package-card .button,
.price-card .button,
.package-card a.btn,
.price-card a.btn {
  background: linear-gradient(135deg, #6a4b3c 0%, #4a3429 100%);
  border: 1px solid rgba(74, 52, 41, 0.28);
  box-shadow: 0 8px 22px rgba(74, 52, 41, 0.16);
}

.package-card .btn:hover,
.price-card .btn:hover,
.package-card .button:hover,
.price-card .button:hover,
.package-card a.btn:hover,
.price-card a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 52, 41, 0.22);
}

/* ===== PREISE FINAL PREMIUM ===== */

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.package-card {
  padding: 28px 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(193, 173, 157, 0.55);
  box-shadow: 0 12px 30px rgba(53, 38, 29, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(53, 38, 29, 0.08);
  border-color: rgba(170, 144, 122, 0.75);
}

.package-card--highlight {
  border: 1.5px solid rgba(145, 109, 86, 0.52);
  box-shadow: 0 18px 38px rgba(90, 64, 50, 0.08);
}

.package-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(106, 75, 60, 0.08);
  color: #6a4b3c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.package-badge--highlight {
  background: rgba(106, 75, 60, 0.14);
  color: #5a4032;
  border: 1px solid rgba(106, 75, 60, 0.14);
}

.package-card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.package-duration {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: rgba(62, 45, 35, 0.72);
}

.package-price {
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 700;
}

.package-list {
  margin: 0 0 18px;
  padding-left: 18px;
}

.package-list li {
  margin-bottom: 8px;
}

.package-extra {
  margin: 0 0 22px;
  font-size: 0.9rem;
  color: rgba(62, 45, 35, 0.72);
}

.package-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #6a4b3c 0%, #4a3429 100%);
  border: 1px solid rgba(74, 52, 41, 0.28);
  box-shadow: 0 10px 24px rgba(74, 52, 41, 0.16);
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(74, 52, 41, 0.22);
}

.pricing-included {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.included-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(193, 173, 157, 0.42);
}

.included-card h3 {
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(193, 173, 157, 0.42);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(193, 173, 157, 0.72);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.prices-hero .hero-note {
  min-height: 270px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(193, 173, 157, 0.48);
  box-shadow: 0 16px 36px rgba(53, 38, 29, 0.05);
}

.prices-hero .hero-note small {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: rgba(62, 45, 35, 0.72);
}

@media (max-width: 980px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-included {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .package-card--highlight {
    transform: none;
  }
}


/* ===== PREISE FINAL PREMIUM ===== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.package-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(193,173,157,0.5);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.package-card--highlight {
  border: 1.5px solid #6a4b3c;
  box-shadow: 0 18px 36px rgba(106,75,60,0.12);
}

.package-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(106,75,60,0.08);
  color: #6a4b3c;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.package-badge--highlight {
  background: rgba(106,75,60,0.14);
}

.package-price {
  font-weight: 700;
  margin-bottom: 14px;
}

.package-list {
  padding-left: 18px;
  margin-bottom: 16px;
}

.package-extra {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 18px;
}

.package-highlight {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #6a4b3c;
}

.package-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #6a4b3c, #4a3429);
  color: #fff;
  border: none;
}

.package-btn:hover {
  transform: translateY(-2px);
}

/* Preistexte */
.price-notes {
  margin-top: 40px;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.price-highlight {
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Bewertungen ===== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(193, 173, 157, 0.48);
  box-shadow: 0 12px 30px rgba(53, 38, 29, 0.04);
}

.review-stars {
  margin-bottom: 14px;
  color: #b8893b;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.review-text {
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  margin: 0 0 4px;
  font-weight: 700;
}

.review-meta {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(62, 45, 35, 0.68);
}

.reviews-cta {
  margin-top: 26px;
  text-align: center;
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Preise Intro veredeln ===== */

.prices-intro {
  padding-top: 58px;
  padding-bottom: 34px;
}

.prices-intro h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.02;
}

.prices-intro__text {
  max-width: 860px;
}

.prices-intro__text p {
  max-width: 62ch;
}

.prices-intro .price-highlight {
  margin-top: 12px;
  font-weight: 500;
}

.prices-intro + .section,
.prices-intro + .section.section--soft {
  padding-top: 34px;
}

@media (max-width: 980px) {
  .prices-intro {
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .prices-intro h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .prices-intro + .section,
  .prices-intro + .section.section--soft {
    padding-top: 26px;
  }
}

/* ===== Hero-Abstände verfeinern ===== */

.hero{
  padding:72px 0 36px;
}

.hero--subpage{
  padding:64px 0 20px;
}

.hero--subpage + .section,
.hero--subpage + .section.section--soft{
  padding-top:48px;
}

.prices-hero{
  padding:64px 0 18px;
}

.prices-hero + .section,
.prices-hero + .section.section--soft{
  padding-top:42px;
}

.landing-hero{
  padding:64px 0 18px;
}

.landing-hero + .section,
.landing-hero + .section.section--soft{
  padding-top:44px;
}

.about-hero{
  padding:64px 0 18px;
}

.about-hero + .section,
.about-hero + .section.section--soft{
  padding-top:44px;
}

@media (max-width: 980px){
  .hero{
    padding:48px 0 26px;
  }

  .hero--subpage,
  .prices-hero,
  .landing-hero,
  .about-hero{
    padding:46px 0 14px;
  }

  .hero--subpage + .section,
  .hero--subpage + .section.section--soft,
  .prices-hero + .section,
  .prices-hero + .section.section--soft,
  .landing-hero + .section,
  .landing-hero + .section.section--soft,
  .about-hero + .section,
  .about-hero + .section.section--soft{
    padding-top:34px;
  }
}


/* ===== Preise Intro veredeln ===== */

.prices-intro {
  padding-top: 58px;
  padding-bottom: 34px;
}

.prices-intro h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.02;
}

.prices-intro__text {
  max-width: 860px;
}

.prices-intro__text p {
  max-width: 62ch;
}

.prices-intro .price-highlight {
  margin-top: 12px;
  font-weight: 500;
}

.prices-intro + .section,
.prices-intro + .section.section--soft {
  padding-top: 34px;
}

@media (max-width: 980px) {
  .prices-intro {
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .prices-intro h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .prices-intro + .section,
  .prices-intro + .section.section--soft {
    padding-top: 26px;
  }
}

/* FINAL H1 SIZE FIX */
.hero--subpage h1{
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

/* ===== Startseite H1 schöner umbrechen ===== */

.hero:not(.hero--subpage) .copy,
.hero:not(.hero--subpage) .lead{
  max-width: 34rem;
}

.hero:not(.hero--subpage) h1{
  max-width: 7.2ch;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ===== FINAL GLOBAL H1 CONTROL ===== */

/* Startseite bleibt groß */
.home-hero h1,
body.home h1{
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

/* ALLE Unterseiten sauber vereinheitlichen */
body:not(.home) h1{
  font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important;
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 11ch;
}

/* ===== FINAL TYPOGRAPHY SYSTEM ===== */

/* Startseite – groß & emotional */
body.home h1,
.home-hero h1{
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    max-width: 7.2ch;
}

/* Hochzeiten – etwas kleiner, aber noch stark */
body.page-hochzeiten h1{
  font-size: clamp(2.6rem, 5vw, 4rem);
  max-width: 9ch;
}

/* Preise – klar & strukturiert */
body.page-preise h1{
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  max-width: 13ch;
}

/* Kontakt – ruhig & lesbar */
body.page-kontakt h1{
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  max-width: 10ch;
}

/* Über mich – persönlich & elegant */
body.page-about h1{
  font-size: clamp(2.4rem, 4.3vw, 3.3rem);
  max-width: 11ch;
}

/* Landingpages – SEO + ruhig */
body[class*="hochzeitsfotograf"] h1{
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  max-width: 11ch;
}

/* Fallback für ALLE Unterseiten */
body:not(.home) h1{
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* ===== SPACING FIX UNTERSEITEN ===== */

/* Nur Unterseiten – Kontakt bleibt wie er ist */
body:not(.home):not(.page-kontakt) .hero{
  padding-top: 56px;
  padding-bottom: 18px;
}

/* Abstand zur nächsten Section reduzieren */
body:not(.home):not(.page-kontakt) .hero + .section,
body:not(.home):not(.page-kontakt) .hero + .section.section--soft{
  padding-top: 36px;
}

/* Standard Sections etwas kompakter */
body:not(.home):not(.page-kontakt) .section{
  padding-top: 64px;
  padding-bottom: 64px;
}

/* erste Section nach Hero NOCH näher */
body:not(.home):not(.page-kontakt) main > .section:first-of-type{
  padding-top: 36px;
}

/* ===== HARTE ABSTANDS-KORREKTUR FÜR UNTERSEITEN ===== */

body.page-hochzeiten .hero,
body.page-events .hero,
body.page-portraits .hero,
body.page-immobilien .hero,
body.page-ueber-mich .hero{
  padding-top: 48px !important;
  padding-bottom: 10px !important;
}

body.page-hochzeiten main > .section:first-of-type,
body.page-events main > .section:first-of-type,
body.page-portraits main > .section:first-of-type,
body.page-immobilien main > .section:first-of-type,
body.page-ueber-mich main > .section:first-of-type{
  padding-top: 24px !important;
}

body.page-hochzeiten .section,
body.page-events .section,
body.page-portraits .section,
body.page-immobilien .section,
body.page-ueber-mich .section{
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ===== HARTE ABSTANDS-KORREKTUR HOCHZEITEN / EVENTS / PORTRAITS / IMMOBILIEN / ÜBER MICH ===== */

body.page-hochzeiten .hero,
body.page-events .hero,
body.page-portraits .hero,
body.page-immobilien .hero,
body.page-ueber-mich .hero{
  padding-top: 44px !important;
  padding-bottom: 6px !important;
}

body.page-hochzeiten .hero + .section,
body.page-events .hero + .section,
body.page-portraits .hero + .section,
body.page-immobilien .hero + .section,
body.page-ueber-mich .hero + .section,
body.page-hochzeiten .hero + .section.section--soft,
body.page-events .hero + .section.section--soft,
body.page-portraits .hero + .section.section--soft,
body.page-immobilien .hero + .section.section--soft,
body.page-ueber-mich .hero + .section.section--soft{
  padding-top: 18px !important;
}

body.page-hochzeiten main > .section,
body.page-events main > .section,
body.page-portraits main > .section,
body.page-immobilien main > .section,
body.page-ueber-mich main > .section{
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

body.page-hochzeiten .hero-media,
body.page-events .hero-media,
body.page-portraits .hero-media,
body.page-immobilien .hero-media,
body.page-ueber-mich .hero-media,
body.page-about .hero-media{
  padding-bottom: 24px !important;
}
