/* Big Softy — bespoke styles. Cyan + sky + warm cream. Spray-water fresh. */
:root {
  --bg: #f4fafd;
  --bg-soft: #e3f1f7;
  --bg-dark: #0e3a4f;
  --line: rgba(14, 58, 79, 0.10);
  --cyan: #1c8db8;
  --cyan-2: #156f93;
  --sky: #5cc6e8;
  --sun: #f0c645;
  --grass: #7ab84a;
  --text: #0a2330;
  --text-2: #3c4d59;
  --text-dim: #738090;
  --text-on-dark: #f0f7fb;
  --sans: 'Inter', system-ui, sans-serif;
  --container: 1240px;
  --r: 6px;
  --r-lg: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
.accent { color: var(--cyan); }

.topbar { position: sticky; top: 0; z-index: 30; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 14px 28px; background: rgba(244, 250, 253, 0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--cyan); color: white; font-weight: 800; font-size: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 19px; color: var(--cyan); letter-spacing: -0.01em; }
.brand-loc { font-size: 11px; color: var(--text-dim); margin-top: 2px; font-weight: 500; }
.nav-primary { display: none; gap: 28px; font-size: 14px; justify-content: flex-end; }
.nav-primary a { color: var(--text-2); font-weight: 500; transition: color .2s; }
.nav-primary a:hover { color: var(--cyan); }
.nav-primary .nav-cta { padding: 10px 20px; background: var(--cyan); color: white; border-radius: 999px; font-weight: 700; transition: background .2s; }
.nav-primary .nav-cta:hover { background: var(--cyan-2); }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; background: 0; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); }
.mobile-menu { position: fixed; top: 70px; left: 0; right: 0; z-index: 25; display: flex; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px 28px; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-menu .mobile-cta { color: var(--cyan); }
@media (min-width: 980px) { .nav-primary { display: flex; } .nav-toggle { display: none; } .mobile-menu { display: none !important; } }

.hero { position: relative; padding: clamp(80px, 10vw, 140px) 28px clamp(80px, 10vw, 140px); overflow: hidden; background: linear-gradient(135deg, #1c8db8 0%, #5cc6e8 50%, #87d8ec 100%); color: var(--text-on-dark); }
.hero-bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bubbles span { position: absolute; bottom: -100px; border-radius: 50%; background: rgba(255,255,255,0.18); animation: rise 12s infinite ease-in; }
.hero-bubbles span:nth-child(1) { left: 10%; width: 80px; height: 80px; animation-delay: 0s; animation-duration: 14s; }
.hero-bubbles span:nth-child(2) { left: 25%; width: 50px; height: 50px; animation-delay: 2s; animation-duration: 16s; }
.hero-bubbles span:nth-child(3) { left: 40%; width: 100px; height: 100px; animation-delay: 4s; animation-duration: 18s; }
.hero-bubbles span:nth-child(4) { left: 55%; width: 40px; height: 40px; animation-delay: 1s; animation-duration: 12s; }
.hero-bubbles span:nth-child(5) { left: 70%; width: 70px; height: 70px; animation-delay: 6s; animation-duration: 15s; }
.hero-bubbles span:nth-child(6) { left: 85%; width: 60px; height: 60px; animation-delay: 3s; animation-duration: 17s; }
.hero-bubbles span:nth-child(7) { left: 5%; width: 30px; height: 30px; animation-delay: 8s; animation-duration: 13s; }
.hero-bubbles span:nth-child(8) { left: 60%; width: 90px; height: 90px; animation-delay: 5s; animation-duration: 19s; }
@keyframes rise { 0% { transform: translateY(0) scale(1); opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.4; } 100% { transform: translateY(-110vh) scale(0.5); opacity: 0; } }
.hero-inner { max-width: var(--container); margin: 0 auto; position: relative; }
.hero-eyebrow { display: inline-block; padding: 6px 14px; background: white; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.20em; font-size: 11px; margin: 0 0 28px; font-weight: 700; border-radius: 999px; }
.hero-title { font-family: var(--sans); font-size: clamp(48px, 8vw, 112px); font-weight: 800; line-height: 0.95; letter-spacing: -0.025em; margin: 0 0 28px; color: var(--text-on-dark); }
.hero-title .accent { color: var(--sun); }
.hero-sub { max-width: 660px; font-size: clamp(16px, 1.5vw, 19px); color: rgba(240, 247, 251, 0.92); margin: 0 0 36px; line-height: 1.6; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.cta-primary, .cta-ghost { display: inline-flex; align-items: center; padding: 16px 30px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; transition: background .15s, color .15s, transform .15s; }
.cta-primary { background: var(--sun); color: var(--text); }
.cta-primary:hover { background: #ffd75e; transform: translateY(-1px); }
.cta-ghost { color: white; border: 2px solid rgba(255,255,255,0.5); }
.cta-ghost:hover { background: white; color: var(--cyan); border-color: white; }
.hero-stats { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); padding-top: 32px; border-top: 1px solid rgba(240, 247, 251, 0.3); max-width: 760px; }
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { color: var(--sun); font-weight: 800; font-size: 20px; }
.hero-stats span { font-size: 12px; color: rgba(240, 247, 251, 0.75); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; }

.section-head { max-width: 800px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow { text-transform: uppercase; letter-spacing: 0.30em; font-size: 11px; color: var(--cyan); margin: 0 0 16px; font-weight: 700; }
.section-title { font-family: var(--sans); font-weight: 800; font-size: clamp(30px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 18px; color: var(--text); }
.section-blurb { font-size: 17px; color: var(--text-2); margin: 0; line-height: 1.55; }
.lede { font-size: 19px; color: var(--text); line-height: 1.6; font-weight: 400; margin: 0 0 18px; }

.services { padding: clamp(72px, 9vw, 120px) 28px; max-width: var(--container); margin: 0 auto; }
.svc-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.svc { padding: 28px 26px; background: white; border-radius: var(--r-lg); border: 1px solid var(--line); transition: transform .2s, box-shadow .2s, border-color .2s; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(28, 141, 184, 0.15); border-color: var(--cyan); }
.svc-icon { font-size: 32px; margin: 0 0 14px; line-height: 1; display: block; }
.svc h3 { font-weight: 700; font-size: 19px; margin: 0 0 10px; color: var(--cyan); letter-spacing: -0.01em; }
.svc p { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.55; }

.how { padding: clamp(72px, 9vw, 120px) 28px; background: var(--bg-soft); }
.how-list { max-width: var(--container); margin: 0 auto; display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.how-list li { padding: 32px 28px; background: white; border-radius: var(--r-lg); transition: transform .2s; }
.how-list li:hover { transform: translateY(-3px); }
.step-num { font-weight: 800; font-size: 36px; color: var(--sun); margin: 0 0 12px; line-height: 1; -webkit-text-stroke: 1px var(--cyan); }
.how-list h3 { font-weight: 700; font-size: 19px; margin: 0 0 12px; color: var(--cyan); letter-spacing: -0.01em; }
.how-list p { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.6; }

.areas { padding: clamp(72px, 9vw, 120px) 28px; max-width: var(--container); margin: 0 auto; }
.area-grid { display: flex; flex-wrap: wrap; gap: 12px; max-width: 920px; margin: 0 auto; justify-content: center; }
.area-tag { padding: 14px 24px; background: var(--bg-soft); border: 2px solid transparent; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--cyan); transition: border-color .2s, transform .2s, background .2s; }
.area-tag:hover { border-color: var(--cyan); transform: translateY(-2px); background: white; }

.about { padding: clamp(72px, 9vw, 120px) 28px; background: var(--cyan); color: var(--text-on-dark); }
.about-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.about .section-eyebrow { background: white; color: var(--cyan); display: inline-block; padding: 6px 14px; border-radius: 999px; }
.about .section-title { color: var(--text-on-dark); }
.about .section-title .accent { color: var(--sun); }
.about .lede { color: var(--text-on-dark); }
.about p { color: rgba(240, 247, 251, 0.85); font-size: 16px; line-height: 1.6; }

.contact-strip { padding: clamp(72px, 9vw, 120px) 28px; background: var(--bg-soft); text-align: center; }
.contact-strip-inner { max-width: 760px; margin: 0 auto; }
.contact-strip-title { font-family: var(--sans); font-weight: 800; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.025em; margin: 16px 0 18px; color: var(--text); }
.contact-strip-blurb { font-size: 17px; color: var(--text-2); margin: 0 0 32px; }
.contact-strip-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.footer { padding: 56px 28px 24px; background: var(--bg-dark); color: var(--text-on-dark); }
.footer-grid { max-width: var(--container); margin: 0 auto; display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-name { font-weight: 800; font-size: 22px; margin: 0 0 4px; color: var(--text-on-dark); }
.footer-tag { font-size: 13px; color: var(--sun); margin: 0 0 12px; font-weight: 600; }
.footer-blurb { font-size: 14px; color: rgba(240, 247, 251, 0.6); margin: 0; line-height: 1.55; }
.footer-eyebrow { text-transform: uppercase; letter-spacing: 0.26em; font-size: 11px; color: var(--sun); margin: 0 0 14px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-col li, .footer-col a { color: rgba(240, 247, 251, 0.78); transition: color .2s; }
.footer-col a:hover { color: var(--sun); }
.footer-base { max-width: var(--container); margin: 36px auto 0; padding-top: 20px; border-top: 1px solid rgba(240, 247, 251, 0.15); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(240, 247, 251, 0.55); }
.footer-fineprint a { color: var(--sun); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .hero-bubbles span { display: none; } }

@media (max-width: 700px) {
  .topbar { padding: 12px 18px; gap: 12px; }
  .hero { padding: 64px 18px; }
  .services, .how, .areas, .about, .contact-strip, .footer { padding-left: 18px; padding-right: 18px; }
  .footer-base { flex-direction: column; gap: 10px; }
}

/* Fix: hidden attribute must override display:flex */
.mobile-menu[hidden] { display: none !important; }
