:root {
  --navy: #141b3d;
  --navy-mid: #1c2550;
  --slate: #8a92b2;
  --silver: #b8bdd4;
  --ice: #eef0f7;
  --white: #fafbfe;
  --accent: #5b7fa4;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 251, 254, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 27, 61, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(20, 27, 61, 0.2);
  background: transparent;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-1px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy);
}

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

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(91, 127, 164, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 27, 61, 0.08), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  animation: fade-up 1s ease-out;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  max-width: 480px;
  letter-spacing: 0.01em;
}

.hero-location {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-location svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.pillars {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.pillars::before,
.glance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 27, 61, 0.08), transparent);
}

.pillars-inner,
.glance-inner,
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.pillars-label,
.glance-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 64px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.pillar {
  position: relative;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.pillar h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.glance {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
  position: relative;
}

.glance-label {
  margin-bottom: 56px;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.glance-item {
  padding: 32px 36px;
  position: relative;
}

.glance-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(20, 27, 61, 0.08);
}

.glance-value {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.glance-key {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  line-height: 1.6;
}

footer {
  padding: 64px 0 48px;
  background: var(--navy);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 24px;
}

.footer-brand {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.85;
  max-width: 860px;
  margin-bottom: 32px;
}

.footer-copyright {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.glance-grid .fade-in:nth-child(1) {
  transition-delay: 0ms;
}

.glance-grid .fade-in:nth-child(2) {
  transition-delay: 120ms;
}

.glance-grid .fade-in:nth-child(3) {
  transition-delay: 240ms;
}

.glance-grid .fade-in:nth-child(4) {
  transition-delay: 360ms;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-inner,
  .hero-inner,
  .pillars-inner,
  .glance-inner,
  .footer-inner {
    padding: 0 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    border: 1px solid rgba(20, 27, 61, 0.1);
    background: rgba(250, 251, 254, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 14px;
  }

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

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .glance-item {
    padding: 16px 8px;
  }

  .glance-item:not(:last-child)::after {
    display: none;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}
