:root {
  --navy: #071a2e;
  --navy-deep: #050f1c;
  --navy-soft: #0f2942;
  --gold: #d4af37;
  --gold-light: #e8c766;
  --off-white: #faf8f3;
  --white: #ffffff;
  --ink: #14263a;
  --muted: #687385;
  --line: rgba(7, 26, 46, 0.1);
  --shadow: 0 18px 46px rgba(7, 26, 46, 0.1);
  --shadow-strong: 0 26px 70px rgba(5, 15, 28, 0.28);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 0.9, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s ease,
    background-color 0.3s ease;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.btn--gold:hover,
.btn--glass:hover,
.btn--outline:hover,
.btn--navy:hover {
  transform: translateY(-2px);
}

.btn--gold:hover {
  box-shadow: 0 18px 38px rgba(212, 175, 55, 0.38);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn--outline:hover,
.btn--glass:hover {
  border-color: var(--gold-light);
}

.btn--glass {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn--outline-navy {
  border: 1px solid rgba(7, 26, 46, 0.2);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.about-navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0;
  color: var(--white);
  transition:
    background-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease);
}

.about-navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(5, 15, 28, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(5, 15, 28, 0.32);
}

.about-navbar__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__home-icon {
  width: 34px;
  height: 34px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.brand__text {
  display: grid;
  gap: 1px;
  line-height: 1.08;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand__text small {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
}

.about-navbar__menu,
.about-navbar__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-navbar__menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-navbar__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.25s var(--ease);
}

.about-navbar__menu a:hover,
.about-navbar__menu a.is-active {
  color: var(--white);
}

.about-navbar__menu a:hover::after,
.about-navbar__menu a.is-active::after {
  width: 100%;
}

.about-navbar__actions {
  gap: 10px;
}

.menu-button {
  display: none;
  width: 28px;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.about-navbar__mobile {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: 12px auto 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy);
  box-shadow: var(--shadow-strong);
}

.about-navbar__mobile.is-open {
  display: grid;
  gap: 10px;
}

.about-navbar__mobile a:not(.btn) {
  padding: 10px 4px;
  font-weight: 800;
}

.about-navbar__mobile div {
  display: flex;
  gap: 10px;
}

.about-navbar__mobile .btn {
  flex: 1;
}

.about-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.about-hero__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(232, 199, 102, 0.1), transparent 30%),
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 42%, var(--navy-deep) 100%);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 28, 0.72) 0%, rgba(5, 15, 28, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 15, 28, 0.08), rgba(5, 15, 28, 0.42));
}

.about-hero__overlay::before,
.about-hero__overlay::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(232, 199, 102, 0.18);
  transform: rotate(-8deg);
}

.about-hero__overlay::before {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 18%;
  border-radius: 36px;
}

.about-hero__overlay::after {
  width: 220px;
  height: 220px;
  right: 22%;
  bottom: 12%;
  border-radius: 28px;
}

.about-hero__brand-art {
  position: absolute;
  right: 8%;
  top: 18%;
  z-index: 1;
  width: 420px;
  height: 420px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  pointer-events: none;
}

.about-hero__brand-art svg {
  width: clamp(130px, 15vw, 220px);
  height: clamp(130px, 15vw, 220px);
  opacity: 0.72;
  filter: drop-shadow(0 22px 44px rgba(212, 175, 55, 0.18));
}

.about-hero__content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.about-hero h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 650;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.slogan-section {
  background: var(--navy-deep);
  padding: clamp(72px, 12vw, 150px) 20px;
  text-align: center;
}

.slogan {
  width: min(1100px, 100%);
  margin: 0 auto;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 1.04;
  font-weight: 750;
  letter-spacing: 0;
  text-shadow: 0 16px 46px rgba(212, 175, 55, 0.14);
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.09), transparent 28%),
    var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.commitment h2,
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
  color: var(--navy);
  font-weight: 650;
}

.section--navy .section-heading h2 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.rich-text {
  display: grid;
  gap: 18px;
  color: rgba(20, 38, 58, 0.78);
  font-size: 1.04rem;
  line-height: 1.85;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.statement-card,
.value-card,
.feature-card,
.number-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s ease;
}

.statement-card:hover,
.value-card:hover,
.feature-card:hover,
.number-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.36);
  box-shadow: 0 28px 70px rgba(7, 26, 46, 0.14);
}

.statement-card {
  min-height: 320px;
  padding: clamp(26px, 4vw, 42px);
}

.statement-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.13);
  color: var(--gold);
  font-size: 1.35rem;
}

.statement-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.statement-card h3 {
  margin: 12px 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.12;
}

.statement-card p {
  color: var(--muted);
  line-height: 1.7;
}

.values-grid,
.features-grid,
.numbers-grid {
  display: grid;
  gap: 18px;
}

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

.value-card {
  padding: 26px;
}

.value-card i {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold-light);
}

.value-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.value-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.timeline-step {
  position: relative;
  min-height: 190px;
  padding: 24px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(8px);
}

.timeline-step::after {
  content: "↓";
  position: absolute;
  right: -17px;
  top: 54px;
  z-index: 2;
  color: var(--gold-light);
  font-size: 1.15rem;
  transform: rotate(-90deg);
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-step span {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.2);
}

.timeline-step i {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 1.3rem;
}

.timeline-step strong {
  display: block;
  color: var(--white);
  line-height: 1.35;
}

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

.feature-card {
  min-height: 112px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-card i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
}

.feature-card span {
  font-weight: 800;
  color: var(--navy);
}

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

.number-card {
  padding: 28px 20px;
  text-align: center;
}

.number-card strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
}

.number-card span {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 800;
}

.commitment {
  padding: clamp(80px, 10vw, 150px) 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 28, 0.88), rgba(5, 15, 28, 0.62)),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1800&q=85")
      center/cover no-repeat;
  color: var(--white);
}

.commitment__inner {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.commitment h2,
.final-cta h2 {
  color: var(--white);
}

.commitment p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.final-cta {
  padding: clamp(80px, 10vw, 130px) 20px;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.final-cta__inner {
  width: min(880px, 100%);
  margin: 0 auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  background: #030a13;
  color: var(--white);
  padding: 58px 0 24px;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.7fr));
  gap: 36px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h3 {
  color: var(--gold-light);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition:
    transform 0.25s var(--ease),
    background-color 0.25s ease,
    color 0.25s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--navy-deep);
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .about-navbar__menu,
  .about-navbar__actions > .btn,
  .about-navbar__actions > .navbar-auth {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .two-column,
  .mission-grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }

  .timeline-step {
    min-height: auto;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 16px;
    align-items: center;
    text-align: left;
  }

  .timeline-step span {
    margin: 0;
  }

  .timeline-step i {
    margin: 0;
  }

  .timeline-step::after {
    left: 18px;
    right: auto;
    top: auto;
    bottom: -23px;
    transform: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero__brand-art {
    display: none;
  }
}

@media (max-width: 680px) {
  .about-navbar__inner {
    width: calc(100% - 28px);
  }

  .brand__text small {
    display: none;
  }

  .about-hero {
    min-height: 86vh;
  }

  .about-hero__content {
    width: calc(100% - 32px);
    padding-top: 126px;
  }

  .hero-actions,
  .about-navbar__mobile div {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section__inner,
  .site-footer__inner,
  .copyright {
    width: calc(100% - 32px);
  }

  .values-grid,
  .features-grid,
  .numbers-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .statement-card,
  .value-card,
  .feature-card {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
