/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --bg-body: #f8faf8;
  --bg-surface: #ffffff;
  --text-main: #1d1d1f;
  --text-muted: #6b7280;
  --accent: #1e4620;
  --accent-hover: #3a6b3c;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,.04);
  --max-width: 1200px;
  --font-header: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* Global Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Utility */
.container { width: 90%; max-width: var(--max-width); margin-inline: auto; }

/* Header – Zen Dock */
.site-header {
  background: var(--bg-surface);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-family: var(--font-header);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--accent);
  font-weight: 700;
}
.search-bar {
  flex: 1;
  max-width: 420px;
  margin: 0 2rem;
}
.search-bar input {
  width: 100%;
  padding: .6rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: .95rem;
}
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.main-nav a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.main-nav a:hover { color: var(--accent); }

/* Mobile Menu – Checkbox Hack */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(0,0,0,.06);
    display: none;
  }
  #menu-toggle:checked ~ .main-nav { display: block; }
  .main-nav ul { flex-direction: column; padding: 1rem 5%; gap: 1rem; }
  .search-bar { display: none; }
}

/* Hero / Section Headings */
.section-title {
  font-family: var(--font-header);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--accent);
}
.section-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 680px;
}

/* Greenhouse Grid – Advice Cards */
.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.advice-card {
  background: var(--bg-surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.advice-card .thumb {
  height: 160px;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: .8rem;
}
.advice-card .content {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.advice-card h3 {
  font-size: 1.125rem;
  margin-bottom: .5rem;
  color: var(--text-main);
}
.advice-card p {
  font-size: .95rem;
  color: var(--text-muted);
  flex: 1;
}
.advice-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .6rem 1.25rem;
  font-weight: 500;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  transition: background .2s;
}
.btn:hover { background: var(--accent-hover); }

/* Offers Grid – Job Cards */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.job-card {
  background: var(--bg-surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.job-card h3 { font-size: 1.125rem; }
.job-card .meta {
  font-size: .875rem;
  color: var(--text-muted);
}
.job-card .excerpt {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.partner-link {
  background: var(--bg-surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.partner-link:hover { border-color: var(--accent); color: var(--accent); }

/* Show More Partners – Checkbox Hack */
.partners-wrapper .partners-hidden { display: none; }
.partners-wrapper .show-more-checkbox:checked ~ .partners-hidden { display: grid; }
.partners-wrapper .show-more-checkbox:checked ~ .show-more-container { display: none; }
.show-more-container { text-align: center; margin-top: 1.5rem; }

/* FAQ – Details/Summary Akordeon */
.faq details {
  background: var(--bg-surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
}
.faq details[open] summary::after { content: '–'; }
.faq .answer {
  margin-top: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,.85);
  margin-top: 4rem;
  padding: 3rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section h4 {
  font-family: var(--font-header);
  font-size: 1.125rem;
  margin-bottom: .75rem;
}
.footer-section a {
  display: block;
  font-size: .9rem;
  padding: .25rem 0;
  opacity: .8;
  transition: opacity .2s;
}
.footer-section a:hover { opacity: 1; }
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: .875rem;
  opacity: .7;
}

/* Responsive */
@media (max-width: 992px) {
  .advice-grid, .offers-grid, .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .advice-grid, .offers-grid, .partners-grid {
    grid-template-columns: 1fr;
  }
}