:root {
  --bg: #f6faf9;
  --bg-alt: #eef6f8;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #173042;
  --text-muted: #436172;
  --primary: #256f85;
  --primary-dark: #1b596c;
  --accent: #6ea887;
  --border: #cfe0e8;
  --shadow: 0 8px 24px rgba(23, 48, 66, 0.09);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
  color: #0f2532;
}

p {
  margin-top: 0;
}

.container {
  width: min(1120px, calc(100% - 2.25rem));
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--primary);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 0.6rem 0.9rem;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(9px);
  background: rgba(246, 250, 249, 0.95);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  color: #0f2532;
  font-size: 1.04rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding-top: 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(23, 48, 66, 0.12);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-list li {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-card div {
  padding: 1rem 1rem 1.2rem;
}

.cards {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(23, 48, 66, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card h3,
.review-card p {
  margin-bottom: 0.55rem;
}

.reviewer {
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0;
}

.note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-list li {
  margin-bottom: 0.55rem;
}

.emergency-note {
  margin-top: 1.25rem;
  padding: 0.8rem 0.95rem;
  border-left: 4px solid #c74634;
  background: #fff6f4;
  border-radius: 0 10px 10px 0;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid #b8cbd6;
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.menu-toggle:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(37, 111, 133, 0.25);
  outline-offset: 2px;
}

.form-message {
  margin: 0.35rem 0 0;
  font-weight: 600;
  min-height: 1.3rem;
  color: var(--primary-dark);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #eaf3f5;
  padding: 1.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 0.5rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-note {
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #f8fcfc;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.15rem 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .site-nav.open {
    display: flex;
  }

  .three-up,
  .four-up,
  .trust-list {
    grid-template-columns: 1fr;
  }
}

