:root {
  --ink: #07111c;
  --navy: #0a1b2c;
  --navy-soft: #102941;
  --steel: #5c6f82;
  --mist: #edf2f5;
  --paper: #f8fafb;
  --white: #ffffff;
  --gold: #d6a84b;
  --gold-bright: #efc76d;
  --line: rgba(255, 255, 255, 0.16);
  --max: 1180px;
  --shadow: 0 24px 80px rgba(3, 13, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gold-bright);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.header-inner {
  width: min(var(--max), calc(100% - 3rem));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-shield {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  display: grid;
  line-height: 1.18;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 600;
}

.brand-copy span {
  margin-top: 0.18rem;
  color: var(--gold-bright);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold-bright);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0.68rem 1rem;
  font-size: 0.84rem;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(8, 19, 31, 0.26);
  backdrop-filter: blur(8px);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-gold {
  background: var(--gold-bright);
  color: var(--ink);
}

.button-gold:hover {
  background: #f7d58a;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-soft);
}

.button-secondary {
  border: 1px solid #8ea0ad;
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: #edf1f3;
}

.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 12, 20, 0.98) 0%, rgba(6, 18, 30, 0.92) 32%, rgba(7, 19, 31, 0.42) 65%, rgba(7, 17, 28, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 12, 20, 0.94) 0%, transparent 40%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-content {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
  padding: 176px 0 56px;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8c6519;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 660px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.text-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 0.35rem;
}

.hero-proof {
  max-width: 820px;
  margin-top: 4.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem 1.5rem 0 0;
  border-right: 1px solid var(--line);
}

.hero-proof div + div {
  padding-left: 1.5rem;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.trust-strip {
  min-height: 106px;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.25rem max(1.5rem, calc((100% - var(--max)) / 2));
  background: var(--gold);
  color: var(--ink);
}

.trust-strip p {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip div {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(7, 17, 28, 0.3);
}

.trust-strip span {
  padding: 0.5rem 1.7rem;
  border-right: 1px solid rgba(7, 17, 28, 0.3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.section {
  padding: 7.5rem max(1.5rem, calc((100% - var(--max)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: end;
}

.section h2,
.cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 0.4rem;
  color: #53677a;
  font-size: 1.05rem;
}

.service-grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbd5dc;
  border-left: 1px solid #cbd5dc;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 2rem;
  border-right: 1px solid #cbd5dc;
  border-bottom: 1px solid #cbd5dc;
  background: var(--white);
}

.service-card.featured {
  background: var(--navy);
  color: var(--white);
}

.service-number {
  position: absolute;
  top: 1.35rem;
  right: 1.5rem;
  color: #8897a5;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #a5b3bd;
  color: #6d5118;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.featured .service-icon {
  border-color: rgba(239, 199, 109, 0.55);
  color: var(--gold-bright);
}

.service-card h3 {
  max-width: 280px;
  margin: 3.4rem 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: #627486;
  font-size: 0.94rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.62);
}

.approach {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7rem;
  background: var(--navy);
  color: var(--white);
}

.approach-copy {
  align-self: start;
  position: sticky;
  top: 2rem;
}

.approach-copy > p:not(.eyebrow) {
  margin: 1.6rem 0 2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
}

.approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.approach-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.approach-list > li > span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.approach-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.approach-list p {
  max-width: 560px;
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.coverage {
  background: var(--mist);
}

.coverage-panel {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  box-shadow: var(--shadow);
}

.coverage-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 52% 51%, #183952, var(--ink) 66%);
  background-size: 54px 54px, 54px 54px, auto;
}

.map-core,
.ring,
.map-label {
  position: absolute;
}

.map-core {
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 199, 109, 0.84);
  background: var(--gold);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
}

.ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(239, 199, 109, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 270px;
  height: 270px;
}

.ring-two {
  width: 490px;
  height: 490px;
}

.map-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 6px rgba(239, 199, 109, 0.1);
}

.north { top: 18%; left: 46%; }
.west { top: 47%; left: 12%; }
.centre { top: 55%; left: 57%; }
.southwest { bottom: 18%; left: 27%; }
.east { top: 38%; right: 10%; }

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.coverage-copy h2 {
  max-width: 510px;
}

.coverage-copy > p:not(.eyebrow) {
  margin: 1.5rem 0 1.6rem;
  color: #586d80;
}

.coverage-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-copy li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #d9e1e6;
  font-weight: 750;
}

.coverage-copy li::before {
  content: "•";
  margin-right: 0.7rem;
  color: #9b711f;
}

.cta {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 6rem max(1.5rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(110deg, rgba(8, 19, 31, 0.98), rgba(12, 36, 56, 0.92)),
    var(--navy);
  color: var(--white);
}

.cta h2 {
  max-width: 780px;
}

footer {
  padding: 3rem max(1.5rem, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  background: #040b12;
  color: var(--white);
}

.footer-links {
  grid-column: 1 / -1;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-contact a + a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand > div,
.footer-contact {
  display: grid;
  gap: 0.2rem;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.footer-brand > div > span,
.footer-contact address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: var(--gold-bright);
  font-size: 0.92rem;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.5;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
}

.section-action {
  margin: 2.5rem 0 0;
  text-align: center;
}

.section-action.left {
  text-align: left;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--white);
}

.feature-photo {
  min-height: 620px;
  background: linear-gradient(90deg, transparent 70%, rgba(255,255,255,0.08)), url('/assets/condo-security-lobby-stitched.webp') 68% center / cover no-repeat;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem);
}

.feature-copy h2 {
  max-width: 560px;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: #53677a;
}

.dark-link {
  margin-top: 1.8rem;
  color: var(--ink);
  text-decoration-color: #9b711f;
}

.reporting-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  background: var(--navy-soft);
  color: var(--white);
}

.reporting-preview > div > p:not(.eyebrow) {
  max-width: 690px;
  margin: 1.5rem 0 2rem;
  color: rgba(255,255,255,0.68);
}

.report-list {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line);
}

.report-list span {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.proof-section {
  background: var(--white);
}

.proof-links {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbd5dc;
  border-left: 1px solid #cbd5dc;
}

.proof-links a {
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-right: 1px solid #cbd5dc;
  border-bottom: 1px solid #cbd5dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  text-decoration: none;
}

.page-header {
  position: relative;
  background: var(--navy);
}

.page-main {
  background: var(--paper);
}

.page-hero {
  padding: 7rem max(1.5rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(115deg, rgba(5,14,23,0.99), rgba(14,43,65,0.9)),
    var(--navy);
  color: var(--white);
}

.page-hero.compact {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.breadcrumbs {
  margin: 0 0 1.2rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.page-hero p:last-child {
  max-width: 780px;
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
}

.content-section {
  padding: 6rem max(1.5rem, calc((100% - var(--max)) / 2));
}

.content-section.alt {
  background: var(--mist);
}

.content-section.navy {
  background: var(--navy);
  color: var(--white);
}

.content-section h2 {
  max-width: 820px;
  margin: 0 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.content-section > p,
.content-intro {
  max-width: 800px;
  color: #53677a;
  font-size: 1.06rem;
}

.navy > p,
.navy .content-intro {
  color: rgba(255,255,255,0.68);
}

.detail-grid,
.facts-grid,
.case-grid,
.areas-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbd5dc;
  border-left: 1px solid #cbd5dc;
}

.detail-card,
.fact-card,
.case-card,
.area-card {
  padding: 2rem;
  border-right: 1px solid #cbd5dc;
  border-bottom: 1px solid #cbd5dc;
  background: var(--white);
}

.detail-card h3,
.fact-card h3,
.case-card h3,
.area-card h3 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.detail-card p,
.fact-card p,
.case-card p,
.area-card p {
  margin: 0;
  color: #627486;
}

.area-card {
  color: var(--ink);
  text-decoration: none;
}

.area-card:hover h3,
.area-card:focus-visible h3 {
  color: #8c6519;
}

.fact-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #8c6519;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.process-list {
  max-width: 900px;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid #cbd5dc;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  color: #8c6519;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.process-list p {
  margin: 0.45rem 0 0;
  color: #627486;
}

.navy .process-list li {
  border-color: var(--line);
}

.navy .process-list p {
  color: rgba(255,255,255,0.62);
}

.notice-panel {
  max-width: 980px;
  margin-top: 2.5rem;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  background: var(--mist);
}

.notice-panel p {
  margin: 0;
}

.privacy-note {
  font-weight: 750;
}

.faq-list {
  max-width: 980px;
  margin-top: 2.5rem;
}

.faq-list details {
  border-top: 1px solid #cbd5dc;
  background: var(--white);
}

.faq-list details:last-child {
  border-bottom: 1px solid #cbd5dc;
}

.faq-list summary {
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  color: #596e80;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #aab8c2;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
#quote-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #596e80;
  font-size: 0.84rem;
}

.contact-panel {
  padding: 2rem;
  background: var(--navy);
  color: var(--white);
}

.contact-panel h2 {
  font-size: 2rem;
}

.contact-panel a {
  display: block;
  margin-top: 0.8rem;
  color: var(--gold-bright);
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  margin-top: 2.8rem;
  font-size: 2rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: #53677a;
}

.local-focus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.local-focus ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cbd5dc;
}

.local-focus li {
  padding: 0.85rem 0;
  border-bottom: 1px solid #cbd5dc;
  font-weight: 700;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  #site-nav.open {
    position: absolute;
    z-index: 20;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.5rem 1rem;
    background: #07111c;
    box-shadow: var(--shadow);
  }

  #site-nav.open a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .header-inner {
    gap: 1rem;
  }

  .header-inner > .button {
    margin-left: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 12, 20, 0.98) 0%, rgba(6, 18, 30, 0.88) 55%, rgba(7, 19, 31, 0.3) 100%),
      linear-gradient(0deg, rgba(4, 12, 20, 0.94) 0%, transparent 45%);
  }

  .section-heading,
  .approach,
  .reporting-preview,
  .local-focus {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .approach-copy {
    position: static;
  }

  .coverage-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .detail-grid,
  .facts-grid,
  .case-grid,
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-feature,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 2rem, var(--max));
    min-height: 76px;
  }

  .brand-shield {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .header-inner > .button {
    min-height: 38px;
    padding: 0.6rem 0.72rem;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    opacity: 0.58;
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 12, 20, 0.98), rgba(6, 18, 30, 0.7)),
      linear-gradient(0deg, rgba(4, 12, 20, 0.98) 0%, rgba(4, 12, 20, 0.25) 75%);
  }

  .hero-content {
    width: min(100% - 2rem, var(--max));
    padding: 140px 0 34px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-proof {
    margin-top: 3rem;
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .hero-proof div + div {
    padding: 0.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .trust-strip {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .trust-strip div {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .trust-strip span {
    padding: 0.45rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 17, 28, 0.26);
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .service-grid {
    margin-top: 3rem;
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .facts-grid,
  .case-grid,
  .areas-grid,
  .proof-links {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .form-field.full,
  .form-note,
  #quote-status {
    grid-column: 1;
  }

  .service-card {
    min-height: 265px;
  }

  .approach-list li {
    grid-template-columns: 42px 1fr;
  }

  .coverage-panel {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 420px;
  }

  .ring-two {
    width: 390px;
    height: 390px;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.5rem;
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links {
    grid-column: 1;
    display: flex;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-legal {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .header-inner > .button {
    display: none;
  }

  .page-hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
