/* SG Holdings GmbH — Complete Stylesheet */
/* NO Google Fonts - system fonts only to prevent repaint issues */

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

:root {
  --navy:    #071A2F;
  --navy2:   #0D223B;
  --gold:    #D2A85A;
  --border:  rgba(210,168,90,0.15);
  --text:    rgba(245,245,245,0.70);
  --dim:     rgba(245,245,245,0.38);
  --serif:   Georgia, 'Times New Roman', serif;
  --sans:    'Helvetica Neue', Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--navy); color: #F5F5F5; font-family: var(--sans); font-weight: 300; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* NAV - solid, no transparency, no blur */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-name { font-family: var(--serif); font-size: 0.7rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; display: block; }
.nav-logo-sub { font-size: 0.58rem; letter-spacing: 0.18em; color: var(--dim); text-transform: uppercase; display: block; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,245,245,0.72); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-lang { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; gap: 6px; }
.nav-lang a { color: var(--dim); transition: color 0.3s; }
.nav-lang a.active, .nav-lang a:hover { color: var(--gold); }
.nav-lang span { color: var(--border); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1px; background: #F5F5F5; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mob-menu { display: none; position: fixed; inset: 0; z-index: 99; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 28px; }
.mob-menu.open { display: flex; }
.mob-menu a { font-family: var(--serif); font-size: 2rem; color: #F5F5F5; transition: color 0.3s; }
.mob-menu a:hover { color: var(--gold); }
.mob-lang { display: flex; gap: 10px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 8px; }
.mob-lang a { font-family: var(--sans); font-size: 0.72rem; color: var(--dim); }
.mob-lang a.active { color: var(--gold); }

/* HERO - position:relative with absolute content - NO flexbox */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 460px;
  overflow: hidden;
  background-color: var(--navy);
  margin-top: 72px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7,26,47,0.88) 0%, rgba(7,26,47,0.65) 45%, rgba(7,26,47,0.20) 100%);
}
.hero-text {
  position: absolute;
  bottom: 72px;
  left: 72px;
  right: 40%;
  z-index: 2;
}
.hero-text h1 { font-family: var(--serif); font-size: 4rem; font-weight: 400; color: var(--gold); line-height: 1.08; margin-bottom: 20px; }
.hero-text p { font-size: 0.96rem; color: rgba(245,245,245,0.82); line-height: 1.72; margin-bottom: 36px; max-width: 420px; }
.btn { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 13px 38px; font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; transition: background 0.3s, color 0.3s; }
.btn:hover { background: var(--gold); color: var(--navy); }

/* CARDS */
.cards { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); max-width: 1400px; margin: 0 auto; }
.card { padding: 48px 44px; text-align: center; border-right: 1px solid var(--border); transition: background 0.3s; }
.card:last-child { border-right: none; }
.card:hover { background: rgba(210,168,90,0.05); }
.card-icon { width: 42px; height: 42px; margin: 0 auto 20px; }
.card-icon svg { width: 42px; height: 42px; stroke: var(--gold); fill: none; stroke-width: 1.1; }
.card-title { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.card ul li { font-size: 0.86rem; color: var(--text); line-height: 2.0; }

/* SECTIONS */
.wrap { max-width: 1400px; margin: 0 auto; padding: 88px 80px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.eyebrow { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.rule { width: 40px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.h2 { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: #F5F5F5; line-height: 1.14; margin-bottom: 24px; }
.body-text { font-size: 0.92rem; color: var(--text); line-height: 1.9; max-width: 520px; }
.body-text p + p { margin-top: 16px; }
.hr { border: none; border-top: 1px solid var(--border); }

/* CTA */
.cta { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 80px; text-align: center; }
.cta .h2 { max-width: 480px; margin: 0 auto 28px; }

/* PAGE HERO */
.page-hero {
  position: relative;
  width: 100%;
  height: 46vh;
  min-height: 320px;
  overflow: hidden;
  background-color: var(--navy);
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.page-hero-dim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,26,47,0.48) 0%, rgba(7,26,47,0.88) 100%); }
.page-hero-text { position: absolute; bottom: 48px; left: 72px; right: 72px; z-index: 2; }
.page-hero-text h1 { font-family: var(--serif); font-size: 3.4rem; font-weight: 400; color: var(--gold); line-height: 1.1; }

/* NAV SPACER */
.nav-space { height: 72px; }

/* INVESTMENTS */
.inv-card { border: 1px solid var(--border); padding: 44px 48px; max-width: 700px; margin-top: 40px; }
.inv-badge { display: inline-block; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); padding: 4px 12px; margin-bottom: 16px; }
.inv-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: #F5F5F5; margin-bottom: 12px; }
.inv-text { font-size: 0.9rem; color: var(--text); line-height: 1.85; }

/* CONTACT */
.contact-card { border: 1px solid var(--border); padding: 48px 52px; max-width: 500px; margin-top: 40px; }
.contact-card address { font-size: 0.9rem; color: var(--text); line-height: 2.1; }
.contact-row { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.contact-row svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.contact-row a { font-size: 0.9rem; color: var(--text); transition: color 0.3s; }
.contact-row a:hover { color: var(--gold); }

/* LEGAL */
.legal { max-width: 740px; }
.legal h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--gold); margin: 44px 0 14px; }
.legal p { font-size: 0.9rem; color: var(--text); line-height: 1.9; margin-bottom: 12px; }
.legal address { font-size: 0.9rem; color: var(--text); line-height: 2.1; margin-bottom: 16px; }

/* FOOTER */
.footer { background: var(--navy2); border-top: 1px solid var(--border); padding: 64px 80px 32px; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 12px; }
.footer-brand-name { font-family: var(--serif); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-brand-sub { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }
.footer-title { font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.footer-addr { font-size: 0.82rem; color: var(--dim); line-height: 2.0; }
.footer-row { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.footer-row svg { width: 13px; height: 13px; stroke: rgba(210,168,90,0.5); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.footer-row a { font-size: 0.82rem; color: var(--dim); transition: color 0.3s; }
.footer-row a:hover { color: var(--gold); }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.82rem; color: var(--dim); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-lang { display: flex; gap: 8px; margin-top: 14px; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-lang a { color: var(--dim); transition: color 0.3s; }
.footer-lang a.active, .footer-lang a:hover { color: var(--gold); }
.footer-lang span { color: var(--border); }
.footer-bottom { max-width: 1400px; margin: 24px auto 0; text-align: center; font-size: 0.68rem; color: var(--dim); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav { padding: 0 36px; }
  .hero-text { left: 48px; bottom: 56px; }
  .page-hero-text { left: 48px; }
  .wrap { padding: 72px 48px; }
  .cta { padding: 64px 48px; }
  .footer { padding: 56px 48px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 1px solid var(--border); }
  .card:last-child { border-bottom: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav { padding: 0 20px; height: 62px; }
  .nav-logo img { width: 36px; height: 36px; }
  .hero { height: calc(100vh - 62px); }
  .hero-text { left: 24px; right: 24px; bottom: 44px; }
  .hero-text h1 { font-size: 2.4rem; }
  .page-hero-text { left: 24px; }
  .page-hero-text h1 { font-size: 2.2rem; }
  .wrap { padding: 52px 24px; }
  .cta { padding: 52px 24px; }
  .footer { padding: 44px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-card { padding: 32px 24px; }
  .inv-card { padding: 32px 24px; }
  .card { padding: 36px 24px; }
  .nav-space { height: 62px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
