:root {
  --navy: #073367;
  --navy-deep: #041f41;
  --gold: #e9a82f;
  --gold-soft: #f7d68f;
  --ink: #142033;
  --muted: #607086;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --line: rgba(7, 51, 103, .16);
  --shadow: 0 18px 45px rgba(5, 31, 65, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; font-weight: 800; font-size: 1.25rem; letter-spacing: .02em; color: var(--navy-deep); }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; color: var(--navy-deep); font-weight: 700; font-size: .95rem; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--navy-deep); display: block; margin: 5px 0; }

.hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(233,168,47,.25), transparent 25%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
  padding: 88px 0;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.45fr .65fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; margin: 0 0 10px; }
.hero h1, .section h2 { margin: 0; line-height: 1.08; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); letter-spacing: -.045em; }
.lead { max-width: 650px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.84); margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 12px; text-decoration: none; font-weight: 800; }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-secondary { border: 1px solid rgba(255,255,255,.35); color: white; }
.hero-card { border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 30px; background: rgba(255,255,255,.08); box-shadow: var(--shadow); display: grid; gap: 6px; }
.hero-card-line { width: 54px; height: 4px; border-radius: 20px; background: var(--gold); margin-bottom: 10px; }
.hero-card strong { font-size: 1.2rem; }
.hero-card span { color: rgba(255,255,255,.78); }

.section { padding: 82px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 680px; margin-bottom: 34px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section h2 { color: var(--navy-deep); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.03em; }
.muted { color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.card { min-height: 150px; border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: white; box-shadow: 0 8px 26px rgba(5,31,65,.07); display: flex; align-items: end; }
.card::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); position: absolute; }
.card { position: relative; }
.card h3 { margin: 0; padding-top: 28px; color: var(--navy-deep); font-size: 1rem; }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-list li { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 16px 16px 16px 46px; position: relative; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 16px; color: var(--gold); font-weight: 900; }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.location-grid span { padding: 22px; border-radius: 16px; background: var(--navy-deep); color: white; font-weight: 800; text-align: center; box-shadow: 0 8px 26px rgba(5,31,65,.12); }

.promo-frame {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 9px;
  border-radius: 30px;
  border: 1px solid rgba(7,51,103,.28);
  background: rgba(255,255,255,.88);
  box-shadow:
    0 24px 55px rgba(5,31,65,.16),
    0 0 28px rgba(233,168,47,.14);
}
.promo-frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 0 22px rgba(7,51,103,.10);
}

.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.contact-phone { min-width: 280px; text-decoration: none; background: var(--navy-deep); color: white; padding: 24px 28px; border-radius: 18px; box-shadow: var(--shadow); display: grid; }
.contact-phone span { color: var(--gold-soft); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-phone strong { font-size: 1.35rem; }

.site-footer { background: #03162d; color: rgba(255,255,255,.85); padding: 26px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 34px; }
  .hero-card { max-width: 460px; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1120px); }
  .hero { padding: 68px 0; }
  .section { padding: 64px 0; }
  .cards, .check-list, .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-phone { min-width: 0; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .promo-frame { padding: 6px; border-radius: 22px; }
  .promo-frame img { border-radius: 16px; }
}
