/* ═══════════════════════════════════════════════════════════
   captured by Luana – gemeinsames Stylesheet
   Wird von allen Seiten eingebunden (index, hochzeiten, paare,
   maternity, newborn). Änderungen hier wirken überall.
   ═══════════════════════════════════════════════════════════ */

:root {
  --white:      #FFFFFF;
  --cream:      #F8F3EC;
  --beige:      #EDE4D6;
  --beige-dark: #D9CDBC;
  --accent:     #9B8168;
  --dark:       #2C2520;
  --text:       #4A3F3A;
  --muted:      #9A8E89;
  --nav-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ── Typografie ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.9rem, 6.2vw, 5.4rem); letter-spacing: 0.02em; line-height: 1.08; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); letter-spacing: 0.02em; line-height: 1.12; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); letter-spacing: 0.03em; line-height: 1.25; }
p  { font-size: 0.93rem; color: var(--text); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(157,133,107,0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.3s;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; letter-spacing: 0.08em; color: var(--dark); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links > li > a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); transition: color 0.25s; }
.nav-links > li > a:hover { color: var(--accent); }
.nav-links > li > a.active-page { color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.nav-dropdown > a svg { width: 8px; height: 8px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform 0.2s; }
.nav-dropdown.open > a svg,
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: -1.2rem;
  background: var(--white); border: 1px solid var(--beige-dark);
  min-width: 170px; padding: 0.8rem 0 0.6rem;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(44,37,32,0.08);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.55rem 1.25rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); transition: color 0.2s; }
.dropdown-menu a:hover { color: var(--accent); }
.dropdown-menu a.active-page { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.6rem 1.5rem; border: 1px solid var(--accent); color: var(--accent); transition: background 0.25s, color 0.25s; }
.nav-cta:hover { background: var(--accent); color: var(--white); }

/* Language switcher */
.lang-switch {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--beige-dark);
  overflow: hidden;
}
.lang-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--dark); color: var(--white); }
.lang-btn:not(.active):hover { background: var(--beige); color: var(--dark); }

/* Der Sprachumschalter ist seit dem 10.09.2026 ein LINK auf die
   Schwesterseite und kein Knopf mehr: Deutsch und Englisch sind eigene
   Adressen geworden, und einem Knopf mit onclick kann keine Suchmaschine
   folgen. Damit er weiter wie ein Knopf aussieht. */
a.lang-btn { display: inline-block; text-decoration: none; line-height: 1.35; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--dark); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 2rem; border-bottom: 1px solid var(--beige); z-index: 99; flex-direction: column; gap: 1.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: var(--text); }
.mobile-menu a.active-page { color: var(--accent); }
.mobile-group-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: -0.8rem; }
.mobile-submenu { padding-left: 1rem; display: flex; flex-direction: column; gap: 0.75rem; border-left: 1px solid var(--beige-dark); margin-top: -0.3rem; }
.mobile-submenu a { font-size: 0.72rem; }
.mobile-lang { display: flex; gap: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--beige); margin-top: 0.3rem; }
.mobile-lang .lang-btn { border: 1px solid var(--beige-dark);
  /* Nachtrag 10.09.2026: seit die Umschalter Links sind, schlaegt
     `.mobile-menu a` (0.8rem) die Regel von `.lang-btn`. */
  font-size: 0.65rem; letter-spacing: 0.12em; }

/* ── Hero ── */
#hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; padding-top: var(--nav-h); }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem); background: var(--white); }
.hero-content h1 { margin: 1rem 0 1.5rem; font-style: italic; }
.hero-content h1 em { font-style: normal; color: var(--accent); }
.hero-subtitle { font-size: 0.9rem; color: var(--muted); max-width: 380px; margin-bottom: 2.5rem; line-height: 1.9; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-block; padding: 0.9rem 2.2rem; background: var(--dark); color: var(--white); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; transition: background 0.25s; }
.btn-primary:hover { background: var(--accent); }
.btn-outline { display: inline-block; padding: 0.9rem 2.2rem; border: 1px solid var(--dark); color: var(--dark); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.25s; }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.hero-image { background: var(--beige); overflow: hidden; position: relative; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .img-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--beige) 0%, var(--beige-dark) 100%); display: flex; align-items: flex-end; padding: 2rem; }
.img-placeholder-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); font-family: 'Inter', sans-serif; }

