/* =========================================================
   G&D Construction & Snow Removal — Master Stylesheet
   Aesthetic: bright, professional, friendly. Brand palette:
   blue (primary), orange (accent/CTA), forest green (tagline)
   ========================================================= */

:root {
  /* Color system — neutrals (kept name `stone-*` for compat,
     now a cooler near-neutral that pairs with the blue) */
  --stone-900: #0f1722;       /* deep navy-charcoal */
  --stone-800: #1a2434;
  --stone-700: #2c3a4f;
  --stone-500: #5a6878;
  --stone-300: #b3bcc7;
  --stone-200: #d3d9e0;
  --stone-100: #e9edf2;
  --stone-50:  #f4f6f9;
  --paper:     #fbfcfe;
  --white:     #ffffff;

  /* PRIMARY — brand blue (the G and D in the logo) */
  --terracotta: #1478dc;       /* legacy var name kept for compat;
                                   now the brand blue used as primary */
  --terracotta-dark: #0f5cb0;
  --terracotta-glow: #4a9eef;

  /* True brand color names for new usages */
  --brand-blue: #1478dc;
  --brand-blue-dark: #0f5cb0;
  --brand-blue-light: #4a9eef;

  /* ACCENT — brand orange (the & in the logo). Use for CTAs,
     warm callouts, and to add energy. */
  --brand-orange: #f08c14;
  --brand-orange-dark: #c87010;
  --brand-orange-light: #ffa838;

  /* SECONDARY — brand green (the tagline). Use sparingly for
     landscaping/garden services and trust accents. */
  --brand-green: #144628;
  --brand-green-light: #2a6c45;

  --moss: #144628;             /* alias to brand-green */
  --ice-blue: #4a9eef;         /* snow accent — now uses the lighter brand blue */

  --success: #2a6c45;
  --error: #c43c2a;

  /* Typography */
  --font-display: 'DM Serif Display', 'Georgia', serif;
  --font-serif: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 960px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(15,23,34,.08);
  --shadow-md: 0 8px 24px rgba(15,23,34,.12);
  --shadow-lg: 0 20px 60px rgba(15,23,34,.18);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--stone-800);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--terracotta-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--stone-900); color: var(--paper);
  padding: 8px 16px; z-index: 1000; border-radius: var(--radius);
}
.skip-link:focus { top: 8px; color: var(--paper); }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; color: var(--stone-900); letter-spacing: -.005em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 400; }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.eyebrow, .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--terracotta);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.accent { color: var(--terracotta); font-style: italic; }

.lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--stone-700);
  margin: 24px 0 32px;
  max-width: 620px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--brand-orange);
  color: var(--white);
  border-color: var(--brand-orange);
  box-shadow: 0 4px 0 var(--brand-orange-dark);
}
.btn-primary:hover {
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--stone-900);
}
.btn-secondary {
  background: var(--stone-900);
  color: var(--paper);
  border-color: var(--stone-900);
}
.btn-secondary:hover { background: var(--stone-700); border-color: var(--stone-700); color: var(--paper); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--stone-900);
  border-color: var(--stone-900);
}
.btn-ghost:hover { background: var(--stone-900); color: var(--paper); }
.btn-block { width: 100%; padding: 18px; font-size: 1rem; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 254, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--stone-900);
  text-decoration: none;
}
.logo:hover { color: var(--stone-900); }
.logo img { height: 44px; width: auto; object-fit: contain; display: block; }
/* Hide the redundant text label — the new logo image already contains "G&D" */
.logo-text { display: none; }

.primary-nav { flex: 1; display: flex; justify-content: center; }
.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.primary-nav a {
  color: var(--stone-700);
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
}
.primary-nav a:hover { color: var(--stone-900); background: var(--stone-100); }
.primary-nav a.active { color: var(--terracotta); }
.primary-nav .btn-nav {
  background: var(--stone-900);
  color: var(--paper);
  font-weight: 600;
  margin-left: 8px;
}
.primary-nav .btn-nav:hover { background: var(--terracotta); color: var(--paper); }

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--stone-900);
  padding: 8px 14px;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.phone-cta:hover { border-color: var(--terracotta); color: var(--terracotta); }
.phone-cta svg { color: var(--terracotta); }

.nav-toggle { display: none; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--stone-900);
  color: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(20,120,220,.22), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240,140,20,.14), transparent 50%),
    linear-gradient(135deg, #0f1722 0%, #1a2434 60%, #2c3a4f 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px);
  opacity: .6;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(15,23,34,.4) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 880px; }

.hero .eyebrow {
  color: var(--terracotta-glow);
  border-bottom: 1px solid rgba(74,158,239,.3);
  padding-bottom: 12px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.8rem, 7vw, 6rem);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero .lede {
  color: var(--stone-200);
  font-size: 1.22rem;
  max-width: 680px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero .btn-ghost { color: var(--paper); border-color: var(--stone-300); }
.hero .btn-ghost:hover { background: var(--paper); color: var(--stone-900); }

.hero-trust {
  display: flex;
  list-style: none;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(217, 202, 187, .18);
}
.hero-trust li {
  display: flex;
  flex-direction: column;
  font-size: .85rem;
  color: var(--stone-300);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: .03em;
  margin-bottom: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--stone-300);
  z-index: 2;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(8px);} }

