/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Sora:wght@300;500&display=swap');

:root {
  --bg-body: #fdfcfa;
  --bg-surface: #ffffff;
  --text-main: #2d2a26;
  --text-muted: #8c8a87;
  --accent: #9a6b4a;
  --accent-hover: #7d5538;
  --radius: 4px;
  --shadow: 0 3px 6px rgba(45,42,38,.04);
  --font-header: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --spacing: clamp(1rem, 2vw, 1.5rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw + .5rem, 1.125rem);
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- HEADER --- */
.site-header {
  background: var(--bg-surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing) 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-header);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--text-main);
}

/* --- NAV --- */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-main);
  transition: .3s;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.main-nav a {
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
}

.main-nav a:hover {
  color: var(--accent);
}

/* --- MOBILE MENU (Checkbox Hack) --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--bg-surface);
    transform: translateY(-150%);
    transition: transform .3s ease;
    box-shadow: var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 2rem 2rem;
  }

  .menu-toggle:checked ~ .main-nav {
    transform: translateY(0);
  }
}

/* --- HERO / SECTIONS --- */
section {
  padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-header);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: background .2s;
}

.btn:hover {
  background: var(--accent-hover);
}

/* --- OFFERS GRID --- */
.offers-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.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;
}

/* --- PARTNERS GRID --- */
.partners-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .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: 600;
  color: var(--text-muted);
  transition: color .2s, box-shadow .2s;
}

.partner-link:hover {
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(45,42,38,.08);
}

/* --- SHOW MORE PARTNERS (Checkbox Hack) --- */
.partners-wrapper .partners-hidden {
  display: none;
}

.partners-wrapper .show-more-checkbox {
  display: none;
}

.partners-wrapper .show-more-checkbox:checked ~ .partners-hidden {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partners-wrapper .show-more-checkbox:checked ~ .show-more-container {
  display: none;
}

@media (max-width: 900px) {
  .partners-wrapper .show-more-checkbox:checked ~ .partners-hidden {
    grid-template-columns: 1fr;
  }
}

.show-more-container {
  text-align: center;
  margin-top: 1.5rem;
}

.show-more-label {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
}

/* --- ACCORDION (FAQ) --- */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform .2s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details > *:not(summary) {
  margin-top: 1rem;
  padding-right: 2rem;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--text-main);
  color: var(--bg-body);
  padding: 3rem 1rem 2rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-section h4 {
  font-family: var(--font-header);
  font-weight: 500;
  margin-bottom: .75rem;
}

.footer-section a {
  color: var(--text-muted);
  transition: color .2s;
}

.footer-section a:hover {
  color: var(--accent);
}

/* --- UTILITIES --- */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}