/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@600&display=swap');

:root {
  --bg-body: #fdfcfb;
  --bg-surface: #ffffff;
  --text-main: #2b2b2b;
  --text-muted: #7d7d7d;
  --accent: #5a7c65;
  --accent-hover: #3e614b;
  --radius: 10px;
  --shadow: 0 2px 6px rgba(0,0,0,.06);
  --font-header: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-header); font-weight: 600; color: var(--accent); }
h1 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }
h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.site-header {
  background: var(--bg-surface);
  box-shadow: var(--shadow);
  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: 1.5rem;
  color: var(--accent);
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  font-weight: 500;
  color: var(--text-main);
}
#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
}

/* Mobile menu */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform .3s ease;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
  .main-nav ul { flex-direction: column; padding: 1rem; gap: 1rem; }
}

/* Sections */
section { padding: 3rem 0; }
.section-title { margin-bottom: 1.5rem; text-align: center; }

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .offers-grid { grid-template-columns: 1fr; }
}

/* Job Card */
.job-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.job-card h3 { margin-bottom: .25rem; }
.job-card .meta {
  font-size: .875rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background .2s;
}
.btn:hover { background: var(--accent-hover); color: #fff; }

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .partners-grid { grid-template-columns: 1fr; }
}
.partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  text-align: center;
  font-weight: 500;
  color: var(--text-main);
}
.partners-hidden { display: none; }
.show-more-checkbox { display: none; }
.show-more-checkbox:checked ~ .partners-hidden { display: grid; }
.show-more-checkbox:checked ~ .show-more-container { display: none; }
.show-more-container { text-align: center; margin-top: 1.5rem; }

/* FAQ accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--accent);
}
details[open] summary { margin-bottom: .5rem; }

/* Footer */
.site-footer {
  background: var(--accent);
  color: #fff;
  margin-top: 3rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2.5rem 0;
}
.footer-section h4 {
  font-family: var(--font-header);
  margin-bottom: .75rem;
}
.footer-section a { color: #e6efe8; }
.footer-section a:hover { color: #fff; }

/* Subtle decoration */
.wave-divider {
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 24" preserveAspectRatio="none"><path d="M0,12 C150,0 300,24 600,12 C900,0 1050,24 1200,12 L1200,24 L0,24 Z" fill="%235a7c65" opacity=".05"/></svg>');
  background-size: 1200px 24px;
}