/* =========================================================
   Sections
   ========================================================= */
.section-pad { padding: 100px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head p { font-size: 1.12rem; color: var(--stone-500); margin-top: 16px; }
.section-head-light .section-eyebrow { color: var(--terracotta); }

/* =========================================================
   Service Cards
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--stone-200);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-card {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  background: var(--stone-50);
  color: inherit;
  transform: scale(1.02);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--stone-900);
  color: var(--terracotta-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--terracotta); color: var(--paper); transform: rotate(-4deg); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.service-card p { color: var(--stone-500); font-size: .98rem; line-height: 1.55; flex: 1; }
.card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--terracotta);
  text-transform: uppercase;
}
.service-card-snow .service-icon { background: var(--ice-blue); color: var(--paper); }
.service-card-snow:hover .service-icon { background: var(--stone-900); color: var(--ice-blue); }

/* =========================================================
   Recent Work
   ========================================================= */
.work-section { background: var(--paper); }
.work-section .section-sub {
  font-size: 1.05rem;
  color: var(--stone-500);
  margin-top: 16px;
  line-height: 1.6;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.work-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-lg);
}
.work-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone-100);
}
.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.work-card:hover .work-photo img { transform: scale(1.04); }
.work-card figcaption {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.work-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(240,140,20,.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.work-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--stone-900);
  line-height: 1.25;
}
.work-card p {
  color: var(--stone-500);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   Standards Section
   ========================================================= */
.standards-section { background: var(--stone-100); }
.standards-section .section-sub {
  font-size: 1.05rem;
  color: var(--stone-500);
  margin-top: 16px;
  line-height: 1.6;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.standard-card {
  background: var(--paper);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  position: relative;
  transition: all var(--transition);
}
.standard-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-lg);
}
.standard-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--brand-blue);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.standard-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--stone-900);
}
.standard-card p {
  color: var(--stone-500);
  font-size: .97rem;
  line-height: 1.65;
}

/* =========================================================
   Service Areas Strip
   ========================================================= */
.areas-strip {
  background: var(--stone-900);
  color: var(--paper);
  position: relative;
}
.areas-strip h2 { color: var(--paper); }
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.areas-cloud a {
  padding: 10px 20px;
  background: rgba(251, 252, 254, .08);
  color: var(--stone-200);
  border: 1px solid rgba(217, 202, 187, .18);
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  transition: all var(--transition);
}
.areas-cloud a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper);
  transform: translateY(-2px);
}
.areas-note { text-align: center; color: var(--stone-300); font-size: .95rem; }
.areas-note a { color: var(--terracotta-glow); text-decoration: underline; }

/* =========================================================
   Contact / Quote Form
   ========================================================= */
.contact-section { background: var(--paper); position: relative; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 { margin-bottom: 24px; }
.contact-text > p { font-size: 1.08rem; color: var(--stone-700); margin-bottom: 36px; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 18px 24px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  color: inherit;
}
.contact-card:hover {
  background: var(--stone-900);
  color: var(--paper);
  border-color: var(--stone-900);
  transform: translateX(4px);
}
.contact-card-label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 4px;
}
.contact-card:hover .contact-card-label { color: var(--terracotta-glow); }
.contact-card strong { font-size: 1.15rem; font-weight: 600; }

.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 20px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--stone-800);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.req { color: var(--terracotta); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  background: var(--stone-50);
  color: var(--stone-900);
  transition: all var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20,120,220,.12);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-help {
  display: block;
  font-size: .8rem;
  color: var(--stone-500);
  margin-top: 6px;
}
.form-foot {
  font-size: .8rem;
  color: var(--stone-500);
  text-align: center;
  margin-top: 16px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--stone-900);
  color: var(--stone-200);
  padding-top: 80px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand img { margin-bottom: 16px; height: auto; max-width: 220px; width: 100%; background: var(--paper); padding: 14px 18px; border-radius: var(--radius); }
.footer-brand p { color: var(--paper); margin-bottom: 8px; }
.footer-tag { color: var(--stone-300) !important; font-size: .92rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: var(--paper); margin-bottom: 18px; font-size: .85rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--stone-300); font-size: .95rem; }
.footer-col a:hover { color: var(--terracotta-glow); }

.footer-bottom {
  border-top: 1px solid rgba(217,202,187,.12);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .85rem; color: var(--stone-500); margin: 0; }
.footer-bottom a { color: var(--stone-400); }

/* =========================================================
   Inner Page Hero (for service / location pages)
   ========================================================= */
.page-hero {
  background: var(--stone-900);
  color: var(--paper);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(20,120,220,.22), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(255,255,255,.02) 2px, rgba(255,255,255,.02) 4px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--paper); margin-bottom: 18px; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero .lede { color: var(--stone-200); max-width: 720px; }
