@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --surface-strong: #0b1524;
  --surface-soft: #e6ebf1;
  --text: #1e293b;
  --text-soft: #59667a;
  --line: rgba(11, 21, 36, 0.1);
  --accent: #f4b73e;
  --accent-deep: #cf8a04;
  --shadow: 0 18px 44px rgba(11, 21, 36, 0.14);
  --radius: 24px;
  --container: 1180px;
  --page-accent: radial-gradient(circle at top left, rgba(244, 183, 62, 0.18), transparent 26%);
  --page-bg: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  --section-tint-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.95)),
    linear-gradient(130deg, rgba(244, 183, 62, 0.18), transparent 42%);
  --topbar-bg: #06111f;
  --header-bg: rgba(255, 255, 255, 0.92);
  --mobile-nav-bg: rgba(255, 255, 255, 0.98);
  --hero-glass: rgba(255, 255, 255, 0.08);
  --hero-border: rgba(255, 255, 255, 0.12);
  --hero-social-border: rgba(255, 255, 255, 0.22);
  --hero-badge-bg: rgba(255, 255, 255, 0.14);
  --card-bg: rgba(255, 255, 255, 0.82);
  --card-bg-strong: rgba(255, 255, 255, 0.92);
  --footer-copy: rgba(255, 255, 255, 0.88);
}

body.theme-dark {
  --bg: #08111b;
  --surface: #0f1825;
  --surface-strong: #f8fafc;
  --surface-soft: #1a2636;
  --text: #e8eef7;
  --text-soft: #b7c3d4;
  --line: rgba(226, 232, 240, 0.14);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  --page-accent: radial-gradient(circle at top left, rgba(244, 183, 62, 0.1), transparent 24%);
  --page-bg: linear-gradient(180deg, #06101a 0%, #0b1524 100%);
  --section-tint-bg:
    linear-gradient(180deg, rgba(10, 18, 30, 0.88), rgba(10, 18, 30, 0.96)),
    linear-gradient(130deg, rgba(244, 183, 62, 0.08), transparent 42%);
  --topbar-bg: #03070d;
  --header-bg: rgba(8, 17, 27, 0.94);
  --mobile-nav-bg: rgba(8, 17, 27, 0.98);
  --hero-glass: rgba(7, 13, 22, 0.42);
  --hero-border: rgba(255, 255, 255, 0.1);
  --hero-social-border: rgba(255, 255, 255, 0.16);
  --hero-badge-bg: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(15, 23, 36, 0.9);
  --card-bg-strong: rgba(15, 23, 36, 0.96);
  --footer-copy: rgba(255, 255, 255, 0.88);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--page-accent), var(--page-bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

ul {
  margin: 0;
  padding-left: 1.2rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section--tint {
  background: var(--section-tint-bg);
}

.stack {
  display: grid;
  gap: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.split--image-left {
  grid-template-columns: 0.95fr 1.05fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent-deep);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 2px;
  background: currentColor;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.split h2,
.quote-card h2,
.feature-card h2,
.timeline-card h3,
.contact-card h2 {
  font-size: clamp(2rem, 2vw + 1rem, 3.2rem);
}

.topbar {
  background: var(--topbar-bg);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.topbar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  min-height: 2.9rem;
}

.topbar a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-condensed {
  box-shadow: 0 10px 34px rgba(6, 17, 31, 0.08);
  border-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.8rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 22rem;
}

.brand--text {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), #ffd06f);
  color: #08111b;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--surface-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav ul,
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.theme-toggle__icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffd06f);
  box-shadow: inset -4px -4px 0 rgba(8, 17, 27, 0.16);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--surface-strong);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--mobile-nav-bg);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 8.7rem);
  overflow: hidden;
  background: #0b1524;
}

