/* Global colour variables */
:root {
  --navy: #0A2640;
  --beige: #F7F1E7;
  --text: #0A2640;
  --light-text: #F7F1E7;
  --muted: #6B7280;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--navy);
  color: var(--light-text);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 64px;
  width: auto;
  display: block;
}
.nav a {
  margin-left: 20px;
  color: var(--light-text);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav a:hover {
  color: #ffffff;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 80px);
  min-height: 560px;
  overflow: hidden;
}
.hero-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.hero-left {
  background: var(--navy);
  color: var(--light-text);
}
.hero-right {
  background: var(--beige);
  color: var(--text);
}
.hero-content {
  max-width: 480px;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 16px;
}
.hero p {
  margin: 0 0 24px;
  opacity: 0.92;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 2px solid currentColor;
  transition: transform 0.2s;
}
.cta.light {
  color: var(--light-text);
  border-color: var(--light-text);
}
.cta.dark {
  color: var(--text);
  border-color: var(--text);
}
.cta:hover {
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid #eee;
  color: var(--muted);
  text-align: center;
  background: #fff;
}

/* Page layout for other pages */
.page-header {
  background: var(--navy);
  color: var(--light-text);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  margin: 0;
  font-size: 36px;
}
.content-section {
  padding: 60px 20px;
}
.content-section h2 {
  margin-top: 0;
  font-size: 28px;
}
.content-section p {
  margin-bottom: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.service-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 20px;
  border-radius: 8px;
}
.service-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
}
.mentoring-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.step {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 20px;
  border-radius: 8px;
}
.step h3 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 8px;
}
/* Contact form */
.contact-form {
  max-width: 460px;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 16px;
}
.contact-form button {
  background: var(--navy);
  color: var(--light-text);
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.contact-form button:hover {
  background: #091E38;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero-col {
    width: 100%;
    padding: 32px 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .nav a {
    margin-left: 14px;
    font-size: 14px;
  }
  .site-header {
    padding: 12px 0;
  }
  .brand img {
    height: 40px;
  }
}