/* ── Section ── */
.section { padding: clamp(5.5rem, 9vw, 7.5rem) clamp(1.5rem, 5vw, 4rem); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }

/* ── Text sections (Story / Wedding / Family) ── */
.text-section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); background: var(--cream); }
.text-section-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.text-section-inner h2 { margin-bottom: 2rem; }
.text-section-inner p { font-size: 1rem; line-height: 2; color: var(--muted); max-width: 620px; margin: 0 auto 1.2rem; }
.text-section-inner .btn-primary { margin: 2rem auto 0; }

/* ── Portfolio / Gallery ── */
#portfolio, #gallery { background: var(--white); }
.category-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn { padding: 0.5rem 1.2rem; border: 1px solid var(--beige-dark); background: none; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all 0.25s; }
.tab-btn.active, .tab-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.album-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: var(--beige); }
.album-card .ph { width: 100%; height: 100%; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #F2EBE2 0%, #C9BFAE 100%); }
.album-card:hover .ph { transform: scale(1.06); }
.album-card .ph svg { opacity: 0.15; width: 44px; height: 44px; fill: var(--accent); }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.album-card:hover img { transform: scale(1.06); }
.album-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(44,37,32,0.7) 0%, transparent 100%);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.04em;
  transition: opacity 0.4s ease;
}
.album-card:hover .album-label { opacity: 0.92; }
.album-card.hidden { display: none; }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(22,18,16,0.97); z-index: 200; flex-direction: column; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img-wrap { position: relative; max-width: 88vw; max-height: 82vh; display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap .ph-lb { width: min(600px, 85vw); aspect-ratio: 3/4; background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%); display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap img { max-width: 88vw; max-height: 82vh; object-fit: contain; display: block; }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 2rem; color: rgba(255,255,255,0.7); cursor: pointer; font-weight: 300; line-height: 1; z-index: 10; transition: color 0.2s; }
.lightbox-close:hover { color: var(--white); }
.lightbox-nav { display: flex; align-items: center; gap: 2rem; margin-top: 1.2rem; }
.lb-btn { background: none; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); width: 44px; height: 44px; cursor: pointer; font-size: 1.1rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.lb-btn:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.lb-counter { font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif; min-width: 60px; text-align: center; }
.lb-album-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.5); margin-top: 0.4rem; text-align: center; }

/* Sanftes Überblenden beim Öffnen und beim Bildwechsel */
@keyframes lbIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.lightbox.open .lightbox-img-wrap { animation: lbIn 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-fade-in { animation: lbFadeIn 0.32s ease; }

/* ── About ── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.about-image { aspect-ratio: 3/4; background: var(--beige); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image .ph { width: 100%; height: 100%; background: linear-gradient(160deg, var(--beige) 0%, var(--beige-dark) 100%); display: flex; align-items: center; justify-content: center; }
.about-text h2 { margin: 0.5rem 0 1.5rem; }
.about-text p { margin-bottom: 1.2rem; line-height: 1.9; font-size: 0.92rem; }
.signature { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; color: var(--accent); margin-top: 2rem; display: block; }

/* ── Pricing / Packages ── */
#pricing, #packages { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; min-width: 0; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pkg-grid.pkg-grid--2col { grid-template-columns: 1fr 1fr; }

.price-card { border: 1px solid var(--beige-dark); padding: 2.5rem 2rem; transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); background: var(--white); display: flex; flex-direction: column; }
.price-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.price-card.featured { background: var(--cream); border-color: var(--accent); }
.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--dark); margin: 1rem 0 0.25rem; display: block; white-space: nowrap; }
.price-note { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 1.5rem; display: block; }
.price-card h3 { font-size: 1.1rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.price-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.pricing-grid .price-desc { min-height: 10rem; }
.pkg-grid .price-desc { min-height: 6rem; }
.price-includes { list-style: none; margin-bottom: 2rem; }
.price-includes li { font-size: 0.82rem; color: var(--text); padding: 0.5rem 0; border-bottom: 1px solid var(--beige); display: flex; align-items: center; gap: 0.6rem; }
.price-includes li::before { content: ''; display: inline-block; width: 14px; height: 1px; background: var(--accent); flex-shrink: 0; }
.price-cta-wrap { margin-top: auto; }
.price-cta { display: block; text-align: center; padding: 0.8rem 1rem; border: 1px solid var(--dark); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); transition: all 0.25s; }
.price-cta:hover, .price-card.featured .price-cta { background: var(--dark); color: var(--white); }
.price-card.featured .price-cta:hover { background: var(--accent); border-color: var(--accent); }
.price-seeall { display: block; text-align: center; margin-top: 0.7rem; font-size: 0.72rem; color: var(--muted); text-decoration: underline; transition: color 0.25s; }
.price-seeall:hover { color: var(--accent); }

