/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0e0d0c;
  --bg-alt: #16140f;
  --surface: #1c1a15;
  --surface-2: #221f18;
  --border: #332e22;
  --gold: #d4af37;
  --gold-light: #f3d885;
  --gold-dark: #a3811f;
  --text: #f3efe6;
  --text-dim: #b8b0a0;
  --text-faint: #8a8375;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

em { font-style: italic; color: var(--gold-light); }

.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-sub { color: var(--text-dim); font-size: 16px; margin-top: 10px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1b1608;
  box-shadow: 0 10px 25px -8px rgba(212,175,55,0.5);
}
.btn-gold:hover { box-shadow: 0 14px 32px -8px rgba(212,175,55,0.7); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  padding: 12px 16px;
}
.btn-ghost:hover { color: var(--gold-light); }

.btn-lg { padding: 16px 32px; font-size: 15.5px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 13, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1b1608;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
}
.logo-text { font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: 0.3px; }
.logo-text em { font-style: normal; color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 14.5px;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a.btn { flex-shrink: 0; }
.main-nav a.btn-gold {
  background: #9c7a1a;
  color: #1b1608;
  box-shadow: none;
}
.main-nav a.btn-gold:hover { background: var(--gold-dark); color: #1b1608; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,13,12,0.35) 0%, rgba(14,13,12,0.7) 55%, rgba(14,13,12,0.94) 100%);
  z-index: -1;
}
.hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 130px 0 70px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(243,239,230,0.15);
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-item strong { font-family: var(--serif); font-size: 24px; color: var(--gold-light); }
.trust-item span { font-size: 13px; color: var(--text-faint); }

/* ============ ABOUT ============ */
.about { padding: 100px 0; background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 18px; }
.about-text p { color: var(--text-dim); margin-bottom: 16px; font-size: 16px; }
.about-text .btn { margin-top: 12px; }

.about-visual { display: flex; flex-direction: column; gap: 20px; }
.about-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.city-badge {
  display: inline-block;
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 10px;
}
.about-card p { color: var(--text-dim); font-size: 14.5px; }

/* ============ WHY CHOOSE US ============ */
.why { padding: 110px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--shadow);
}
.why-icon {
  font-size: 30px;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--gold-light); }
.why-card p { color: var(--text-dim); font-size: 14.5px; }

/* ============ MEMBERS ============ */
.members { padding: 100px 0; background: var(--bg-alt); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.member-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.member-avatar {
  position: relative;
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
}
.verified-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #1b1608;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--surface);
}
.member-card h3 { font-size: 17px; margin-bottom: 4px; }
.member-card p { color: var(--text-faint); font-size: 13.5px; }

/* ============ ÖSTERREICHISCHE LEBENSWEISE ============ */
.lifestyle { padding: 100px 0; background: var(--bg-alt); text-align: center; }
.lifestyle-inner { max-width: 760px; margin: 0 auto; }
.lifestyle-inner p:not(.eyebrow) { color: var(--text-dim); font-size: 16px; margin: 0 0 30px; }

/* ============ SUCCESS STORY ============ */
.story {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(212,175,55,0.08), transparent 70%),
    var(--bg);
}
.story-flex {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.story-image { display: flex; justify-content: center; }
.story-photo {
  width: 260px; height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  box-shadow: var(--shadow);
  border: 4px solid var(--surface-2);
}
.story-content h2 { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 18px; }
.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.story-link { color: var(--gold-light); font-weight: 600; font-size: 14.5px; }
.story-link:hover { color: var(--gold); }

/* ============ FAQ ============ */
.faq { padding: 110px 0; background: var(--bg-alt); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.faq .section-head { margin-bottom: 0; }
.faq .btn { margin-top: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: rgba(212,175,55,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #1b1608; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 240px; padding: 0 24px 22px; }
.faq-answer p { color: var(--text-dim); font-size: 14.5px; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #1d1810, #2a2110);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.final-cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; }
.final-cta p { color: var(--text-dim); margin-bottom: 30px; font-size: 16px; }

/* ============ FOOTER ============ */
.site-footer { padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-faint); font-size: 14px; margin-top: 14px; max-width: 240px; }
.footer-col h4 { font-size: 14px; color: var(--gold-light); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 14.5px; margin-bottom: 10px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding: 24px 0 30px; text-align: center; }
.footer-bottom p { color: var(--text-faint); font-size: 13px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { min-height: 560px; }
  .hero-inner { padding: 110px 0 60px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { margin-top: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .story-flex { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .story-photo { width: 200px; height: 200px; font-size: 46px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
  }
  .main-nav.mobile-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav a.btn {
    border-bottom: none;
    justify-content: center;
    margin-top: 10px;
  }
  .main-nav a.btn-ghost { margin-top: 14px; }
  .nav-toggle { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
