:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #5b6372;
  --heading: #020617;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.25rem 0;
}

.eyebrow {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--blue);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.15rem);
}

h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.announcement-banner {
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0;
  background: #fcfdff;
}

.announcement-banner .container {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-wrap {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(132px, 18vw, 182px);
  height: auto;
  object-fit: contain;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  text-decoration: none;
  color: #0f172a;
  font-weight: 650;
  font-size: 0.94rem;
  padding: 0.25rem 0;
}

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

.header-call {
  text-decoration: none;
  color: #fff;
  background: #0f172a;
  border: 1px solid #0f172a;
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 0.28rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #0f172a;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.subheadline {
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-secondary {
  background: #fff;
  border-color: #cbd5e1;
  color: #0f172a;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #94a3b8;
  background: #f8fafc;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hero-phone {
  margin: 0;
  font-weight: 700;
}

.hero-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.section-head {
  margin-bottom: 1.2rem;
}

.about-grid,
.services-grid,
.citywatch-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid,
.citywatch-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-card,
.citywatch-card,
.blog-card,
.contact-details,
.contact-form,
.schedule-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card,
.service-card,
.citywatch-card,
.blog-card,
.contact-details,
.contact-form,
.schedule-wrap {
  padding: 1.15rem;
}

.schedule-wrap {
  margin-top: 0;
}

.table-shell {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.schedule-table caption {
  text-align: left;
  padding: 0.6rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.schedule-table th,
.schedule-table td {
  border: 1px solid var(--border);
  padding: 0.72rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.schedule-table thead th {
  background: #f1f5f9;
  color: #0f172a;
}

.schedule-table tbody tr:nth-child(even) {
  background: #fbfdff;
}

.citywatch-intro {
  margin-top: 0;
  color: var(--muted);
  max-width: 72ch;
}

.citywatch-card h3 {
  margin-bottom: 0.35rem;
}

.citywatch-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card {
  position: relative;
}

.blog-meta {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 {
  margin-bottom: 0.45rem;
}

.blog-card p {
  margin-top: 0;
  color: var(--muted);
}

.blog-card a {
  text-decoration: none;
  font-weight: 700;
}

.citywatch-cta {
  margin-top: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.map-embed-wrap {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.form-field {
  margin-bottom: 0.85rem;
}

.form-field label {
  display: block;
  font-weight: 650;
  margin-bottom: 0.3rem;
  color: #0f172a;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.15);
  border-color: var(--blue);
}

.form-status {
  margin-top: 0.65rem;
  font-weight: 600;
  min-height: 1.2rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: clamp(108px, 14vw, 154px);
  height: auto;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4%;
    gap: 0.25rem;
  }

  .site-nav a {
    width: 100%;
    padding: 0.6rem 0.2rem;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .services-grid,
  .citywatch-grid,
  .blog-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 116px;
  }

  .announcement-banner {
    font-size: 0.68rem;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 46px;
  }

  .header-call {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .btn {
    width: 100%;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-embed {
    min-height: 280px;
  }
}
