:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2840;
  --navy-light: #2d5a7b;
  --bg: #eef2f6;
  --surface: #ffffff;
  --text: #1a3a5c;
  --muted: #4a6278;
  --border: #c8d4e0;
  --link: #2d5a7b;
  --link-hover: #1a3a5c;
  --max: 640px;
  --font: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: var(--link);
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 1.5rem;
}

/* Intro — photo left, title + service areas right */
.intro {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--navy);
}

.intro-photo {
  width: 112px;
  height: auto;
  aspect-ratio: 571 / 1024;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--navy);
}

.intro-main h1 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
}

.coverage h2 {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
}

.coverage p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

@media (max-width: 380px) {
  .intro {
    grid-template-columns: 96px 1fr;
    gap: 1rem;
  }

  .intro-photo {
    width: 96px;
  }

  .intro-main h1 {
    font-size: 1.25rem;
  }
}

/* Contact bar */
.contact-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 1.25rem 0;
  border: 1px solid var(--navy);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.contact-item:hover {
  background: var(--bg);
}

.contact-item--phone {
  border-right: 1px solid var(--border);
}

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

  .contact-item--phone {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.contact-item .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

/* Services */
.services {
  padding-top: 0.25rem;
}

.services h2 {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--navy);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.service-list li {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

.service-list span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Footer */
.site-footer {
  padding: 1.25rem;
  text-align: center;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
}

.site-footer .remote-link {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.site-footer .remote-link a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.site-footer .remote-link a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.9);
}
