:root {
  --navy: #0B1F35;
  --slate: #54677A;
  --sky: #A8DCE8;
  --cedar: #B98255;
  --cream: #F6F4EF;
  --ink: #1B2530;
  --max-w: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  color: var(--navy);
  margin: 0 0 0.4em 0;
  line-height: 1.15;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 500; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { max-width: 62ch; }

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

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

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(11,31,53,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-mark { height: 40px; width: auto; }

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.site-nav { display: flex; gap: 1.6rem; }

.site-nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover { color: var(--navy); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem 0;
}

.signal-arcs {
  position: absolute;
  right: -6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
}

.signal-arcs span {
  position: absolute;
  border: 3px solid var(--sky);
  border-radius: 50%;
  opacity: 0.35;
  left: 50%;
  top: 50%;
}

.signal-arcs span:nth-child(1) { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
.signal-arcs span:nth-child(2) { width: 300px; height: 300px; margin: -150px 0 0 -150px; opacity: 0.22; }
.signal-arcs span:nth-child(3) { width: 420px; height: 420px; margin: -210px 0 0 -210px; opacity: 0.12; }

.hero-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}

.hero-logo {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}

.hero-text { max-width: 44ch; }

.hero-sub {
  color: var(--slate);
  font-size: 1.1rem;
}

.button {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  margin-top: 0.5rem;
}

.button:hover { background: #12304f; }

/* Services */
.services { padding: 4rem 0; }

.service-row {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(11,31,53,0.15);
}

.service-row:last-child { border-bottom: 1px solid rgba(11,31,53,0.15); }

.service-row p { color: var(--ink); }

/* Service area */
.area {
  background: var(--navy);
  color: var(--cream);
  padding: 3.5rem 0;
}

.area h2 { color: var(--cream); }
.area p { color: #C9D4DD; }

.county-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.county-list li {
  border: 1px solid var(--sky);
  color: var(--sky);
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: 600;
}

/* Contact */
.contact { padding: 4rem 0 5rem 0; }

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

.email-line { margin-top: 1.2rem; }

.email-line a {
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  color: var(--slate);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(11,31,53,0.3);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}

.contact-form button { margin-top: 1.2rem; align-self: flex-start; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(11,31,53,0.15);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--slate);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 720px) {
  .hero-inner { flex-direction: column; text-align: left; gap: 1.5rem; }
  .hero-logo { width: 90px; }
  .contact-inner { grid-template-columns: 1fr; }
  .site-nav { gap: 1rem; }
  .signal-arcs { display: none; }
}

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

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cedar);
  outline-offset: 2px;
}
