/* ══════════════════════════════════════════════════════════
   Soul & Glow – Shared CSS
   Alle Unterseiten laden diese Datei
   ══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --ivory:      #F7F3EC;
  --cream:      #EDE7D9;
  --sand:       #D4C5A9;
  --gold:       #B5924A;
  --gold-light: #CDA96E;
  --gold-dark:  #7A5C2E;
  --sage:       #8A9E8C;
  --sage-light: #B5C5B7;
  --sage-dark:  #607562;
  --charcoal:   #2A2822;
  --warm-gray:  #6B6459;
  --white:      #FDFAF5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--charcoal); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,250,245,0.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(181,146,74,0.13); transition: padding 0.35s ease;
}
nav.scrolled { padding: 13px 64px; }
.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo-mark svg { width: 42px; height: 42px; }
.nav-wordmark { display: flex; flex-direction: column; gap: 1px; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; line-height: 1; }
.nav-brand em { font-style: italic; color: var(--gold-dark); }
.nav-sub { font-size: 7.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--warm-gray); font-weight: 500; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-gray); transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }
.nav-links a.active::after { width: 100%; }
.nav-links .nav-hp { color: var(--gold-dark); border: 1px solid rgba(181,146,74,0.4); padding: 6px 14px; font-size: 9.5px; letter-spacing: 0.2em; transition: all 0.3s; }
.nav-links .nav-hp:hover, .nav-links .nav-hp.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.nav-links .nav-hp::after { display: none; }
.nav-cta-btn { background: var(--charcoal); color: var(--white) !important; padding: 10px 22px; font-size: 9.5px !important; letter-spacing: 0.18em; transition: background 0.3s !important; }
.nav-cta-btn:hover { background: var(--gold-dark) !important; }
.nav-cta-btn::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--charcoal); transition: all 0.3s; }

/* MOBILE MENU */
.mobile-nav { position: fixed; inset: 0; background: var(--charcoal); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--white); text-decoration: none; font-style: italic; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-close { position: absolute; top: 22px; right: 24px; background: none; border: none; cursor: pointer; color: var(--white); font-size: 22px; padding: 8px; }

/* BUTTONS */
.btn-primary { background: var(--charcoal); color: var(--white); padding: 14px 36px; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); padding: 14px 36px; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--charcoal); padding: 13px 36px; border: 1px solid var(--charcoal); cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.7); padding: 13px 36px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* PAGE HERO BANNER (subpages) */
.page-hero {
  padding-top: 82px; min-height: 340px;
  display: flex; flex-direction: column; justify-content: center;
  padding-left: 80px; padding-right: 80px; padding-bottom: 60px;
  background: var(--ivory); position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 80px; right: 80px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }
.page-hero-eyebrow { font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.page-hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 68px); line-height: 1.08; color: var(--charcoal); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold-dark); }
.page-hero p { font-size: 13px; color: var(--warm-gray); line-height: 1.85; max-width: 520px; font-weight: 300; }
.page-hero-deco { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); font-family: 'Playfair Display', serif; font-size: 160px; color: var(--cream); line-height: 1; font-style: italic; pointer-events: none; user-select: none; }

/* SECTION */
.pg-section { padding: 80px 80px; }
.pg-section-dark { padding: 80px 80px; background: var(--charcoal); }
.pg-section-ivory { padding: 80px 80px; background: var(--ivory); }
.pg-section-cream { padding: 80px 80px; background: var(--cream); }
.section-eyebrow { font-size: 9px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.section-eyebrow-light { color: var(--gold-light); }
.section-eyebrow-light::before { background: var(--gold-light); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 48px); line-height: 1.12; color: var(--charcoal); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title-light { color: var(--white); }
.section-body { font-size: 13px; color: var(--warm-gray); line-height: 1.85; max-width: 560px; font-weight: 300; }
.section-body-light { color: rgba(255,255,255,0.5); }

/* FOOTER */
footer { background: var(--charcoal); color: rgba(255,255,255,0.45); padding: 64px 80px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 11px; line-height: 1.85; max-width: 210px; }
.footer-brand .nav-brand { color: rgba(253,250,245,0.85); }
.footer-brand .nav-brand em { color: rgba(205,169,110,0.8); }
.footer-brand .nav-sub { color: rgba(255,255,255,0.28); }
.footer-social { display: flex; gap: 9px; margin-top: 22px; }
.s-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.35); transition: all 0.3s; }
.s-btn:hover { border-color: var(--gold-light); color: var(--gold-light); }
.s-btn svg { width: 13px; height: 13px; }
.footer-col h4 { font-size: 8.5px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { text-decoration: none; font-size: 11px; color: rgba(255,255,255,0.36); transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(205,169,110,0.8); }
.footer-col address { font-style: normal; font-size: 11px; line-height: 1.9; }
.footer-col address a { color: rgba(205,169,110,0.7); text-decoration: none; }
.footer-hp-note { border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 18px 0; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-hp-note svg { width: 28px; height: 28px; flex-shrink: 0; }
.footer-hp-note span { font-size: 10px; color: rgba(255,255,255,0.28); letter-spacing: 0.08em; }
.footer-hp-note strong { color: rgba(205,169,110,0.65); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; }
.footer-bottom p { font-size: 9.5px; letter-spacing: 0.08em; }
.footer-bottom a { color: rgba(205,169,110,0.6); text-decoration: none; }

/* NOTIFICATION */
.notif { position: fixed; bottom: 24px; right: 24px; z-index: 999; background: var(--charcoal); color: var(--white); padding: 16px 22px; max-width: 296px; border-left: 3px solid var(--gold); font-size: 12px; line-height: 1.6; transform: translateY(100px); opacity: 0; transition: all 0.4s ease; pointer-events: none; }
.notif.show { transform: translateY(0); opacity: 1; }
.notif strong { display: block; margin-bottom: 4px; font-size: 10.5px; letter-spacing: 0.1em; color: var(--gold-light); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav { padding: 16px 40px; }
  nav.scrolled { padding: 12px 40px; }
  .pg-section, .pg-section-dark, .pg-section-ivory, .pg-section-cream { padding: 60px 40px; }
  .page-hero { padding-left: 40px; padding-right: 40px; }
  .page-hero-deco { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 48px 40px 32px; }
}
@media (max-width: 768px) {
  nav { padding: 14px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pg-section, .pg-section-dark, .pg-section-ivory, .pg-section-cream { padding: 48px 24px; }
  .page-hero { padding-left: 24px; padding-right: 24px; min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 24px 28px; }
}