/* ── Contact ── */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.contact-info h2 { margin: 0.5rem 0 1.5rem; }
.contact-info p { font-size: 0.9rem; line-height: 1.9; color: var(--muted); margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail a { font-size: 0.82rem; color: var(--text); letter-spacing: 0.05em; transition: color 0.2s; }
.contact-detail a:hover { color: var(--accent); }
form { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
input, select, textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--beige-dark); background: var(--white); font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--dark); outline: none; transition: border-color 0.25s; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
textarea { min-height: 140px; resize: vertical; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8168' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit { display: inline-block; padding: 1rem 2.5rem; background: var(--dark); color: var(--white); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s; font-family: 'Inter', sans-serif; justify-self: start; }
.form-submit:hover { background: var(--accent); }

.ig-btn-contact { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.4rem; border: 1px solid var(--beige-dark); color: var(--text); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Inter', sans-serif; transition: all 0.25s; text-decoration: none; margin-top: 0.5rem; }
.ig-btn-contact:hover { border-color: var(--accent); color: var(--accent); }
.ig-btn-contact svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ── Testimonials / Reviews ── */
#testimonials, #reviews { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: clamp(3rem, 5vw, 4rem); }
.testimonial-card {
  position: relative; cursor: pointer; overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,37,32,0.85) 35%, rgba(44,37,32,0.1) 100%);
  transition: background 0.3s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-card:hover::before { background: linear-gradient(to top, rgba(44,37,32,0.92) 45%, rgba(44,37,32,0.2) 100%); }
.t-body { position: relative; z-index: 1; padding: 2rem 1.8rem; width: 100%; }
.t-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2vw, 1.35rem); font-style: italic; line-height: 1.6; color: var(--white); margin-bottom: 1rem; }
.t-quote::before { content: '\201E'; opacity: 0.65; margin-right: 0.1em; }
.t-couple { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.t-location { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }
.t-read-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.7rem; }
.t-read-more svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.2s; }
.testimonial-card:hover .t-read-more svg { transform: translateX(3px); }

/* Review Modal */
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.review-modal { display: none; position: fixed; inset: 0; background: rgba(22,18,16,0.7); z-index: 9000; align-items: center; justify-content: center; padding: 1.5rem; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.review-modal.open { display: flex; }
.review-modal-inner { background: var(--white); max-width: 860px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: modalIn 0.35s ease; }
.review-modal-close { position: sticky; top: 1rem; float: right; margin: 1rem 1rem 0 0; width: 38px; height: 38px; border: 1px solid var(--beige-dark); background: var(--white); cursor: pointer; font-size: 1.3rem; color: var(--text); display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.2s; font-weight: 300; line-height: 1; }
.review-modal-close:hover { border-color: var(--accent); color: var(--accent); }
.review-modal-hero { width: 100%; aspect-ratio: 16/7; overflow: hidden; margin-top: -38px; }
.review-modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.review-modal-body { padding: 2.5rem clamp(1.5rem, 5vw, 3.5rem) 3rem; }
.review-modal-body .t-couple { font-size: 0.75rem; margin-bottom: 0.3rem; color: var(--text); }
.review-modal-body .t-location { margin-bottom: 2rem; }
.review-modal-body h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-style: italic; font-weight: 400; color: var(--dark); margin-bottom: 2rem; line-height: 1.2; }
.review-full-text { font-size: 0.95rem; color: var(--muted); line-height: 2; white-space: pre-line; margin-bottom: 2.5rem; }
.review-photos-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; display: block; }
.review-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.review-photo-item { aspect-ratio: 2/3; overflow: hidden; cursor: pointer; background: var(--beige); }
.review-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.review-photo-item:hover img { transform: scale(1.05); }

