/* ============================================================
   Easy Peasy Pressure Washing & Paver Seal
   Palette: real brand colors sourced from ezpzpw.com's theme CSS
   custom properties (--primary-color: #252525, --secondary-color:
   #73c3be, hover shade #5b979b). #73c3be only hits ~2:1 contrast
   on white, so it's used here for decorative/background contexts;
   --teal-700/--coral-600 use a derived darker step of the same
   teal (#3f7377) so button/link text stays WCAG-reasonable
   (~5.3:1). See NOTES.md for the full mapping.
   Headings: Quicksand (rounded sans) / Body: Nunito Sans
   Mobile-first layout
   ============================================================ */

:root {
  --teal-900: #252525;
  --teal-700: #3f7377;
  --teal-600: #73c3be;
  --teal-100: #e3f5f4;
  --teal-50: #f2fbfa;
  --coral-600: #3f7377;
  --coral-700: #2c5457;
  --coral-100: #dcefed;
  --ink: #1c2b2c;
  --ink-soft: #4a5a5b;
  --paper: #fffdfa;
  --line: #e3ded4;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px -14px rgba(10, 60, 65, 0.28);
  --font-head: 'Quicksand', 'Segoe UI Rounded', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--teal-900);
}

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

a { color: var(--teal-700); }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  min-height: 44px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--coral-600);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--coral-700); }
.btn-secondary {
  background: #fff;
  color: var(--teal-800, var(--teal-900));
  border-color: var(--teal-700);
}
.btn-secondary:hover { background: var(--teal-50); }
.btn-full { width: 100%; }
.btn-nav-call {
  background: var(--teal-700);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.95rem;
  min-height: 44px;
}
.btn-nav-call:hover { background: var(--teal-900); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(10, 60, 65, 0.08);
}
.header-bar { border-bottom: 1px solid var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 44px;
}
.logo {
  max-height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teal-900);
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral-700);
  font-weight: 700;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--teal-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.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); }

.primary-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(80vw, 320px);
  background: #fff;
  box-shadow: -8px 0 30px rgba(10, 60, 65, 0.15);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 90px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 99;
}
.primary-nav.open { transform: translateX(0); }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.primary-nav .btn-nav-call { justify-content: center; }

/* ---------- Utility bar ---------- */
.util-bar {
  background: var(--teal-900);
  color: #eafbfa;
}
.util-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 8px 20px;
  font-size: 0.8rem;
}
.util-item { display: flex; align-items: center; gap: 6px; opacity: 0.95; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--teal-50) 0%, #fff 100%);
  padding: 48px 0 56px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.25;
  z-index: 0;
}
.hero-blob-a {
  width: 260px; height: 260px;
  background: var(--coral-100);
  top: -80px; right: -80px;
}
.hero-blob-b {
  width: 180px; height: 180px;
  background: var(--teal-100);
  bottom: -60px; left: -60px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--coral-700);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
.hero h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--coral-600); }
.hero-lede {
  font-size: 1.05rem;
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.hero-badges li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-soft);
}
.hero-badges strong {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--teal-900);
}
.hero-badges span { font-size: 0.78rem; color: var(--ink-soft); }

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.hero-panel-paver { grid-column: 1 / -1; aspect-ratio: 16/7; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--coral-600);
  color: #fff;
}
.trust-inner {
  padding: 12px 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-inner p { color: #fff; margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-title { font-size: clamp(1.5rem, 5vw, 2.1rem); }
.section-title.center, .section-lede.center { text-align: center; }
.section-lede {
  max-width: 60ch;
  margin: 0 auto 36px;
  font-size: 1rem;
}

/* ---------- Services ---------- */
.services { background: #fff; }
.service-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-col {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.service-col:nth-child(2) {
  background: #fff7f2;
  border-color: var(--coral-100);
}
.service-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  color: #fff;
  flex-shrink: 0;
}
.service-icon-wash { background: var(--teal-700); }
.service-icon-paver { background: var(--coral-600); }
.service-col h3 { margin: 0; font-size: 1.3rem; }
.service-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-list li {
  padding-left: 26px;
  position: relative;
  font-weight: 600;
  color: var(--ink);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral-100);
  border: 2px solid var(--coral-600);
}
.service-col:nth-child(1) .service-list li::before {
  background: var(--teal-100);
  border-color: var(--teal-700);
}
.service-cta {
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.service-cta p { margin: 0; font-weight: 600; color: var(--ink); }

/* ---------- Giving back ---------- */
.giving-back {
  background: var(--teal-900);
  color: #eafbfa;
}
.giving-back h2 { color: #fff; }
.giving-back p { color: #cfeceb; }
.giving-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.giving-badge {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--teal-50); }
.tc-widget {
  max-width: 640px;
  margin: 0 auto;
}
.tc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-stars {
  color: var(--coral-600);
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.tc-quote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink);
  font-style: normal;
  margin-bottom: 14px;
}
.tc-attribution { margin: 0; font-size: 0.9rem; }
.tc-name { font-weight: 700; color: var(--teal-900); }
.tc-service { color: var(--ink-soft); }
.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}
.tc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--teal-700);
  background: #fff;
  color: var(--teal-700);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-arrow:hover { background: var(--teal-700); color: #fff; }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--teal-100);
  cursor: pointer;
  padding: 0;
}
.tc-dot.active { background: var(--coral-600); }
.tc-noscript p {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  max-width: 640px;
  margin: 0 auto 14px;
}

/* ---------- About ---------- */
.about { background: #fff; }
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-photo-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg, var(--teal-100), var(--teal-100) 14px, #fff 14px, #fff 28px);
  border: 1px dashed var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--teal-900);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 10px 16px;
  font-size: 0.88rem;
  color: #fff;
  background: var(--teal-900);
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.about-points li {
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal-900);
  text-align: center;
}

/* ---------- Contact ---------- */
.contact { background: var(--teal-50); }
.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-900);
}
.contact-list a { color: var(--teal-900); font-weight: 700; text-decoration: none; }
.contact-list svg { color: var(--coral-600); flex-shrink: 0; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

/* quote form */
.quote-form-title {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-900);
}
.optional-tag {
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 44px;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--teal-600);
  outline-offset: 1px;
}
.form-confirmation {
  background: var(--teal-50);
  border: 1.5px solid var(--teal-100);
  border-radius: var(--radius-sm);
  padding: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal-900);
  text-align: center;
}

.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/9;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: #cfeceb;
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand .brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}
.footer-brand p { color: #a9d6d4; margin: 6px 0 0; }
.footer-brand a { color: #eafbfa; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}
.footer-nav a {
  color: #cfeceb;
  text-decoration: none;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-copy {
  font-size: 0.8rem;
  color: #7fb7b4;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}

/* ============================================================
   Tablet and up (min-width 768px)
   ============================================================ */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
  .primary-nav ul {
    flex-direction: row;
    gap: 4px;
  }
  .primary-nav a {
    border-bottom: none;
    padding: 0 4px;
    font-size: 0.95rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }
  .hero-copy { flex: 1.1; }
  .hero-visual { flex: 1; }

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

  .about-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .about-visual, .about-copy { flex: 1; }

  .contact-inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .contact-info, .contact-form-card { flex: 1; }
  .form-row {
    flex-direction: row;
  }
  .form-row .form-field { flex: 1; }

  .giving-inner { flex-direction: row; align-items: center; }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-copy {
    width: 100%;
  }
}

/* ============================================================
   Desktop (min-width 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .section { padding: 80px 0; }
  .hero { padding: 72px 0 80px; }
}
