/* Clear Path Pressure Pros LLC — mobile-first stylesheet */

:root {
  --blue-deep: #073b66;
  --blue: #0d6ab0;
  --aqua: #17a8d1;
  --sun: #ffc93c;
  --sun-dark: #e0a800;
  --sand: #f6f9fb;
  --ink: #16232e;
  --gray: #58697a;
  --border: #dde6ee;
  --radius: 14px;
  --font-head: 'Baloo 2', 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--sand); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; margin: 0 0 0.5em; color: var(--blue-deep); }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 4rem 1.25rem; }
.eyebrow { font-family: var(--font-head); color: var(--aqua); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; font-weight: 700; margin: 0 0 0.55rem; }
.section-lead { max-width: 680px; color: var(--gray); font-size: 1.05rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 1rem; border: 2px solid transparent; }
.btn-primary { background: var(--sun); color: var(--blue-deep); }
.btn-primary:hover { background: var(--sun-dark); }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.contact .btn-outline { border-color: var(--blue-deep); color: var(--blue-deep); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.header-inner { max-width: 1160px; margin: 0 auto; padding: 0.6rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.logo span { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--blue-deep); line-height: 1.1; }
.logo em { display: block; font-style: normal; font-weight: 600; color: var(--aqua); font-size: 0.85rem; }

.main-nav { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 8px 12px rgba(0,0,0,0.06); max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.main-nav.open { max-height: 320px; }
.main-nav a { color: var(--ink); text-decoration: none; padding: 1rem 1.25rem; border-top: 1px solid var(--border); font-weight: 600; min-height: 44px; display: flex; align-items: center; }
.main-nav a:hover { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.phone-pill { display: none; background: var(--blue); color: #fff; text-decoration: none; padding: 0.55rem 1.05rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.menu-toggle { width: 44px; height: 44px; background: none; border: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--blue-deep); transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue) 60%, var(--aqua) 100%); display: flex; flex-direction: column; }
.hero-content { padding: 3.5rem 1.25rem 2rem; color: #fff; text-align: center; max-width: 720px; margin: 0 auto; }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 6vw, 2.9rem); margin-bottom: 0.6rem; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.92); margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.trust-badge { margin-top: 1.5rem; font-weight: 700; color: var(--sun); }
.hero-image { width: 100%; max-width: 480px; margin: 0 auto; padding: 0 1.25rem 2.5rem; }
.hero-image img { border-radius: var(--radius); border: 4px solid rgba(255,255,255,0.25); }

/* Services */
.services { background: var(--sand); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.service-icon { width: 44px; height: 44px; color: var(--blue); margin-bottom: 1rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--gray); margin: 0; font-size: 0.95rem; }

/* Work gallery */
.work { background: #fff; }
.work-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.work-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.work-grid img { width: 100%; height: 240px; object-fit: cover; }
.work-grid figcaption { padding: 0.9rem 1.1rem; font-size: 0.92rem; color: var(--gray); background: var(--sand); }

/* About */
.about { background: var(--sand); }
.testimonial { border-left: 4px solid var(--aqua); background: #fff; padding: 1.5rem 1.75rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 2rem 0; }
.testimonial p { font-size: 1.05rem; font-style: italic; margin: 0 0 0.75rem; color: var(--ink); }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--blue); }
.area-list { margin-top: 2rem; }
.area-label { font-weight: 700; color: var(--blue-deep); margin: 0 0 0.75rem; }
.area-list ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-list li { background: #fff; border: 1.5px solid var(--aqua); color: var(--blue-deep); padding: 0.5rem 1rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem; }

/* Contact */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-list a { color: var(--blue); text-decoration: none; font-weight: 700; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,0.8); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 2.5rem 1.25rem; text-align: center; }
.footer-name { font-family: var(--font-head); color: #fff; font-size: 1.15rem; margin: 0 0 0.5rem; }
.footer-inner a { color: #fff; text-decoration: none; }
.footer-copy { font-size: 0.85rem; margin-top: 0.75rem; opacity: 0.7; }

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

@media (min-width: 860px) {
  .menu-toggle { display: none; }
  .main-nav { position: static; flex-direction: row; max-height: none; overflow: visible; background: transparent; box-shadow: none; }
  .main-nav a { color: var(--ink); border-top: none; padding: 0.5rem 0.9rem; min-height: auto; }
  .phone-pill { display: inline-flex; }
  .hero { flex-direction: row; align-items: center; justify-content: center; gap: 2rem; padding: 2rem 1.25rem; }
  .hero-content { text-align: left; margin: 0; padding: 1.5rem 0; }
  .hero-ctas { justify-content: flex-start; }
  .hero-image { padding: 0; margin: 0; }
  .contact-grid { grid-template-columns: 1.1fr 1fr; align-items: center; }
}

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