/* ============================================
   TIERFOTOGRAFIE OBERPFALZ | HEINER WEISS
   Style – 1:1 an hochzeit.heinerweiss.de angelehnt
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:#1d1d1d;
  --paper:#1d1d1d;
  --cream:#161614;
  --bg-dark:#010101;
  --card:#242424;
  --card-2:#2c2c2c;
  --gold:#b08d57;
  --gold-d:#97753f;
  --muted:#a8a8a8;
  --muted-2:#616060;
  --line:rgba(255,255,255,.10);
  --line-soft:rgba(255,255,255,.06);
  --text:#ffffff;
  --wa:#25d366;
  --serif:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  --sans:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  --maxw:1160px;
}

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

section { background: var(--paper); padding: 88px 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: .2px; }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 14px;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.sec-head { max-width: 62ch; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: .25s;
  letter-spacing: .04em;
  font-family: var(--sans);
}
.btn-primary { background: var(--gold); color: #1d1d1d; }
.btn-primary:hover { background: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: #1d1d1d; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { filter: brightness(1.05); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.15) 100%);
  transition: .35s;
}
header.site.scrolled { background: rgba(10,10,10,.97); box-shadow: 0 1px 0 var(--line); }

header.site .logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px 6px;
  max-height: 220px;
  overflow: hidden;
  transition: .45s ease;
}
header.site.scrolled .logo-row { max-height: 0; padding: 0; opacity: 0; }

header.site .bar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.brand-logo { height: 140px; width: auto; display: block; }

nav.main { display: flex; align-items: center; gap: 30px; }
nav.main a {
  text-decoration: none;
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  transition: .35s;
  font-weight: 400;
}
nav.main a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #1d1d1d !important;
  border: 1.5px solid var(--gold);
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 500;
  transition: .25s;
}
.nav-cta:hover { background: #fff !important; border-color: #fff; color: #1d1d1d !important; }
header.site.scrolled .nav-cta { background: var(--gold); border-color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 26px; height: 2px; background: #fff; transition: .3s; }

/* Mobile Menu */
.mob {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateX(100%);
  transition: .4s;
}
.mob.open { transform: none; }
.mob a { color: #fff; text-decoration: none; font-family: var(--serif); font-size: 1.8rem; }
.mob .close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ===== HERO / SLIDESHOW ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
  padding-top: 240px;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  animation: stagezoom 26s ease-in-out infinite alternate;
}
@keyframes stagezoom { from { transform: scale(1); } to { transform: scale(1.09); } }
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.slide.active { opacity: 1; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,19,15,.35) 0%, rgba(22,19,15,.05) 35%, rgba(22,19,15,.78) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 3; padding-bottom: 4vh; width: 100%; }
.hero-inner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-inner .lead { color: rgba(255,255,255,.92); margin: 20px 0 30px; font-size: 1.18rem; max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Dots */
.dots {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: .3s;
}
.dots button.on { background: #fff; transform: scale(1.15); }

/* Hero Nav Arrows (zusätzlich zum Dots-Stil der Hauptseite) */
.hero-nav {
  position: absolute;
  bottom: 60px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-nav-btn:hover { background: var(--gold); border-color: var(--gold); color: #1d1d1d; }

/* ===== TRUST-LEISTE ===== */
.trust { background: var(--bg-dark); color: #fff; padding: 34px 0; }
.trust .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.trust .num { font-family: var(--serif); font-size: 2.1rem; color: var(--gold); display: block; line-height: 1; }
.trust .lbl { font-size: .82rem; letter-spacing: .06em; opacity: .82; margin-top: 8px; }

/* ===== ÜBER MICH (Split) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: 3px; width: 100%; height: 540px; object-fit: cover; }
.split .tag-line { display: inline-block; width: 60px; height: 2px; background: var(--gold); margin-bottom: 22px; }
ul.check { list-style: none; margin-top: 22px; }
ul.check li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--text); }
ul.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ===== LEISTUNGEN (Cards) ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 34px 30px;
  transition: .3s;
}
.card:hover {
  transform: translateY(-4px);
  background: var(--card-2);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.card .ic { font-size: 1.8rem; margin-bottom: 16px; }
.card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; margin-bottom: 10px; }
.card-icon { width: 28px; height: 28px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card p { color: var(--muted); font-size: .96rem; }
.card .dauer {
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gold-d);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ===== GALERIE-VORSCHAU ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  transition: transform .4s ease;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.04); }
.gallery-more { text-align: center; }
.gallery-more p { color: var(--muted); margin-bottom: 20px; }

/* ===== PREISE ===== */
.pricing { background: var(--cream); }
.preis-note { text-align: center; color: var(--muted); font-size: .95rem; margin-bottom: 30px; }
.preise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }

.preis-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: .3s;
  position: relative;
}
.preis-card:hover {
  transform: translateY(-4px);
  background: var(--card-2);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.preis-card-featured {
  border-color: var(--gold);
  transform: scale(1.03);
}
.preis-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.preis-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1d1d1d;
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}
.preis-header { text-align: center; margin-bottom: 20px; }
.preis-header h3 { font-family: var(--serif); font-size: 1.45rem; color: var(--text); margin-bottom: 4px; }
.preis-header p { font-size: .82rem; color: var(--muted); }

.preis-price {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}
.preis-price .price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
}

.preis-features { flex: 1; margin-bottom: 24px; }
.preis-features li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.preis-features li:last-child { border-bottom: none; }
.preis-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}

.ust-note { text-align: center; font-size: .8rem; color: var(--muted-2); margin-top: 24px; }

/* ===== REGION ===== */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 30px; margin-top: 30px; }
.loc-grid div { padding-left: 18px; border-left: 2px solid var(--gold); color: var(--muted); font-size: .95rem; }
.loc-grid strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.region-cta { margin-top: 30px; text-align: center; }

