/* ══════════════════════════════════════════════════════════
   Soul & Glow – Shared CSS
   Alle Unterseiten laden diese Datei.

   Hinweis: Web-Schriften (Google Fonts) werden DSGVO-konform
   erst nach Nutzer-Einwilligung über shared.js geladen.
   Bis dahin greift der System-Schriften-Fallback.
   ══════════════════════════════════════════════════════════ */

: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; }
.nav-links .nav-ig { display: inline-flex; align-items: center; color: var(--warm-gray); padding: 0; transition: color 0.3s; }
.nav-links .nav-ig:hover { color: var(--gold-dark); }
.nav-links .nav-ig::after { display: none; }
.nav-links li:has(.nav-ig) { display: flex; align-items: center; }
.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; }
}

/* ══════════════════════════════════════════════════════════
   COOKIE / CONSENT BANNER
   ══════════════════════════════════════════════════════════ */
.consent-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  max-width: 720px; margin: 0 auto;
  background: var(--charcoal); color: rgba(255,255,255,0.85);
  padding: 22px 28px; z-index: 9998;
  border: 1px solid rgba(205,169,110,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  display: none;
  font-family: 'Montserrat', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}
.consent-banner.show { display: block; }
.consent-banner h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 16px; color: var(--white); margin-bottom: 6px; font-weight: 500;
}
.consent-banner p { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.consent-banner p a { color: rgba(205,169,110,0.85); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions button {
  font-family: 'Montserrat', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 11px 22px; border: none; cursor: pointer; transition: all 0.3s;
}
.consent-accept { background: var(--gold); color: var(--white); }
.consent-accept:hover { background: var(--gold-dark); }
.consent-essential { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.25) !important; }
.consent-essential:hover { border-color: var(--gold-light) !important; color: var(--gold-light); }
@media (max-width: 600px) {
  .consent-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
  .consent-actions button { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   INSTAGRAM-FEED (2-Klick-Platzhalter + Beiträge)
   ══════════════════════════════════════════════════════════ */
.sg-insta { padding: 90px 80px; background: var(--ivory); text-align: center; }
.sg-insta .section-eyebrow,
.sg-insta .section-title { justify-content: center; }
.sg-insta-feed { max-width: 935px; margin: 40px auto 0; }
.sg-insta-gate {
  border: 1px solid var(--sand); background: var(--white);
  padding: 48px 32px; max-width: 620px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.sg-insta-glyph { width: 40px; height: 40px; color: var(--gold-dark); }
.sg-insta-gate-txt {
  font-size: 12.5px; line-height: 1.8; color: var(--warm-gray);
  max-width: 460px; margin: 0;
}
.sg-insta-gate-txt a { color: var(--gold-dark); text-decoration: underline; }
.sg-insta-gate-actions {
  display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 6px;
}
.sg-insta-link {
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-gray); text-decoration: none; font-weight: 600;
}
.sg-insta-link:hover { color: var(--gold-dark); }
.sg-insta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: start;
}
.sg-insta-empty { font-size: 13px; color: var(--warm-gray); font-style: italic; }
.sg-insta-foot { margin-top: 28px; }
.sg-insta-foot a {
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); text-decoration: none; font-weight: 600;
}
.sg-insta-foot a:hover { text-decoration: underline; }
@media (max-width: 900px) { .sg-insta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .sg-insta { padding: 60px 22px; }
  .sg-insta-grid { grid-template-columns: 1fr; }
  .sg-insta-gate { padding: 36px 22px; }
}

/* ───── Sprachumschalter (i18n) ───── */
.lang-sw { display: inline-flex; gap: 2px; align-items: center; }
.lang-sw .ls-btn {
  background: none; border: 1px solid rgba(122,92,46,0.25);
  color: var(--warm-gray); font-family: inherit; font-size: 10px;
  letter-spacing: 0.06em; padding: 4px 7px; border-radius: 3px;
  cursor: pointer; line-height: 1; transition: all 0.2s;
}
.lang-sw .ls-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.lang-sw .ls-btn.act { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.nav-links .lang-li { display: flex; align-items: center; margin-left: 6px; }
.mobile-nav .lang-sw { margin-top: 22px; justify-content: center; gap: 6px; }
.mobile-nav .lang-sw .ls-btn { font-size: 13px; padding: 9px 16px; }
