:root {
  --dark:   #0D1B2A;
  --dark-2: #1C2E40;
  --gold:   #B8966E;
  --gold-rgb:   184,150,110;
  --gold-light: #D4B896;
  --bg: #FAFAF8;
  --bg-alt: #F4F0E8;
  --bg-card:#FFFFFF;
  --text:   #1A2A3A;
  --text-2: #3D5166;
  --text-muted: #6B7E8F;
  --border: #E2DBD0;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  --glow:   0 0 20px rgba(184,150,110,0.25);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  overflow-x: hidden;
}
.font-display { font-family: 'Playfair Display', serif; }
.headline { font-family: 'Playfair Display', serif; line-height: 1.1; letter-spacing: -0.02em; }
.gold { color: var(--gold); }
.label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.rule-gold { display: block; width: 48px; height: 2px; background: var(--gold); margin: 1rem 0 1.5rem; }
.rule-full { height: 1px; background: var(--border); }
.rule-full-dark { height: 1px; background: linear-gradient(90deg, transparent, rgba(184,150,110,0.3) 30%, rgba(184,150,110,0.3) 70%, transparent); }

/* NAV */
#nav { position: fixed; inset: 0 0 auto; z-index: 500; background: rgba(13,27,42,0.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(184,150,110,0.12); transition: background 0.3s ease, box-shadow 0.3s ease; }
#nav.scrolled { background: rgba(13,27,42,0.99); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; line-height: 1.2; }
.logo-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.logo-line { width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color 0.2s ease, border-color 0.2s ease; }
.nav-link:hover, .nav-link.active { color: #fff; border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.85); transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-menu { display: none; position: fixed; top: 68px; inset-inline: 0; background: rgba(13,27,42,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(184,150,110,0.15); padding: 1.75rem 1.5rem; z-index: 499; opacity: 0; transform: translateY(-8px); transition: opacity 0.25s ease, transform 0.25s ease; }
#mobile-menu.open { display: block; opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; padding: 0.875rem 1.75rem; cursor: pointer; border: none; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--glow); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: rgba(255,255,255,0.9); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* CARDS */
.card { background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.card-service { padding: 2rem 1.75rem; background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid transparent; box-shadow: var(--shadow-sm); transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.card-service:hover { border-top-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-num { font-family: 'Playfair Display', serif; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.6rem; }
.card-testimonial { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 2rem; box-shadow: var(--shadow-sm); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 0.5; color: var(--gold); opacity: 0.4; display: block; margin-bottom: 1rem; }

/* CHECKLIST */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.65rem 0; color: var(--text-2); font-size: 1rem; border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; border: 1.5px solid var(--gold); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8966E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; }
.checklist-dark li { color: rgba(245,240,232,0.9); border-color: rgba(255,255,255,0.08); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: 'Playfair Display', serif; font-size: 1.1rem; text-align: left; padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s ease; }
.faq-q:hover { color: var(--gold); }
.faq-q.open { color: var(--gold); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; font-weight: 300; transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease; }
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--dark); }
.faq-a { max-height: 0; overflow: hidden; color: var(--text-2); font-size: 1rem; line-height: 1.8; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 400px; padding-bottom: 1.75rem; }

/* FORM */
.form-field { width: 100%; background: #fff; border: 1.5px solid var(--border); color: var(--text); padding: 0.85rem 1rem; font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; border-radius: 2px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.form-field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,110,0.12); }
.form-field::placeholder { color: var(--text-muted); }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 0.45rem; }

/* HERO PHOTO */
.photo-wrap { position: relative; overflow: hidden; }
.photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--dark) 0%, rgba(13,27,42,0.25) 50%, transparent 100%); pointer-events: none; }
.photo-wrap::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, var(--dark), transparent); pointer-events: none; z-index: 1; }

/* FLOATING CTA */
#floating-cta { display: none; position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 490; }
@media (max-width: 768px) { #floating-cta { display: block; } }
.float-btn { display: flex; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--dark); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; padding: 0.875rem 1.5rem; text-decoration: none; box-shadow: 0 8px 32px rgba(184,150,110,0.4); position: relative; transition: transform 0.2s ease, background 0.2s ease; }
.float-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
@keyframes ring { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(1.55); opacity: 0; } }
.float-ring { position: absolute; inset: 0; border: 2px solid var(--gold); animation: ring 2s ease-out infinite; }

