/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-body: #fdfcfd;
  --bg-surface: #ffffff;
  --text-main: #2c2c2c;
  --text-muted: #8a8a8a;
  --accent: #d9a7b1;
  --accent-hover: #c08a96;
  --radius: 10px;
  --shadow: 0 2px 6px rgba(0,0,0,.04);
  --font-header: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --gap: 24px;
}

/* Global Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-header); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p  { margin-bottom: 1em; }
a  { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* Layout Helpers */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: var(--bg-surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-family: var(--font-header);
  font-size: 1.5rem;
  color: var(--text-main);
  letter-spacing: .5px;
}

/* Desktop Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-weight: 500;
  color: var(--text-main);
  padding: .5rem 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

/* Mobile Menu (Checkbox Hack) */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-main);
  transition: .3s;
}
@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;
    padding: 1rem 0;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background .25s ease;
}
.btn:hover { background: var(--accent-hover); color: #fff; }

/* Cards */
.job-card, .partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.job-card h3 { margin-bottom: .5rem; }
.job-card .meta {
  color: var(--text-muted);
  font-size: .875rem;
  margin-bottom: 1rem;
}

/* Grids */
.offers-grid, .partners-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .offers-grid, .partners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .offers-grid, .partners-grid { grid-template-columns: 1fr; }
}

/* Partners “Show More” (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;
}
.partners-wrapper .show-more-checkbox:checked ~ .show-more-container {
  display: none;
}
.show-more-container {
  text-align: center;
  margin-top: 1.5rem;
}
.show-more-container label {
  cursor: pointer;
  color: var(--accent);
  font-weight: 500;
}

/* FAQ Accordion (details/summary) */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}
summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  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[open] summary { margin-bottom: .75rem; }

/* Footer */
.site-footer {
  background: #1e1e1e;
  color: #e5e5e5;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-section h4 {
  font-family: var(--font-header);
  margin-bottom: .75rem;
}
.footer-section a { color: #ccc; }
.footer-section a:hover { color: var(--accent); }
.site-footer .copy {
  text-align: center;
  margin-top: 2rem;
  font-size: .875rem;
  color: #999;
}