/* ===== KONTAKT ===== */
.kontakt { background: var(--bg-dark); color: #fff; }
.kontakt h2 { color: #fff; }
.kontakt .lead { color: rgba(255,255,255,.78); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; }

.kinfo { margin-top: 30px; }
.kinfo a { color: #fff; text-decoration: none; display: inline-block; }
.kinfo a:hover { color: var(--gold); }
.kinfo .row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kinfo .row .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kinfo .wa-link { color: var(--wa) !important; font-weight: 500; }

.kform { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); padding: 32px; border-radius: 3px; }
.kform .f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kform label {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.kform input, .kform textarea, .kform select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 12px 14px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .95rem;
  margin-bottom: 16px;
}
.kform input::placeholder, .kform textarea::placeholder { color: rgba(255,255,255,.4); }
.kform textarea { min-height: 120px; resize: vertical; }
.kform select option { background: #1d1d1d; color: #fff; }
.kform button { width: 100%; justify-content: center; margin-top: 6px; }
.kform .msg { padding: 12px; border-radius: 3px; margin-bottom: 16px; font-size: .9rem; display: none; }
.kform .msg.ok { background: rgba(37,211,102,.15); border: 1px solid var(--wa); color: #bdf5d6; display: block; }
.kform .msg.err { background: rgba(220,80,80,.15); border: 1px solid #d85; color: #f3c9c0; display: block; }
.form-hinweis { font-size: .8rem; color: var(--muted-2); margin-bottom: 16px; }

/* ===== FOOTER ===== */
footer.site { background: #010101; color: rgba(255,255,255,.6); padding: 54px 0 30px; }
footer.site .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
footer.site h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer.site a { color: rgba(255,255,255,.6); text-decoration: none; display: block; margin-bottom: 9px; font-size: .92rem; }
footer.site a:hover { color: #fff; }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

/* WhatsApp Floating Button */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  background: var(--wa);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  text-decoration: none;
  transition: .25s;
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* Back-to-Top */
.to-top {
  position: fixed;
  right: 28px;
  bottom: 95px;
  z-index: 80;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  cursor: pointer;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); border-color: var(--gold); transform: translateY(0) scale(1.1); }
.to-top svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav.main { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split img { height: 380px; }
  .cards { grid-template-columns: 1fr; }
  .preise-grid { grid-template-columns: 1fr; max-width: 420px; }
  .preis-card-featured { transform: none; }
  .preis-card-featured:hover { transform: translateY(-4px); }
  .trust .grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .loc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  footer.site .grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding-top: 110px; }
  .hero-inner h1 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero-nav { display: none; }
}

@media (max-width: 640px) {
  .hero { min-height: 500px; }
  .hero-inner .lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust .grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-grid img { height: 170px; }
  .kform .f2 { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .brand-logo { height: 88px; }
  header.site .bar { height: 40px; }
  section { padding: 48px 0; }
}
