
:root {
  --navy: #071f48;
  --navy-2: #0b2c62;
  --blue: #0d5eb8;
  --sky: #eef5fb;
  --ink: #15233c;
  --muted: #5b6780;
  --line: #dfe6ef;
  --white: #fff;
  --shadow: 0 14px 38px rgba(7, 31, 72, .09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(223,230,239,.85);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 82px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand img { width: 315px; height: auto; }
.menu { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 14px; }
.menu a { color: #26344f; }
.menu a:hover { color: var(--blue); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 23px;
  border: 1px solid var(--navy); border-radius: 5px;
  background: var(--navy); color: #fff; font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(7,31,72,.18); }
.btn.secondary { background: rgba(255,255,255,.82); color: var(--navy); }

.hero {
  min-height: 610px;
  display: grid; align-items: center;
  position: relative; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 32%, rgba(255,255,255,.18) 62%, rgba(255,255,255,0) 100%),
    url("images/mountain-hero.jpg") center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(7,31,72,.10));
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 610px; padding: 86px 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-weight: 800;
  color: var(--blue); font-size: 13px; margin-bottom: 16px;
}
h1 { margin: 0; color: var(--navy); font-size: clamp(46px, 6vw, 78px); line-height: 1.03; letter-spacing: -.045em; }
.hero p { max-width: 590px; margin: 28px 0; font-size: 20px; color: #24324c; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }

.values { border-bottom: 1px solid var(--line); background: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value { padding: 34px 24px; display: grid; grid-template-columns: 52px 1fr; gap: 16px; }
.value + .value { border-left: 1px solid var(--line); }
.value img { width: 44px; height: 44px; object-fit: contain; }
.value h3 { margin: 0 0 7px; color: var(--navy); }
.value p { margin: 0; color: var(--muted); font-size: 14px; }

.section { padding: 92px 0; }
.section.soft { background: linear-gradient(180deg, #f6f9fd, #fff); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-head h2 { margin: 0 0 12px; color: var(--navy); font-size: clamp(34px, 4vw, 50px); letter-spacing: -.03em; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid #e6ebf2; border-radius: 10px;
  box-shadow: var(--shadow); padding: 32px; min-height: 240px;
}
.card-kicker { color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.card h3 { font-size: 25px; margin: 10px 0 9px; color: var(--navy); }
.card p { color: var(--muted); margin: 0 0 24px; }
.card a { color: var(--blue); font-weight: 800; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-grid h2 { color: var(--navy); font-size: 47px; line-height: 1.08; margin: 0 0 20px; letter-spacing: -.035em; }
.about-grid p { color: var(--muted); font-size: 18px; }
.quote {
  background: var(--navy); color: #fff; padding: 46px; border-radius: 10px;
  box-shadow: 0 20px 45px rgba(7,31,72,.22);
}
.quote strong { font-size: 31px; display: block; line-height: 1.25; margin-bottom: 16px; }
.quote span { color: #b9c9df; }

.site-footer { background: var(--navy); color: #d7e2f1; padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 15px; font-weight: 700; }
.footer-brand img { width: 34px; filter: brightness(0) invert(1); }

@media (max-width: 900px) {
  .menu a:not(.btn) { display: none; }
  .brand img { width: 245px; }
  .hero { min-height: 560px; background-position: 58% center; }
  .hero p { font-size: 17px; }
  .values-grid, .cards { grid-template-columns: 1fr 1fr; }
  .value:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .value:nth-child(4) { border-top: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { min-height: 72px; }
  .brand img { width: 205px; }
  .menu .btn { padding: 0 15px; min-height: 42px; }
  .hero {
    min-height: 660px;
    align-items: end;
    background:
      linear-gradient(0deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 46%, rgba(255,255,255,.15) 78%),
      url("images/mountain-hero.jpg") 66% center/cover no-repeat;
  }
  .hero-content { padding: 240px 0 58px; }
  h1 { font-size: 48px; }
  .values-grid, .cards { grid-template-columns: 1fr; }
  .value + .value { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 68px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
