/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-body: #f5f2ed;
  --bg-surface: #ffffff;
  --text-main: #332e2a;
  --text-muted: #7d746a;
  --accent: #3a6140;
  --accent-hover: #2e4d33;
  --border-radius: 10px;
  --shadow: 0 4px 12px rgba(0,0,0,.06);
  --max-width: 1200px;
  --font-header: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .25vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(1.8rem, 1.6rem + 1vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 1.3rem + .5vw, 1.8rem); }
h3 { font-size: clamp(1.2rem, 1.1rem + .5vw, 1.5rem); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }

/* Layout */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* 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;
  font-weight: 600;
  color: var(--accent);
}

/* Nav */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 500;
  transition: color .2s;
}

.main-nav a:hover { color: var(--accent); }

#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: var(--bg-body);
  padding: 2.5rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: .75rem;
  color: var(--bg-surface);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section a { color: var(--text-muted); }
.footer-section a:hover { color: var(--bg-surface); }

/* Buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  background: var(--accent);
  color: var(--bg-surface);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: background .2s;
}

.btn:hover { background: var(--accent-hover); color: var(--bg-surface); }

/* Cards */
.job-card {
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.job-card h3 { margin: 0; }

/* Grids */
.offers-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.partner-link {
  display: block;
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s;
}

.partner-link:hover { transform: translateY(-3px); }

/* Partners show-more */
.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; }

/* FAQ accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--accent);
}

details[open] summary { margin-bottom: .5rem; }

/* Mobile */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
  }
  #menu-toggle:checked ~ .main-nav { max-height: 15rem; }
  .main-nav ul { flex-direction: column; padding: 1rem 2rem; gap: 1rem; }

  .offers-grid,
  .partners-grid { grid-template-columns: 1fr; }
}