/* 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: #0b0f19;
  --bg-surface: #111827;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #d4af37;
  --accent-hover: #f3c653;
  --radius: 12px;
  --shadow: 0 8px 20px -4px rgba(0,0,0,0.35);
  --font-header: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --gap: 24px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Subtle decoration */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.02) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.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: 16px 0;
}

.logo {
  font-family: var(--font-header);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .5px;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a:focus { color: var(--accent-hover); }

/* Mobile menu (checkbox hack) */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  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);
    transform: translateY(-120%);
    transition: transform .3s ease;
    padding: 20px 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
    padding-left: 5%;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
}

/* Main content */
main {
  flex: 1;
  padding: var(--gap) 0;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-header);
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: .6em;
}
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 28px); }

p { margin-bottom: 1em; }
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--bg-body);
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn:hover { background: var(--accent-hover); }

/* Cards */
.job-card,
.partner-link {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.job-card:hover,
.partner-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(0,0,0,.45);
}

/* Grids */
.offers-grid,
.partners-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .offers-grid,
  .partners-grid { grid-template-columns: repeat(2, 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:checked ~ .partners-hidden { display: grid; }
.partners-wrapper .show-more-checkbox:checked ~ .show-more-container { display: none; }

.show-more-label {
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* FAQ accordion */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after {
  content: "+";
  font-size: 1.2em;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }

/* Footer */
.site-footer {
  background: var(--bg-surface);
  padding: 40px 0 24px;
  margin-top: auto;
  font-size: clamp(14px, 1vw, 15px);
  color: var(--text-muted);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}
.footer-section h4 {
  font-family: var(--font-header);
  font-size: 1.1em;
  margin-bottom: 8px;
  color: var(--text-main);
}
.footer-section ul {
  list-style: none;
}
.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-section a:hover { color: var(--accent-hover); }

.footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}