/* Ashworth Family Cleaning — local service site */
:root {
  --teal-900: #0c4a5c;
  --teal-800: #0e5f73;
  --teal-700: #0e7490;
  --teal-600: #0891b2;
  --teal-100: #cffafe;
  --teal-50: #ecfeff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(12, 74, 92, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 74, 92, 0.12);
  --max: 1080px;
  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--teal-900); }
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--slate-900);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 2.85rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3vw, 2rem); letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--slate-900);
}
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 650; font-size: 1.05rem; }
.brand-tag { font-size: 0.78rem; color: var(--slate-500); letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: 0.35rem 1.25rem; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--slate-600); font-weight: 550; font-size: 0.95rem;
}
.nav a:hover { color: var(--teal-700); }
.nav-cta {
  background: var(--teal-700) !important; color: var(--white) !important;
  padding: 0.55rem 1rem; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--teal-900) !important; color: var(--white) !important; }
.menu-btn {
  display: none; border: 1px solid var(--slate-200); background: var(--white);
  border-radius: 8px; padding: 0.45rem 0.65rem; cursor: pointer; color: var(--slate-700);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: none; border-radius: 999px; padding: 0.85rem 1.35rem;
  font: inherit; font-weight: 650; cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal-700); color: var(--white); box-shadow: 0 8px 20px rgba(8,145,178,0.28); }
.btn-primary:hover { background: var(--teal-900); color: var(--white); }
.btn-secondary {
  background: var(--white); color: var(--teal-800);
  border: 1.5px solid var(--teal-100); box-shadow: var(--shadow);
}
.btn-secondary:hover { background: var(--teal-50); color: var(--teal-900); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(8,145,178,0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(14,116,144,0.1), transparent 55%),
    linear-gradient(180deg, var(--teal-50) 0%, var(--white) 70%);
  padding: 3.5rem 0 4rem;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-700); margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 1.4rem; height: 2px; background: var(--teal-600); border-radius: 2px;
}
.hero h1 { margin-bottom: 0.75rem; }
.hero-lead {
  font-size: 1.15rem; color: var(--slate-600); max-width: 36rem; margin-bottom: 1.5rem;
}
.hero-note {
  margin-top: 1.25rem; font-size: 0.95rem; color: var(--slate-500);
}
.hero-card {
  background: var(--white); border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg); padding: 1.6rem 1.5rem; border: 1px solid var(--slate-100);
}
.hero-card h2 { font-size: 1.15rem; margin-bottom: 0.85rem; }
.hero-card ul { display: grid; gap: 0.65rem; }
.hero-card li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  color: var(--slate-700); font-size: 0.98rem;
}
.hero-card li::before {
  content: ""; flex: 0 0 1.15rem; width: 1.15rem; height: 1.15rem; margin-top: 0.2rem;
  background: var(--teal-100); border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--teal-600);
}
.spanish-pill {
  display: inline-block; margin-top: 1rem; padding: 0.35rem 0.75rem;
  background: var(--teal-50); color: var(--teal-800); border-radius: 999px;
  font-size: 0.88rem; font-weight: 600;
}

/* Sections */
section { padding: 4rem 0; }
.section-head { max-width: 38rem; margin-bottom: 2rem; }
.section-head p { color: var(--slate-600); margin: 0; }
.alt { background: linear-gradient(180deg, var(--slate-100) 0%, var(--white) 100%); }

/* Services */
.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem;
}
.service {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.4rem 1.35rem; box-shadow: var(--shadow);
}
.service.featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  color: var(--teal-50); border: none;
}
.service.featured h3, .service.featured p { color: var(--white); }
.service.featured p { opacity: 0.92; }
.service.featured ul { color: rgba(255,255,255,0.92); }
.service-icon {
  width: 3rem; height: 3rem; border-radius: 10px;
  background: rgba(255,255,255,0.15); display: grid; place-items: center;
  font-size: 1.4rem;
}
.service h3 { margin-bottom: 0.4rem; }
.service p { font-size: 0.98rem; margin-bottom: 0.75rem; color: var(--slate-600); }
.service ul { display: grid; gap: 0.35rem; }
.service li {
  position: relative; padding-left: 1.1rem; font-size: 0.95rem; color: var(--slate-600);
}
.service li::before {
  content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 700;
}
.service.featured li::before { color: #a5f3fc; }

/* Why */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.why {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.35rem 1.2rem;
}
.why .num {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--teal-600);
  font-weight: 650; margin-bottom: 0.4rem;
}
.why h3 { margin-bottom: 0.35rem; }
.why p { margin: 0; font-size: 0.95rem; color: var(--slate-600); }

/* Area + steps */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
.area-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.chip {
  background: var(--teal-50); color: var(--teal-900); border: 1px solid var(--teal-100);
  padding: 0.4rem 0.8rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
}
.steps { display: grid; gap: 1rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.1rem 1.15rem;
}
.step-num {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--teal-700); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
}
.step h3 { margin-bottom: 0.2rem; }
.step p { margin: 0; font-size: 0.95rem; color: var(--slate-600); }

/* Hours */
.hours-box {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
  max-width: 40rem;
}
.hours-box dl { margin: 0; display: grid; gap: 0.75rem; }
.hours-box dt { font-weight: 650; color: var(--slate-900); }
.hours-box dd { margin: 0.15rem 0 0; color: var(--slate-600); }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: start;
}
.contact-card {
  background: linear-gradient(160deg, var(--teal-800), var(--teal-600));
  color: var(--white); border-radius: calc(var(--radius) + 2px); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-card h2 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,0.9); }
.contact-line {
  display: block; margin: 0.85rem 0; font-size: 1.15rem; font-weight: 650;
  color: var(--white); text-decoration: none;
}
.contact-line:hover { color: var(--teal-100); }
.contact-line small {
  display: block; font-size: 0.78rem; font-weight: 550; opacity: 0.8;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.15rem;
}
.placeholder-hint {
  margin-top: 1.1rem; padding: 0.75rem 0.9rem; border-radius: 8px;
  background: rgba(255,255,255,0.12); font-size: 0.88rem; color: rgba(255,255,255,0.9);
}

.form {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: calc(var(--radius) + 2px); padding: 1.5rem; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { margin-bottom: 0.9rem; }
.field label {
  display: block; font-size: 0.88rem; font-weight: 650; color: var(--slate-700);
  margin-bottom: 0.35rem;
}
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--slate-200); border-radius: 8px;
  padding: 0.7rem 0.8rem; font: inherit; color: var(--slate-900); background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--teal-100); border-color: var(--teal-600);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.88rem; color: var(--slate-500); margin: 0.5rem 0 0; }
.form-status {
  display: none; margin-top: 0.85rem; padding: 0.75rem 0.9rem; border-radius: 8px;
  background: var(--teal-50); color: var(--teal-900); font-size: 0.95rem;
}
.form-status.show { display: block; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--slate-200); padding: 1.5rem 0 2rem;
  color: var(--slate-500); font-size: 0.95rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between; align-items: center;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .service.featured { grid-template-columns: 1fr; }
  .menu-btn { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 1.25rem; right: 1.25rem; top: 100%;
    background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px;
    padding: 0.85rem; flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow-lg); margin-top: 0.35rem;
  }
  .nav.open { display: flex; }
  .nav-cta { text-align: center; }
}
@media (max-width: 560px) {
  .service-grid, .why-grid, .form-row { grid-template-columns: 1fr; }
  .container { width: min(100% - 1.5rem, var(--max)); }
  section { padding: 3rem 0; }
  .hero { padding: 2.5rem 0 3rem; }
}
