:root {
  --bg: #f5f7fb;
  --text: #183043;
  --muted: #5f7284;
  --accent: #2f6d9a;
  --accent-deep: #214f72;
  --border: rgba(24, 48, 67, 0.1);
  --shadow: 0 20px 45px rgba(24, 48, 67, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 109, 154, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

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

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.section {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(251, 252, 254, 0.85);
  border-bottom: 1px solid rgba(24, 48, 67, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow,
.section-label {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-intro {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2rem;
}

.hero-card,
.info-card,
.feature-panel,
.contact-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.75rem;
  max-width: 42rem;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.hero-media {
  justify-self: end;
  width: min(100%, 430px);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 50px rgba(24, 48, 67, 0.14);
  background: linear-gradient(180deg, #dce8f2 0%, #c7d9e8 100%);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
}

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

.info-card {
  padding: 1.75rem;
}

.info-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.info-card p,
.feature-panel p,
.contact-card p,
.hero-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.info-card:hover,
.contact-card:hover,
.feature-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px rgba(24, 48, 67, 0.12);
}

.section-alt {
  background: linear-gradient(180deg, rgba(238, 243, 248, 0.45) 0%, rgba(245, 247, 251, 0.7) 100%);
}

.feature-panel,
.contact-card {
  padding: 2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(47, 109, 154, 0.24);
}

.contact-link:hover,
.contact-link:focus-visible {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(24, 48, 67, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-media {
    justify-self: start;
    width: min(100%, 420px);
  }

  .section-heading h2 {
    max-width: none;
  }
}

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

  .site-header .container,
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .site-nav {
    gap: 0.9rem 1rem;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-intro,
  .lead {
    font-size: 1.05rem;
  }

  .hero-card,
  .info-card,
  .feature-panel,
  .contact-card {
    padding: 1.4rem;
  }

  .hero-media {
    justify-self: center;
  }
}