.page-hero .eyebrow { color: var(--terracotta-glow); }
.page-hero .btn-ghost { color: var(--paper); border-color: var(--stone-300); }
.page-hero .btn-ghost:hover { background: var(--paper); color: var(--stone-900); }

.breadcrumbs {
  margin-bottom: 24px;
  font-size: .85rem;
  color: var(--stone-300);
  letter-spacing: .04em;
}
.breadcrumbs a { color: var(--stone-300); text-decoration: underline; }
.breadcrumbs a:hover { color: var(--terracotta-glow); }
.breadcrumbs span { margin: 0 8px; }

/* =========================================================
   Content Layouts
   ========================================================= */
.content-section { padding: 80px 0; }
.content-section + .content-section { padding-top: 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid h2 { margin-bottom: 20px; }
.content-grid p { margin-bottom: 16px; color: var(--stone-700); }
.content-feature {
  background: var(--stone-100);
  padding: 48px;
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--terracotta);
}
.content-feature h3 { margin-bottom: 16px; }

.prose-body p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--stone-700);
  margin-bottom: 24px;
}
.prose-body p:last-child { margin-bottom: 0; }
.prose-body a { color: var(--brand-blue); font-weight: 500; }
.prose-body a:hover { color: var(--brand-blue-dark); }
.prose-callout {
  margin-top: 40px;
  padding: 36px 40px;
  background: var(--stone-100);
  border-left: 6px solid var(--brand-orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.prose-callout p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--stone-900);
  margin: 12px 0 0;
  font-style: italic;
}

/* =========================================================
   City List (Service Areas page)
   ========================================================= */
.city-list-wrap { margin-bottom: 56px; }
.city-list-wrap:last-of-type { margin-bottom: 0; }
.city-list-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand-blue);
  display: inline-block;
}
.city-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px 28px;
  list-style: none;
  padding: 0;
}
.city-list li { margin: 0; }
.city-list a {
  display: block;
  padding: 12px 0;
  color: var(--stone-800);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--stone-100);
  transition: all var(--transition);
  position: relative;
  padding-left: 0;
}
.city-list a:hover {
  color: var(--brand-blue);
  padding-left: 8px;
  border-bottom-color: var(--brand-blue-light);
}
.city-list a:after {
  content: '→';
  position: absolute;
  right: 4px;
  opacity: 0;
  transition: all var(--transition);
  color: var(--brand-orange);
}
.city-list a:hover:after {
  opacity: 1;
  right: 0;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
}
.feature-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--stone-200);
}
.feature-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Service page CTA strip */
.cta-strip {
  background: var(--terracotta);
  color: var(--paper);
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--paper); margin-bottom: 12px; }
.cta-strip p { color: rgba(251,252,254,.9); font-size: 1.1rem; margin-bottom: 28px; }
.cta-strip .btn-secondary { background: var(--stone-900); border-color: var(--stone-900); }
.cta-strip .btn-secondary:hover { background: var(--paper); color: var(--stone-900); border-color: var(--paper); }

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--terracotta);
  line-height: .8;
  display: block;
  margin-bottom: 16px;
  opacity: .9;
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { color: var(--stone-500); font-size: .95rem; }

/* Service Areas Page */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.area-card {
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  transition: all var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
}
.area-card:hover {
  border-color: var(--terracotta);
  background: var(--stone-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.area-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--stone-900);
}
.area-card p { font-size: .9rem; color: var(--stone-500); margin: 0; }
.area-card .area-zip { font-size: .8rem; color: var(--stone-500); letter-spacing: .05em; }

.area-region {
  margin-bottom: 56px;
}
.area-region h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 12px;
  margin-bottom: 24px;
  display: inline-block;
}

/* Snow service emergency strip */
.emergency-strip {
  background: var(--ice-blue);
  color: var(--paper);
  padding: 24px 0;
  text-align: center;
}
.emergency-strip strong { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; }
.emergency-strip a { color: var(--paper); text-decoration: underline; font-weight: 600; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .header-inner { gap: 12px; flex-wrap: wrap; }
  .phone-cta { order: 2; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: 1.5px solid var(--stone-200);
    padding: 10px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    order: 3;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--stone-900); transition: var(--transition); }
  .primary-nav { order: 4; flex-basis: 100%; }
  .primary-nav ul {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 12px 0;
    gap: 0;
  }
  .primary-nav.is-open ul { display: flex; }
  .primary-nav li { width: 100%; }
  .primary-nav a, .primary-nav .btn-nav {
    display: block;
    width: 100%;
    padding: 14px 16px;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--stone-100);
    text-align: left;
  }

  .contact-inner, .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-trust { gap: 32px; }
  .hero-trust strong { font-size: 2rem; }
  .section-pad { padding: 72px 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 60px 0 40px; min-height: 80vh; }
  .hero-trust { gap: 24px; }
  .hero-trust li { flex: 1 1 40%; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 22px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .btn { padding: 14px 24px; font-size: .88rem; }
  .container { padding: 0 18px; }
  .areas-cloud { gap: 6px; }
  .areas-cloud a { padding: 8px 14px; font-size: .85rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
