:root {
  --ink: #111827;
  --text: #334155;
  --muted: #64748b;
  --line: #d9e2ec;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --blue: #153a63;
  --blue-dark: #0f2d4f;
  --blue-soft: #e7eef6;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(15, 45, 79, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

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

a { color: inherit; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}


.brand__logo{
  width:56px;
  height:56px;
  object-fit:contain;
  flex-shrink:0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .03em;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.nav a,
.topbar__phone {
  text-decoration: none;
  font-weight: 700;
}

.nav a { color: var(--text); }
.topbar__phone { color: var(--blue); white-space: nowrap; }

.hero {
  padding: clamp(42px, 6vw, 84px) 0;
  background: linear-gradient(180deg, var(--soft), #fff);
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero__photo {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(8px, 1.2vw, 14px);
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  max-height: min(68vh, 560px);
  object-fit: cover;
  object-position: center 18%;
  border-radius: 14px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(34px, 5vw, 58px); max-width: 820px; }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: 21px; }

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 21px);
  color: var(--text);
}

.quote {
  max-width: 620px;
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  border-radius: 0 12px 12px 0;
  color: var(--blue-dark);
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

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

.btn--secondary {
  background: white;
  color: var(--blue);
  border: 1px solid var(--line);
}

.section { padding: clamp(54px, 7vw, 86px) 0; }
.section--muted { background: var(--soft); border-block: 1px solid var(--line); }

.section__head { margin-bottom: 28px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 45, 79, 0.06);
}

.card p { margin: 12px 0 0; }
.card h3 { color: var(--blue); }

.split,
.contact__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.text-block p:first-child { margin-top: 0; }
.text-block p:last-child { margin-bottom: 0; }

.contact-card {
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.contact-card a {
  color: white;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 800;
  text-decoration: none;
}

.contact-card span { color: rgba(255,255,255,.86); }

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: white;
  color: var(--muted);
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { max-width: 440px; width: 100%; margin-inline: auto; }
  .hero__photo img { aspect-ratio: 4 / 5; max-height: 560px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split, .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .topbar__inner { min-height: auto; padding: 14px 0; align-items: flex-start; }
  .topbar__phone { display: none; }
  .brand__mark { width: 42px; height: 42px; font-size: 14px; }
  .brand strong { font-size: 16px; }
  .brand__logo{
    width:42px;
    height:42px;
  }
  .hero__photo img { aspect-ratio: 1 / 1.15; max-height: 420px; object-position: center 16%; }
  .cards { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer__inner { flex-direction: column; }
}


@media (max-width: 380px) {
  .wrap { width: min(100% - 20px, 1120px); }
  .hero { padding-block: 28px; }
  .hero__photo img { aspect-ratio: 1 / 1.05; max-height: 360px; }
}
