/* ─── LOCAL FONTS ─── */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-400.ttf') format('truetype'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-500.ttf') format('truetype'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-600.ttf') format('truetype'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-italic-400.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-300.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.ttf') format('truetype'); }

/* AJ Supervision – Stylesheet
   Design: Warm Professional · Olive & Linen
   Colors: #3F4F3C (primary) · #6B7F68 (secondary) · #2E2E2E (text) · #EFEDE8 (bg)
*/

:root {
  --primary:    #3F4F3C;
  --secondary:  #6B7F68;
  --accent:     #4a5e47;
  --text:       #2E2E2E;
  --text-light: #5a5a5a;
  --bg:         #EFEDE8;
  --surface:    #EFEDE8;
  --white:      #FFFFFF;
  --border:     #D5D0C8;
  --max-w:      1100px;
  --radius:     6px;
  --shadow:     0 2px 16px rgba(63,79,60,0.10);
  --transition: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: #3F4F3C; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #EFEDE8;
  line-height: 1.75;
  font-size: 1rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--primary);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--alt { background: var(--surface); }

/* ─── HEADER ─── */
.header {
  position: sticky; top: 0;
  background: var(--primary);
  z-index: 100;
  height: 120px;
}
.header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0.5rem;
}
.header__logo {
  display: flex; align-items: center; text-decoration: none;
}
.header__logo-img { height: 108px; width: auto; display: block; }
.header__logo-text { display: none; }

.nav { display: flex; align-items: center; gap: 0; }
.nav__link {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(239,237,232,0.88);
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav__link:hover, .nav__link.active {
  background: rgba(255,255,255,0.1); color: #fff;
}
.nav__link--cta { color: rgba(239,237,232,0.88); }
.nav__link--cta:hover { background: rgba(255,255,255,0.1); color: #fff; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none;
  border: 1px solid rgba(239,237,232,0.45);
  border-radius: 4px; padding: 8px 10px;
}
.burger span {
  display: block; width: 20px; height: 1.5px;
  background: #EFEDE8; border-radius: 1px;
  transition: var(--transition);
}

/* ─── STRIPE ─── */
.stripe {
  background: var(--secondary); color: #fff;
  padding: 0.85rem 1.5rem; text-align: center;
  font-size: 0.85rem; letter-spacing: 0.04em;
}

/* ─── HERO (Startseite) ─── */
.hero {
  padding: 7rem 0 5.5rem;
  background: var(--surface);
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107,127,104,0.12), transparent);
  pointer-events: none;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--secondary);
  margin-bottom: 1.2rem;
}
.hero__title { margin-bottom: 1.5rem; }
.hero__title em { font-style: italic; color: var(--secondary); }
.hero__subtitle {
  font-size: 1.15rem; color: var(--text-light);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.85;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; text-decoration: none;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* ─── SECTION HEADER ─── */
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__tag {
  display: block; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 0.75rem;
}
.section__title { margin-bottom: 1rem; }
.section__subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 580px; margin: 0 auto;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 6px 28px rgba(63,79,60,0.15); transform: translateY(-2px); }
.card__icon { font-size: 2rem; margin-bottom: 1rem; }
.card__title { margin-bottom: 0.6rem; }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }

/* ─── PRICE CARDS ─── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.price-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 2.2rem 1.8rem;
  text-align: center; position: relative;
}
.price-card--featured { border-color: var(--primary); }
.price-card__badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white;
  font-size: 0.72rem; padding: 0.25rem 1rem;
  border-radius: 20px; white-space: nowrap; letter-spacing: 0.06em;
}
.price-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.price-card__desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.price-card__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--primary); font-weight: 600;
  line-height: 1; margin-bottom: 0.2rem;
}
.price-card__unit { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--surface); padding: 4.5rem 0 3.5rem; text-align: center;
}
.page-hero__tag {
  display: block; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 0.9rem;
}
.page-hero__title { margin-bottom: 1rem; }
.page-hero__subtitle {
  font-size: 1.1rem; color: var(--text-light);
  max-width: 560px; margin: 0 auto;
}

/* ─── CONTACT FORM ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--white); color: var(--text);
  font-size: 1rem; font-family: inherit;
  transition: border-color var(--transition); appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--secondary);
}
.form-textarea { min-height: 145px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.4rem; }
.form-success {
  display: none; background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: var(--radius); padding: 1rem 1.5rem;
  color: #2e7d32; margin-bottom: 1rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--secondary); margin-bottom: 0.2rem; }
.contact-info__value { color: var(--text); font-size: 0.97rem; }

/* ─── DIVIDER ─── */
.divider { width: 60px; height: 3px; background: var(--secondary); margin: 1.5rem auto; border-radius: 2px; }
.divider--left { margin-left: 0; }

/* ─── CHECK LIST ─── */
.check-list { display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li { padding-left: 1.8rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }

/* ─── QUOTE ─── */
blockquote {
  border-left: 3px solid var(--secondary);
  padding: 1rem 1.5rem; margin: 2rem 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--primary);
  font-style: italic; margin: 0;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--primary); color: white;
  padding: 5rem 0; text-align: center;
}
.cta-band h2 { color: white; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.btn--white { background: white; color: var(--primary); border-color: white; }
.btn--white:hover { background: #EFEDE8; color: var(--primary); }
.btn--outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { border-color: white; }

/* ─── FOOTER ─── */
.footer { background: var(--primary); color: rgba(255,255,255,0.85); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: white; margin-bottom: 0.75rem;
}
.footer__desc { font-size: 0.88rem; opacity: 0.75; line-height: 1.8; }
.footer__heading {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { color: rgba(255,255,255,0.75); font-size: 0.88rem; transition: color var(--transition); }
.footer__links a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; opacity: 0.55; flex-wrap: wrap; gap: 0.75rem;
}

/* ─── ÜBER MICH ─── */
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.about-photo {
  aspect-ratio: 3/4; background: var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.9rem; text-align: center;
}

/* ─── SUPERVISION PAGE ─── */
.steps { display: flex; flex-direction: column; gap: 2rem; counter-reset: step; }
.step { display: flex; gap: 2rem; align-items: flex-start; }
.step__num {
  flex-shrink: 0; width: 3rem; height: 3rem;
  background: var(--primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
}
.step__body h3 { margin-bottom: 0.5rem; }

/* ─── IMPRESSUM / DATENSCHUTZ ─── */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text-light); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 680px) {
  .header { height: 84px; }
  .header__logo-img { height: 68px; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--primary); border-top: 1px solid rgba(255,255,255,0.1); padding: 0; gap: 0; z-index: 99; }
  .nav.open { display: flex; }
  .nav__link { display: block; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); border-radius: 0; color: rgba(239,237,232,0.9); font-size: 0.9rem; }
  .nav__link:last-child { border-bottom: none; }
  .burger { display: flex; }
  .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 5rem 0 4rem; }
}