/* ── Process / Ablauf ── */
#process { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem); margin-top: 3rem; }
.process-step { display: flex; flex-direction: column; }
.step-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--beige-dark); line-height: 1; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.9; }
.process-divider { width: 28px; height: 1px; background: var(--accent); margin-bottom: 1.2rem; }

#ablauf { background: var(--cream); }
.ablauf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem); margin-top: clamp(3rem, 5vw, 5rem); }
.ablauf-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--beige-dark); line-height: 1; margin-bottom: 0.75rem; }
.ablauf-rule { width: 2rem; height: 1px; background: var(--accent); margin-bottom: 1.5rem; }
.ablauf-step h3 { font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; color: var(--dark); }
.ablauf-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.85; }

/* ── Booking / Calendly ── */
#booking { background: var(--white); }
.booking-inner { max-width: 900px; margin: 0 auto; }
.booking-header { text-align: center; margin-bottom: 2.5rem; }
.booking-header h2 { margin-bottom: 0.75rem; }
.booking-header p { font-size: 0.9rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.9; }
.calendly-inline-widget { border: 1px solid var(--beige-dark); background: var(--white); min-width: 320px; }
.calendly-inline-widget iframe { border: none; }

/* ── Footer ── */
footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 3rem clamp(1.5rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: inline-block; line-height: 0; }
/* Der Schriftzug im Fussbereich ist seit dem 09.09.2026 das echte Logo
   (logo-hell.png, cremefarben auf durchsichtigem Grund). Das globale
   "img { width:100%; height:100% }" ganz oben wuerde es verzerren -
   darum hier ausdruecklich auto/contain. */
.footer-logo img { display: block; width: auto; height: 52px; object-fit: contain; opacity: 0.85; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.72rem; }
.footer-legal { display: flex; align-items: center; gap: 0.7rem; font-size: 0.72rem; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
.footer-legal span { color: rgba(255,255,255,0.22); }
.ig-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1.1rem; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Inter', sans-serif; transition: all 0.25s; text-decoration: none; }
.ig-btn:hover { border-color: rgba(255,255,255,0.6); color: rgba(255,255,255,0.95); }
.ig-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ── Animationen ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-desc { min-height: 6rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta, .lang-switch { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 55vw; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .review-photos-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pkg-grid, .pkg-grid.pkg-grid--2col { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ablauf-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-desc { min-height: 0; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}

/* ── Trust-Badge im Hero (additiv, 01.09.2026) ── */
.hero-trust {
  margin-top: 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-trust::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   Beitragsseiten (/blog/<id>.html) - neu am 10.09.2026
   Jeder Blogbeitrag hat seit dann eine eigene Seite statt nur eines
   Fensters. Erzeugt von Website-Werkzeug/beitrag-seite.mjs.
   ══════════════════════════════════════════════════════════════════ */
.beitrag { max-width: 780px; margin: 0 auto; }
.beitrag-bild {
  width: 100%; height: auto; display: block;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.beitrag-text p {
  font-size: 1rem; color: var(--muted); line-height: 2;
  margin-bottom: 1.5rem;
}
.beitrag-text p:last-child { margin-bottom: 0; }
.beitrag-signatur {
  margin-top: 2.5rem; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.beitrag-weiter {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--beige-dark);
  padding-top: clamp(2rem, 4vw, 2.5rem);
}
.beitrag-weiter h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 400;
  color: var(--dark); margin-bottom: 1.2rem;
}
.beitrag-weiter ul { list-style: none; display: grid; gap: 0.9rem; margin: 0; padding: 0; }
.beitrag-weiter li a {
  color: var(--text); text-decoration: none; line-height: 1.6;
  border-bottom: 1px solid var(--beige-dark); padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.beitrag-weiter li a:hover { color: var(--accent); border-color: var(--accent); }
.beitrag-zurueck {
  margin-top: 2rem; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.beitrag-zurueck a { color: var(--muted); text-decoration: none; }
.beitrag-zurueck a:hover { color: var(--accent); }
.beitrag-zurueck span { color: var(--beige-dark); }

/* Die Blogkarte ist seit dem 10.09.2026 ein <a> statt eines <div> - sie
   fuehrt auf die Beitragsseite. Sonst saehe sie genau gleich aus; nur die
   Linkvorgaben des Browsers muessen weg. */
a.blog-card { text-decoration: none; color: inherit; }
