/* General reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #111111;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

/* Header & nav */
.site-header {
  background: #050505;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 600;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8d14a, #c59112);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  font-weight: 800;
  color: #050505;
}

.logo-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #f5f5f5;
  font-size: 0.9rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: #222;
}

.nav a.active {
  background: #f8d14a;
  color: #050505;
}

.btn-nav {
  border: 1px solid #f8d14a;
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f8d14a, #c59112);
  color: #050505;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #f8d14a;
  border: 1px solid #f8d14a;
}

.btn-outline:hover {
  background: #f8d14a;
  color: #050505;
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top left, #333 0, #050505 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 32rem;
  margin-bottom: 1.5rem;
  color: #d4d4d4;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* Cards & grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  background: #111111;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #262626;
}

.section-alt .card {
  background: #050505;
}

/* Lists */
.list {
  list-style: none;
  margin-top: 0.5rem;
}

.list li {
  margin-bottom: 0.4rem;
  padding-left: 1.1rem;
  position: relative;
}

.list li::before {
  content: "•";
  color: #f8d14a;
  position: absolute;
  left: 0;
}

/* Page headers */
.page-header {
  padding: 3.5rem 0 2rem;
  background: #0b0b0b;
  border-bottom: 1px solid #222;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

/* Mission box */
.narrow {
  max-width: 720px;
}

.mission-box {
  border-left: 4px solid #f8d14a;
  padding: 1.25rem 1.5rem;
  background: #111111;
  margin-bottom: 3rem;
}

/* Contact */
.contact-list li {
  margin-bottom: 0.3rem;
}

.contact-form {
  background: #111111;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #262626;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  background: #050505;
  border-radius: 0.75rem;
  border: 1px solid #333;
  padding: 0.6rem 0.75rem;
  color: #f5f5f5;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid #f8d14a;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #f8d14a, #c59112);
  color: #050505;
}

.cta-inner {
  text-align: center;
}

.cta-inner p {
  max-width: 32rem;
  margin: 0.5rem auto 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: #050505;
  border-top: 1px solid #222;
}

.footer-inner {
  text-align: center;
}

.footer-small,
.small,
.note {
  font-size: 0.85rem;
  color: #b3b3b3;
}

.small {
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .grid-3,
  .grid-2,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .nav {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .nav {
    justify-content: flex-start;
  }
}
