* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: #fff8ec;
  color: #102033;
}

.navbar {
  height: 72px;
  padding: 0 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 248, 236, 0.96);
  border-bottom: 1px solid rgba(197, 132, 32, 0.24);
}

.logo {
  color: #c98420;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo span {
  color: #102033;
}



/* PUSH NAV TO RIGHT */
nav {
  display: flex;
  gap: 56px;
  margin-left: auto;
  margin-right: 26px;
}

nav a {
  color: #102033;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 27px 0;
  transition: 0.3s ease;
}

nav a.active,
nav a:hover {
  color: #c98420;
  border-bottom: 3px solid #c98420;
}

/* THEME TOGGLE */
.theme-switch {
  width: 74px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.switch-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3c56d, #df9e29);
  border: 1px solid rgba(201, 132, 32, 0.35);
  transition: all 0.4s ease;
  box-shadow:
    inset 0 1px 3px rgba(255,255,255,0.04),
    0 0 14px rgba(35, 140, 255, 0.12);
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fffdf7, #ffe6ad);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(36px);
  transition:
    transform 0.4s ease,
    background 0.4s ease;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.28),
    inset 0 1px 2px rgba(255,255,255,0.7);
}

.icon-toggle {
  position: absolute;
  font-size: 15px;
  transition: all 0.35s ease;
}

.sun {
  color: #f4a100;
  opacity: 1;
  transform: translateY(0);
}

.moon {
  color: #16345f;
  opacity: 0;
  transform: translateY(-10px);
}

.hero {
  min-height: 450px;
  padding-top: 88px;
  height: 300px;

  background-image:
    linear-gradient(
      90deg,
      rgba(255,248,236,.96),
      rgba(255,248,236,.68),
      rgba(255,248,236,.18)
    ),
    url("../assets/images/hero_3_light.png");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: max(1920px, 100%) auto;
  background-color: #fff8ec;

  transition: background 0.4s ease;
}



.hero-text {
  max-width: 650px;
  margin-left: 72px;
}

.hero-text h1 {
  font-size: 66px;
  font-weight: 400;
}

.hero-text h1 span {
  color: #c98420;
}

.accent-line {
  width: 42px;
  height: 3px;
  background: #c98420;
  margin: 18px 0;
}

.hero-text p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.75;
  color: #39485c;
}

.about-page {
  padding: 14px 52px 48px;
}

.panel,
.bottom-strip {
  background: linear-gradient(180deg, #fffdf8, #f6ead8);
  border: 1px solid rgba(201,132,32,.18);
  border-radius: 6px;
}

.top-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 12px;
}

.mission {
  padding: 22px;
}

.panel h2 {
  color: #102033;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.mission h2 {
  color: #102033;
}

.mission h2::first-letter,
.research h2::first-letter,
.numbers h2::first-letter {
  color: #c98420;
}

.mission p {
  color: #48596d;
  line-height: 1.65;
  font-size: 14px;
}

hr {
  border: 0;
  border-top: 1px solid rgba(201,132,32,.16);
  margin: 20px 0;
}

.numbers {
  padding: 24px;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.number-grid div {
  padding: 10px 24px;
  border-right: 1px solid rgba(201,132,32,.16);
}

.number-grid div:last-child {
  border-right: 0;
}

.number-grid strong {
  display: block;
  color: #c98420;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
}

.number-grid span {
  display: block;
  color: #102033;
  font-size: 16px;
  margin-bottom: 8px;
}

.number-grid p {
  color: #69798c;
  line-height: 1.55;
}

.research {
  margin-top: 12px;
  padding: 22px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
}

.research-grid > div {
  padding: 0 26px;
  border-right: 1px solid rgba(201,132,32,.16);
}

.research-grid > div:last-child {
  border-right: 0;
}

.icon {
  color: #c98420;
  font-size: 34px;
  margin-bottom: 14px;
}

.research h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #102033;
}

.research p {
  color: #48596d;
  font-size: 14px;
  line-height: 1.6;
}

.bottom-strip {
  margin-top: 12px;
  padding: 22px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
}

blockquote {
  font-size: 19px;
  line-height: 1.45;
  color: #102033;
  padding-right: 36px;
  border-right: 1px solid rgba(201,132,32,.16);
}

blockquote::first-letter {
  color: #c98420;
  font-size: 42px;
}

blockquote span {
  display: block;
  color: #c98420;
  font-size: 14px;
  margin-top: 8px;
}

.values {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-left: 48px;
}

.values h2 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #102033;
}

.values p {
  color: #48596d;
  word-spacing: 12px;
}

@media (max-width: 1100px) {
  .top-grid,
  .bottom-strip {
    grid-template-columns: 1fr;
  }

  .number-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .research-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  blockquote {
    border-right: 0;
    border-bottom: 1px solid rgba(201,132,32,.16);
    padding-bottom: 22px;
  }

  .values {
    padding: 22px 0 0;
  }
}

@media (max-width: 760px) {
  .navbar {
    height: auto;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .hero-text {
    margin: 0 28px;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .about-page {
    padding: 24px;
  }

  .number-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .number-grid div,
  .research-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(201,132,32,.16);
    padding: 24px 0;
  }

  .values {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


