/* Milton Services — deep navy + fresh green, mobile-first */

:root {
  --navy: #002d62;
  --navy-deep: #001a3a;
  --navy-soft: #0a3a6e;
  --green: #5eb346;
  --green-dark: #4a9a36;
  --green-soft: #e8f6e3;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --slate: #4a5568;
  --slate-light: #718096;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0, 45, 98, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 45, 98, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --header-h: 72px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy-deep);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-dark);
}

h1, h2, h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.15rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4em; }

p { margin: 0 0 1em; color: var(--slate); }

ul { margin: 0; padding: 0; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

.placeholder {
  display: inline-block;
  background: #fff8e1;
  color: #8a6d00;
  border: 1px dashed #e0c35a;
  border-radius: 6px;
  padding: 0.1em 0.45em;
  font-weight: 600;
  font-size: 0.95em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}

.muted { color: var(--slate-light); font-weight: 500; }

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.badge-row { margin-bottom: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 650;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(94, 179, 70, 0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0, 45, 98, 0.25);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(0, 45, 98, 0.04);
  color: var(--navy);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand { text-decoration: none; flex-shrink: 0; }

.brand-logo {
  height: 48px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

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

.site-nav a:not(.btn):hover {
  color: var(--green-dark);
}

.nav-cta { margin-left: 0.35rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.25rem;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open .nav-cta {
  margin: 0.5rem 0 0;
  text-align: center;
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .brand-logo { height: 52px; }
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(94, 179, 70, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0, 45, 98, 0.08), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  list-style: none;
  padding: 0;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--green);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.95rem;
}

.hero-card-tease {
  background: linear-gradient(135deg, var(--green-soft), #f0faf0);
  border-color: rgba(94, 179, 70, 0.35);
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  margin-bottom: 0.75rem;
  position: relative;
}

.hero-card-icon[data-icon="gutter"]::after,
.hero-card-icon[data-icon="wash"]::after,
.hero-card-icon[data-icon="tree"]::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2.5px solid var(--green);
  border-radius: 4px;
  border-bottom-width: 4px;
}

.hero-card-icon[data-icon="wash"]::after {
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-20deg);
}

.hero-card-icon[data-icon="tree"]::after {
  inset: 8px 14px 8px 14px;
  border-radius: 50% 50% 8px 8px;
  border-bottom-width: 2.5px;
}

@media (min-width: 900px) {
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-sub {
  margin: 0;
  font-size: 1.05rem;
}

.section-sub.left {
  text-align: left;
  max-width: 36rem;
}

.cards-services {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards-services { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .cards-services { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.service-card-coming {
  background: linear-gradient(180deg, var(--white), var(--green-soft));
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.check-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* Why us */
.why-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.why-num {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.why-item p { margin-bottom: 0; }

/* Service area */
.area-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .area-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}

.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.area-list li {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.area-map-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 55%, #0d4a3a 100%);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  color: var(--white);
  min-height: 240px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.area-map-inner { width: 100%; }

.area-map-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.area-pills span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 650;
}

.area-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  counter-reset: none;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.step p { margin-bottom: 0; }

/* Quote */
.quote-section {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(94, 179, 70, 0.1), transparent 50%),
    var(--white);
}

.quote-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .quote-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
}

.contact-placeholders {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin-top: 1.25rem;
}

.contact-placeholders p {
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.contact-placeholders p:last-child { margin-bottom: 0; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

.form-row label,
.form-row legend {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-row input,
.form-row textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-deep);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(94, 179, 70, 0.2);
}

.form-row input.is-invalid,
.form-row textarea.is-invalid {
  border-color: #c53030;
}

fieldset.form-row {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
}

.checkbox-group {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
}

.check input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--green);
}

.form-note {
  min-height: 1.4em;
  margin: 0.85rem 0 0;
  font-weight: 600;
  color: var(--green-dark);
}

.form-note.is-error { color: #c53030; }

.quote-book {
  margin: 1.25rem 0 1.5rem;
}

.quote-book .book-cta {
  display: inline-flex;
}

.quote-book-note {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  color: var(--muted, #4a5568);
}

.form-fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.site-footer a:hover { color: var(--green); }

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer p { color: rgba(255, 255, 255, 0.7); }

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 0.85rem;
  background: var(--white);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 28rem;
  margin: 0;
}

.footer-contact .placeholder {
  background: rgba(255, 248, 225, 0.95);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p { margin: 0; }
