:root {
  --bg: #061634;
  --paper: #0f2a57;
  --ink: #f5f8ff;
  --ink-on-paper: #f5f8ff;
  --muted: #c0cfee;
  --brand: #f5b51a;
  --brand-deep: #dd9f0f;
  --accent: #29d3bc;
  --line: rgba(209, 222, 255, 0.24);
  --radius: 18px;
  --shadow: 0 14px 30px rgba(2, 11, 27, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 12% 5%, rgba(245, 181, 26, 0.2), transparent 36%),
    radial-gradient(circle at 86% 15%, rgba(41, 211, 188, 0.16), transparent 30%),
    linear-gradient(180deg, #082049 0%, #071b3e 50%, #061634 100%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(6, 22, 52, 0.9);
  border-bottom: 1px solid rgba(209, 222, 255, 0.2);
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.7px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(10, 35, 74, 0.96);
  color: var(--ink);
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  padding: 5rem 0 3rem;
}

.recent-workshop {
  margin-top: 2.2rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.recent-workshop h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  margin-bottom: 0.85rem;
}

.recent-workshop-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 0.85rem;
}

.recent-workshop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-workshop-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(160deg, #15356a, #0c2550);
  color: #f5f8ff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.recent-workshop p {
  color: var(--muted);
  margin: 0;
}

.testimonials {
  padding-top: 2.4rem;
}

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.testimonial-name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--brand);
}

.testimonial-role {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.9px;
  font-size: 0.78rem;
  color: var(--brand);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 16ch;
}

.lead {
  max-width: 64ch;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #2b1a00;
  box-shadow: 0 8px 20px rgba(245, 181, 26, 0.34);
}

.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(245, 248, 255, 0.55);
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(245, 248, 255, 0.12);
  transform: translateY(-1px);
}

.hero-metrics {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-metrics article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-metrics h2 {
  font-size: 1.15rem;
}

.section {
  padding: 4rem 0;
  border-top: 1px solid rgba(209, 222, 255, 0.12);
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head h2 {
  max-width: 24ch;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

.services-grid,
.impact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.impact-card,
.team-card,
.about-panel,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  color: var(--ink-on-paper);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.impact-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 181, 26, 0.6);
}

.card h3,
.impact-card h3,
.team-card h3 {
  font-size: 1.25rem;
}

.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.about-panel h3 {
  margin-bottom: 0.9rem;
}

.about-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.about-panel li {
  margin-bottom: 0.5rem;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card.featured {
  border: 2px solid var(--brand);
}

.ceo-photo-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 0.75rem;
}

.ceo-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 181, 26, 0.75);
  box-shadow: 0 8px 18px rgba(2, 11, 27, 0.35);
  display: block;
}

.ceo-photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(245, 181, 26, 0.75);
  background: linear-gradient(160deg, #12376f, #0c2550);
  color: #f5f8ff;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(2, 11, 27, 0.35);
}

.role {
  font-weight: 700;
  color: var(--brand);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.hidden-honeypot {
  display: none;
}

.contact-form [data-netlify-recaptcha="true"] {
  margin: 0.2rem 0 0.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  background: rgba(7, 23, 48, 0.95);
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9eb4de;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(245, 181, 26, 0.3);
  border-color: var(--brand);
}

.form-note {
  min-height: 1.2em;
  color: var(--accent);
  font-size: 0.95rem;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(209, 222, 255, 0.2);
  margin-top: 2rem;
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-metrics,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 80px;
    flex-direction: column;
    background: rgba(9, 30, 63, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .services-grid,
  .impact-grid,
  .team-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .recent-workshop {
    margin-top: 1.1rem;
  }
}
