:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef2ff;
  color: #111827;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.container {
  width: min(100%, 960px);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.08);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.hero-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 32px;
}

.hero-image {
  width: 100%;
  display: block;
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 24px 108px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.42));
}

.hero-copy p,
.hero-copy h1 {
  margin: 0;
  color: #ffffff;
  text-align: center;
  max-width: 740px;
  line-height: 1.15;
}

.hero-copy h1 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight:700; }
.hero-phrase { font-size: clamp(1.35rem, 2vw, 2rem); font-weight:600; margin-top:8px; transform: translateY(-8%); }

section {
  margin-top: 32px;
}

section h2 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

section p,
section li {
  margin: 0;
  color: #4b5563;
  line-height: 1.8;
}

section ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

section li {
  margin-bottom: 10px;
}

.contact-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-list div {
  background: #f8fafc;
  padding: 18px;
  border-radius: 18px;
}

.contact-list strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}

.contact-list a {
  color: #1d4ed8;
  text-decoration: none;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #1d4ed8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.button-secondary {
  background: #e5e7eb;
  color: #111827;
}

.button-secondary:hover {
  background: #d1d5db;
}

.notes p {
  font-size: 0.95rem;
  color: #6b7280;
}

@media (max-width: 780px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  .container {
    padding: 24px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-copy p, .hero-copy h1 {
    font-size: 1.35rem;
  }

  .hero-copy { padding-bottom: 24px; }
  .hero-phrase { transform: translateY(-6%); }
}

/* Navigation and footer */
.main-nav {
  display: flex;
  gap: 18px;
}
.nav-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav-link:hover {
  background: rgba(13, 42, 148, 0.06);
}

.site-footer {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #eef2ff;
  padding-top: 20px;
}
.site-footer.no-socials .socials { display: none; }

.socials img,
.socials-center img {
  width: 36px;
  height: 36px;
  display: inline-block;
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socials-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 22px 0 10px;
}

.hero-copy h1 { margin: 0; color: #fff; }
.hero-phrase { margin: 8px 0 0; color: #fff; font-weight:600; }

.map { margin: 12px 0 20px; border-radius: 12px; overflow: hidden; }

.see-more { margin-top: 14px; }