.hero-slide,
.page-hero {
  background-size: cover;
  background-position: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 850ms ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.84) 0%, rgba(6, 17, 31, 0.54) 48%, rgba(6, 17, 31, 0.7) 100%),
    linear-gradient(180deg, rgba(6, 17, 31, 0.28), rgba(6, 17, 31, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: end;
  min-height: inherit;
  padding: 6rem 0 5rem;
}

.hero-panel,
.hero-aside {
  border: 1px solid var(--hero-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  background: var(--hero-glass);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 1.35rem;
  padding: 2rem;
}

.hero-panel h1,
.page-hero h1 {
  font-size: clamp(3rem, 5vw, 6rem);
}

.hero-panel .eyebrow,
.hero-aside .eyebrow,
.page-hero .eyebrow {
  color: var(--accent);
}

.hero-copy {
  max-width: 42rem;
  font-size: 1.1rem;
}

.hero-copy--muted {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-aside {
  display: grid;
  gap: 1rem;
  padding: 1.65rem;
}

.hero-aside h2 {
  font-size: 1.8rem;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--hero-social-border);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-list a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #08111b;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--hero-badge-bg);
  font-size: 0.94rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3.25rem;
  height: 3.25rem;
  margin-top: -1.625rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-arrow--prev {
  left: 1.35rem;
}

.hero-arrow--next {
  right: 1.35rem;
}

.hero-dots {
  position: absolute;
  bottom: 1.9rem;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.7rem;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--accent);
}

.btn,
.text-link {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.75rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ffd06f);
  color: #08111b;
  box-shadow: 0 14px 28px rgba(244, 183, 62, 0.28);
}

.btn--secondary {
  background: var(--surface-strong);
  color: var(--surface);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.media-frame,
.quote-card,
.feature-card,
.stat-card,
.timeline-card,
.contact-card,
.map-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.media-frame {
  overflow: hidden;
  min-height: 100%;
}

.media-frame img {
  height: 100%;
  object-fit: cover;
}

.media-frame--support {
  min-height: 27rem;
}

.media-frame--support img {
  object-position: center center;
}

.media-frame--portrait {
  max-width: 26rem;
  justify-self: center;
}

.quote-card,
.feature-card,
.timeline-card,
.contact-card,
.map-card,
.team-card,
.stat-card {
  padding: 1.6rem;
}

.quote-card {
  display: grid;
  gap: 1rem;
}

.quote-card__logo {
  max-width: 12rem;
}

.quote-card__art {
  width: min(100%, 18rem);
  margin: 0 auto;
  object-fit: contain;
}

.quote-card blockquote {
  margin: 0;
  color: var(--surface-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  font-weight: 700;
}

.split--media-focus {
  align-items: stretch;
}

.bullet-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bullet-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(244, 183, 62, 0.14);
  color: var(--surface-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(6, 17, 31, 0.96), rgba(11, 21, 36, 0.94));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.video-card__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  background: #000000;
  min-height: 42rem;
}

.video-card video {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(42rem, 80vh);
  background: #000000;
  object-fit: contain;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 1.4rem;
}

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

.feature-card {
  display: grid;
  gap: 1rem;
}

.feature-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(244, 183, 62, 0.18);
  color: var(--accent-deep);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  display: grid;
  gap: 0.65rem;
  background: var(--card-bg-strong);
}

.stat-card strong {
  color: var(--surface-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.45rem;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 24rem;
  padding: 6rem 0 3rem;
  color: #ffffff;
}

.page-hero .container {
  display: grid;
  gap: 1rem;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr);
  gap: 2rem;
}

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

.timeline-card {
  display: grid;
  gap: 0.9rem;
}

.timeline-card ul,
.bullet-list {
  display: grid;
  gap: 0.45rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-grid img {
  height: 10rem;
  border-radius: 16px;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.team-card {
  display: grid;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.team-card a {
  display: grid;
  color: inherit;
}

.team-card__initials {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 13rem;
  padding: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #08111b 0%, #10243b 62%, #1b3853 100%);
  color: #ffffff;
}

.team-card__initials::before,
.team-card__initials::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(244, 183, 62, 0.12);
}

.team-card__initials::before {
  top: -2.5rem;
  right: -1rem;
  width: 7rem;
  height: 7rem;
}

.team-card__initials::after {
  bottom: -3rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
}

.team-card__initials span,
.team-card__initials small {
  position: relative;
  z-index: 1;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card__initials span {
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  line-height: 1;
}

.team-card__initials small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1;
}

.team-card__initials--dual {
  gap: 0.25rem;
}

.team-card__initials--wide span {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.team-card__body {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem;
}

.team-card img {
  width: 100%;
}

.team-card h2 {
  font-size: 1.8rem;
}

.team-card p {
  color: var(--text-soft);
}

.team-card__role {
  color: var(--accent-deep);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card--linked {
  outline: 2px solid rgba(244, 183, 62, 0.35);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-card {
  display: grid;
  gap: 0.75rem;
}

.map-card {
  overflow: hidden;
  min-height: 24rem;
  padding: 0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
}

.site-footer {
  color: var(--footer-copy);
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0.92), rgba(6, 17, 31, 0.98)),
    linear-gradient(130deg, rgba(244, 183, 62, 0.2), transparent 40%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 2rem;
  padding: 4.8rem 0 3rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.brand--footer .brand-copy strong,
.brand--footer .brand-copy small {
  color: #ffffff;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.footer-nav {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  padding: 1rem 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .hero-content,
  .split,
  .service-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 34rem;
  }

  .video-card video {
    height: min(36rem, 72vh);
  }

  .media-frame--support {
    min-height: 24rem;
  }

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

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

@media (max-width: 860px) {
  .topbar__grid,
  .card-grid--two,
  .stat-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-nav.is-open {
    display: block;
  }

  .theme-toggle__label {
    display: none;
  }

  .site-header__inner {
    min-height: 5rem;
  }

  .hero {
    min-height: 44rem;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .hero-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  .topbar {
    padding: 0.5rem 0;
  }

  .topbar__grid {
    gap: 0.45rem;
    font-size: 0.84rem;
  }

  .hero-panel,
  .hero-aside,
  .quote-card,
  .feature-card,
  .timeline-card,
  .contact-card,
  .team-card,
  .stat-card,
  .video-card {
    padding: 1.25rem;
  }

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

  .gallery-grid img {
    height: 13rem;
  }

  .media-frame--support {
    min-height: 18rem;
  }

  .video-card__frame {
    min-height: 28rem;
  }

  .video-card video {
    height: min(28rem, 62vh);
  }
}
