@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

/* Green Home Care site styles
   Edit the CSS variables first if you ever want to change the brand colors,
   spacing, or the overall look of the site. */
:root {
  --brand-gold: #f6a912;
  --brand-olive: #777f31;
  --brand-olive-dark: #5f6628;
  --ink: #173127;
  --text: #44524b;
  --muted: #68726d;
  --line: #e7e3d6;
  --surface: #ffffff;
  --surface-alt: #f8f7f1;
  --shadow: 0 18px 50px rgba(23, 49, 39, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(119, 127, 49, 0.09), transparent 24%),
    radial-gradient(circle at top right, rgba(246, 169, 18, 0.09), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fcfbf6 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: var(--font-body);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 850;
}

h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-weight: 800;
}

h4 {
  font-size: 1.1rem;
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}

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

.site-shell {
  overflow-x: clip;
}

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

/* Top announcement strip */
.top-strip {
  background: linear-gradient(90deg, var(--brand-olive), var(--brand-olive-dark));
  color: #fff;
  font-size: 0.95rem;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.top-strip__links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-strip__links a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Sticky navigation header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 227, 214, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 170px;
}

.brand img {
  width: 176px;
  height: auto;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.82rem 1rem;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(23, 49, 39, 0.05);
}

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

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav__links a {
  color: var(--ink);
  font-weight: 650;
  font-size: 0.98rem;
  padding: 0.45rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--brand-olive-dark);
  border-color: var(--brand-gold);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Button styles used across the site */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font: inherit;
  font-weight: 750;
  font-size: 0.98rem;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 12px 24px rgba(23, 49, 39, 0.06);
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn--primary:hover {
  background: var(--brand-olive-dark);
}

.btn--secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: rgba(119, 127, 49, 0.35);
}

.btn--accent {
  background: var(--brand-gold);
  color: var(--ink);
}

.btn--accent:hover {
  background: #e89d06;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

/* Main page spacing */
.hero,
.section {
  padding: 5rem 0;
}

.hero {
  position: relative;
  padding-top: 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(119, 127, 49, 0.08), transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(246, 169, 18, 0.1), transparent 16%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.hero__lede,
.section__lead {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero__actions,
.section__actions,
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.eyebrow,
.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 0.84rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(119, 127, 49, 0.12);
  color: var(--brand-olive-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 241, 0.98));
  border: 1px solid rgba(231, 227, 214, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 1.1rem;
}

/* Image block used for photos you added in /images */
.hero__media,
.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 460px;
  background: #eef0e7;
}

.hero__media img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after,
.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 49, 39, 0.03), rgba(23, 49, 39, 0.28));
  pointer-events: none;
}

.hero__media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  box-shadow: 0 12px 24px rgba(23, 49, 39, 0.08);
  font-size: 0.95rem;
}

.hero__media-caption strong {
  display: block;
  margin-bottom: 0.2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-card,
.info-card,
.service-card,
.contact-card,
.value-card,
.quote-card,
.resource-card {
  background: var(--surface);
  border: 1px solid rgba(231, 227, 214, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(23, 49, 39, 0.04);
}

.stat-card {
  padding: 1rem;
}

.stat-card strong {
  display: block;
  color: var(--brand-olive-dark);
  font-size: 1.6rem;
  font-weight: 800;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.info-card,
.service-card,
.contact-card,
.value-card,
.quote-card,
.resource-card {
  padding: 1.25rem;
}

.info-card h3,
.service-card h3,
.contact-card h3,
.value-card h3,
.resource-card h3 {
  margin-bottom: 0.5rem;
}

.icon-pill {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(119, 127, 49, 0.12);
  color: var(--brand-olive-dark);
  font-weight: 900;
}

.pill-list,
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill,
.service-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid rgba(231, 227, 214, 0.95);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.callout {
  background: linear-gradient(135deg, rgba(119, 127, 49, 0.08), rgba(246, 169, 18, 0.1));
  border: 1px solid rgba(231, 227, 214, 0.92);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.callout--dark {
  background: linear-gradient(135deg, var(--brand-olive), var(--brand-olive-dark));
  color: #fff;
  border: 0;
}

.callout--dark h2,
.callout--dark h3,
.callout--dark p {
  color: #fff;
}

.checklist,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li,
.feature-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.checklist li::before,
.feature-list li::before {
  content: "•";
  color: var(--brand-gold);
  font-weight: 900;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.05rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-olive);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.faq-details {
  display: grid;
  gap: 0.85rem;
}

.faq-details details {
  background: var(--surface);
  border: 1px solid rgba(231, 227, 214, 0.95);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.05rem;
  box-shadow: 0 8px 24px rgba(23, 49, 39, 0.035);
}

.faq-details summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--ink);
  list-style: none;
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary::after {
  content: "+";
  float: right;
  color: var(--brand-olive);
  font-weight: 900;
}

.faq-details details[open] summary::after {
  content: "−";
}

.faq-details .answer {
  padding-top: 0.9rem;
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card a {
  color: var(--brand-olive-dark);
  font-weight: 800;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: block;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

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

.small-note,
.muted {
  color: var(--muted);
}

.small-note {
  font-size: 0.95rem;
}

.footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, #22352d 0%, #1a2822 100%);
  color: rgba(255, 255, 255, 0.84);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer h3,
.footer h4 {
  color: #fff;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
}

.footer a {
  color: #fff;
}

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

.footer li {
  margin-bottom: 0.6rem;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.city-hero {
  background: linear-gradient(180deg, rgba(119, 127, 49, 0.08), rgba(246, 169, 18, 0.05));
  border-bottom: 1px solid rgba(231, 227, 214, 0.8);
}

.redirect-box {
  min-height: 64vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.redirect-box__card {
  max-width: 680px;
  background: var(--surface);
  border: 1px solid rgba(231, 227, 214, 0.95);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.section--alt {
  background: linear-gradient(180deg, rgba(248, 247, 241, 0.8), rgba(255, 255, 255, 0.95));
  border-top: 1px solid rgba(231, 227, 214, 0.5);
  border-bottom: 1px solid rgba(231, 227, 214, 0.5);
}

/* A few pages use this helper for small inline button groups */
.toolbar {
  align-items: center;
}

.eyebrow + h1 {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .footer__grid,
  .contact-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(231, 227, 214, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .site-header__inner {
    position: relative;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a {
    padding: 0.75rem 0.25rem;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .hero__stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .feature-image {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 3.75rem 0;
  }

  .top-strip__inner,
  .section__head {
    align-items: flex-start;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero__media,
  .feature-image {
    min-height: 240px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}