/* QUAL ITEM */
.qual-item { display: flex; gap: 1rem; padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid transparent; box-shadow: var(--shadow-sm); transition: border-left-color 0.2s ease; }
.qual-item:hover { border-left-color: var(--gold); }
.qual-num { flex-shrink: 0; width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--gold); }

/* CONTACT ICON */
.contact-item { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.contact-icon { width: 48px; height: 48px; flex-shrink: 0; border: 1.5px solid var(--border); background: var(--bg-card); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }

/* MEDIA BADGE */
.media-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 1rem; border: 1px solid var(--border); background: var(--bg-card); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-2); box-shadow: var(--shadow-sm); }

.stars { color: var(--gold); letter-spacing: 0.05em; }

/* SCROLL ANIMATIONS */
.fade { transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1); }
.fade.js-ready { opacity: 0; transform: translateY(24px); }
.fade.in { opacity: 1 !important; transform: translateY(0) !important; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* HERO ENTRY */
@keyframes up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-anim-ready .h1 { animation: up 0.7s ease 0.05s both; }
.hero-anim-ready .h2 { animation: up 0.7s ease 0.2s  both; }
.hero-anim-ready .h3 { animation: up 0.7s ease 0.35s both; }
.hero-anim-ready .h4 { animation: up 0.7s ease 0.5s  both; }
.hero-anim-ready .h5 { animation: up 0.7s ease 0.65s both; }
.hero-anim-ready .h6 { animation: up 0.7s ease 0.8s  both; }
.hero-anim-ready .hp { animation: up 0.8s ease 0.1s  both; }
@media (prefers-reduced-motion: reduce) {
  .hero-anim-ready .h1, .hero-anim-ready .h2, .hero-anim-ready .h3,
  .hero-anim-ready .h4, .hero-anim-ready .h5, .hero-anim-ready .h6,
  .hero-anim-ready .hp { animation: none; }
  .fade { transition: none !important; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none !important; }
  .hamburger { display: flex !important; }
}
@media (min-width: 769px) { .hamburger { display: none !important; } }

@media (max-width: 900px) {
  .martin-photo { object-position: center 8% !important; }
  .martin-photo-ueber { object-position: center 15% !important; }
  .hero-photo-wrap { height: 420px !important; }
}

/* Responsive Grid-Fallbacks */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  section div[style*="grid-template-columns: 1fr 1fr"],
  section div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: repeat(4,1fr)"],
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  div[style*="grid-template-columns: repeat(2,1fr)"],
  div[style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
  footer div[style*="grid-template-columns:1fr 1fr 1fr"],
  footer div[style*="grid-template-columns: 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* BLOG / ARTIKEL */
.article { max-width: 720px; margin: 0 auto; }
.article p { color: var(--text-2); line-height: 1.9; margin: 0 0 1.5rem; font-size: 1.02rem; }
.article .lead { font-size: 1.18rem; color: var(--text); line-height: 1.85; }
.article h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text); line-height: 1.3; margin: 3rem 0 1rem; }
.article h2::after { content: ''; display: block; width: 48px; height: 2px; background: var(--gold); margin-top: 0.75rem; }
.article ul { color: var(--text-2); line-height: 1.9; margin: 0 0 1.5rem; padding-left: 1.25rem; }
.article li { margin-bottom: 0.5rem; }
.article strong { color: var(--text); }
.article blockquote { border-left: 3px solid var(--gold); padding-left: 1.5rem; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--text); line-height: 1.65; margin: 2.5rem 0 0.75rem; }
.article blockquote + cite { display: block; font-style: normal; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2.5rem; }
.article-cta { background: var(--dark); padding: 2rem; margin: 3rem 0; }
.article-cta p { color: rgba(245,240,232,0.85); margin-bottom: 1.25rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.55); }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--text); line-height: 1.35; margin: 0.75rem 0 1rem; }
.blog-card p { color: var(--text-2); font-size: 0.97rem; line-height: 1.8; flex-grow: 1; }
.read-link { color: var(--gold); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; align-self: flex-start; margin-top: 1.25rem; }
