/* ── ATREYA GMBH – Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bordeaux:       #6B1E3F;
  --bordeaux-deep:  #541539;
  --bordeaux-light: #8a2952;
  --bordeaux-pale:  #f0e6eb;
  --gold:           #C9A96E;
  --gold-light:     #e8d5b0;
  --cream:          #FAF7F2;
  --cream-dark:     #f2ece2;
  --text:           #2a1520;
  --text-light:     #7a5060;
  --white:          #ffffff;
  --shadow:         rgba(107,30,63,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.5rem); font-weight: 300; }
h3 { font-size: 1.4rem; }
p  { font-weight: 300; line-height: 1.8; color: var(--text-light); }
a  { color: var(--bordeaux); }
strong { font-weight: 500; color: var(--text); }

em { font-style: italic; color: var(--bordeaux); }
.hero em, .page-hero em, .section-dark em { color: var(--gold); font-style: italic; }

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107,30,63,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  height: 116px;
  box-shadow: 0 2px 20px var(--shadow);
}

.header-logo {
  height: 100px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 2px;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--bordeaux); }
nav ul li a.active { color: var(--bordeaux); border-bottom: 2px solid var(--gold); padding-bottom: 0.35rem; }

.cta-link {
  background: var(--bordeaux) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 2px;
  border-bottom: none !important;
}
.cta-link:hover { background: var(--bordeaux-light) !important; color: var(--cream) !important; }
.cta-link.active { color: var(--cream) !important; border-bottom: none !important; }

.lang-switch {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ccc;
  white-space: nowrap;
}
.lang-switch .active-lang { color: var(--bordeaux); }
.lang-switch a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.lang-switch a:hover { color: var(--bordeaux); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--bordeaux);
  color: var(--cream);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--bordeaux-light); transform: translateY(-1px); color: var(--cream); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--bordeaux);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--bordeaux);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--bordeaux-pale); }

.btn-ghost {
  color: var(--bordeaux);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--bordeaux-light); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--bordeaux-deep) 0%, #3a0e27 100%);
  color: var(--cream);
  padding: 90px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='rgba(255,255,255,0.025)' cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.hero h1 { color: var(--cream); margin-bottom: 1.25rem; }
.hero p { color: rgba(250,247,242,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero variant – page header (no full-height) */
.page-hero {
  background: linear-gradient(135deg, var(--bordeaux-deep) 0%, #3a0e27 100%);
  padding: 64px 5vw 56px;
  text-align: center;
}
.page-hero span { display: block; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(250,247,242,0.7); max-width: 560px; margin: 1rem auto 0; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bordeaux-pale), transparent);
  margin: 0 5vw;
}
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 0 5vw;
}

/* ── SECTION ── */
.section { padding: 5rem 5vw; }
.section-sm { padding: 3.5rem 5vw; }
.section-dark { background: var(--bordeaux-deep); }
.section-light { background: var(--cream-dark); }
.section-white { background: var(--white); }

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.75rem;
}
.section-label-gold {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-dark .section-title { color: var(--cream); }
.section-dark p { color: rgba(250,247,242,0.7); }

/* ── INDEX: PROFILE ── */
.profile-section { padding: 5rem 5vw; background: var(--white); }
.profile-section .section-label { color: var(--bordeaux); }
.profile-section h2 { color: var(--bordeaux) !important; }
.profile-section .title-tag {
  color: var(--gold);
  border-color: var(--gold-light);
}
.profile-section p { color: var(--text-light); }
.profile-section .btn-ghost { color: var(--bordeaux); border-color: var(--gold); }
.profile-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}
.profile-image {
  border-radius: 50%;
  display: inline-block;
  width: 100%;
  background: var(--bordeaux-deep);
  padding: 8px;
  box-shadow: 0 8px 32px var(--shadow);
}
.profile-image img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.profile-text h2 { color: var(--bordeaux); margin-bottom: 0.5rem; }
.profile-text .title-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* ── INDEX: FEATURES ── */
.features-section { padding: 5rem 5vw; background: var(--cream-dark); }
.features-section h2 { color: var(--bordeaux); text-align: center; margin-bottom: 0.5rem; }
.features-intro { text-align: center; max-width: 560px; margin: 0 auto 3rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow); }
.feature-card svg { color: var(--bordeaux); width: 36px; height: 36px; margin-bottom: 1.25rem; }
.feature-card h3 { color: var(--bordeaux); margin-bottom: 0.75rem; font-size: 1.25rem; }
.feature-card p { font-size: 0.92rem; }
.feature-card a { display: inline-block; margin-top: 1.25rem; }

/* ── BRANDING BANNER ── */
.branding-banner {
  padding: 6rem 5vw;
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-line { width: 48px; height: 2px; background: var(--gold); margin: 1.25rem 0; }
.banner-content h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: 0.25em;
  color: var(--bordeaux);
  text-transform: uppercase;
}
.banner-content p {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ── SERVICES PAGE ── */
.services-section { padding: 5rem 5vw; max-width: 1000px; margin: 0 auto; }
.service-block { margin-bottom: 4rem; }
.service-block h2 { color: var(--bordeaux); margin-bottom: 1rem; }
.service-block p { margin-bottom: 1rem; }

.service-list { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.service-list li {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: var(--cream-dark);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  border-radius: 0 2px 2px 0;
}
.service-list li strong { color: var(--bordeaux); }

/* ── ABOUT PAGE ── */
.about-section { padding: 5rem 5vw; max-width: 1000px; margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-grid-full { grid-column: 1 / -1; }

.cv-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.cv-list li {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--cream-dark);
  border-radius: 0 2px 2px 0;
}
.cv-list li strong { display: block; color: var(--bordeaux); font-size: 0.9rem; margin-bottom: 0.25rem; }
.cv-list li span { font-size: 0.9rem; color: var(--text-light); }

.note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--bordeaux-pale);
  border-left: 3px solid var(--bordeaux);
  border-radius: 0 4px 4px 0;
  font-size: 0.92rem;
  color: var(--text);
}
.note strong { color: var(--bordeaux); }

/* ── CONTACT PAGE ── */
.contact-section { padding: 5rem 5vw; max-width: 1000px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-info h2 { color: var(--bordeaux); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.contact-detail svg { color: var(--bordeaux); flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--text); text-decoration: none; }
.contact-detail a:hover { color: var(--bordeaux); }

.contact-highlight {
  background: var(--bordeaux);
  color: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  margin-top: 2rem;
}
.contact-highlight h3 { font-family: 'Cormorant Garamond', serif; color: var(--cream); margin-bottom: 0.75rem; }
.contact-highlight p { color: rgba(250,247,242,0.8); font-size: 0.92rem; }

/* ── LEGAL PAGES (Impressum, Datenschutz) ── */
.legal-section { padding: 5rem 5vw; max-width: 760px; margin: 0 auto; }
.legal-section h2 { color: var(--bordeaux); margin: 2rem 0 0.75rem; font-size: 1.2rem; font-family: 'Jost', sans-serif; font-weight: 500; }
.legal-section p { margin-bottom: 1rem; font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  background: #1e1015;
  color: rgba(250,247,242,0.35);
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a { color: rgba(250,247,242,0.35); text-decoration: none; margin: 0 0.5rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .profile-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .profile-image img { max-width: 220px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 680px) {
  header { padding: 0 4vw; }
  .feature-grid { grid-template-columns: 1fr; }
  nav ul { gap: 0; }
  nav ul li a { padding: 0.4rem 0.5rem; font-size: 0.72rem; }
  .lang-switch { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
}
