@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Lato:wght@300;400&display=swap');

:root {
  --sage:       #7d9480;
  --sage-dark:  #566a58;
  --gold:       #b8964a;
  --bg:         #f9f7f3;
  --bg-card:    #f2ede4;
  --text:       #38332c;
  --text-light: #6b6258;
  --border:     #d8cdb5;
}

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

body {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

a {
  color: var(--text);
  text-decoration: none;
}
a:hover { color: var(--sage-dark); text-decoration: underline; }

/* ── Header ── */
.site-header { width: 100%; position: relative; }

.header-banner { width: 100%; height: auto; display: block; }

.header-subtitle {
  position: absolute;
  top: 50%;
  right: 5%;
  left: auto;
  transform: translateY(-50%);
  text-align: right;
  color: #ffffff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.header-subtitle a {
  color: #ffffff;
  text-decoration: none;
}

/* ── Navigation ── */
nav {
  background: var(--sage);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

nav ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; }

nav li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 0.7rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.79rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s;
}

nav li a:hover,
nav li a.active { background: var(--sage-dark); }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 0.25s ease;
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }

  .nav-inner { justify-content: flex-end; }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--sage);
  }

  nav ul.open { display: flex; }

  nav li { width: 100%; }

  nav li a {
    padding: 0.85rem 1.2rem;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Main ── */
main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Seiten-Intro ── */
.page-intro {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-intro h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.page-intro .tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}

/* ── Fliesstext ── */
.content-text p {
  font-size: 1.03rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.content-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin: 2.5rem 0 1rem;
}

/* ── Methoden-Liste ── */
.method-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 2rem;
}

.method-list li {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* ── Anwendungs-Liste ── */
.application-list {
  list-style: none;
  margin: 1rem 0 2rem;
}

.application-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.application-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Info-Karten (Preise / Infos) ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.info-card {
  background: var(--bg-card);
  border-top: 2px solid var(--gold);
  padding: 1.2rem 1.3rem;
}

.info-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── Ausbildungs-Liste ── */
.education-list {
  list-style: none;
  margin: 1rem 0 2rem;
}

.education-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.education-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ── Kontaktformular ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
}

.contact-info p, .contact-info a {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  display: block;
  line-height: 1.8;
}

.contact-info a:hover { color: var(--sage-dark); text-decoration: underline; }

.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--sage); }

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .radio-group { display: flex; gap: 1.5rem; margin-top: 0.3rem; }

.contact-form .radio-group label {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; letter-spacing: 0; text-transform: none;
  color: var(--text); margin: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1.5rem;
}

.btn:hover { background: #a07a30; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-left: 0.8rem;
}

.btn-outline:hover { background: var(--bg-card); }

/* ── Zitat-Block ── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.5rem;
  margin: 2.5rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-light);
  background: var(--bg-card);
}

.quote-block cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ── Trennlinie ── */
.divider { width: 50px; height: 2px; background: var(--gold); margin: 2rem 0; }

/* ── Notiz / Hinweis ── */
.note {
  background: var(--bg-card);
  border-left: 3px solid var(--border);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 1.5rem 0;
}

/* ── Footer ── */
footer {
  background: var(--sage);
  color: #ffffff;
  margin-top: 4rem;
  padding: 2.5rem 1.5rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.footer-col h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.footer-col p,
.footer-col a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: block;
  line-height: 1.5;
}

.footer-col a:hover { color: #ffffff; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  max-width: 820px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav ul { justify-content: flex-start; }
  nav li a { padding: 0.6rem 0.75rem; font-size: 0.75rem; }
  .page-intro h1 { font-size: 1.8rem; }
  .header-subtitle { font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .method-list { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
