/* ============================================================
   McPherson Pressure Washing
   Design language: bold condensed italic display type, navy +
   water blue, layered wave dividers, sparkles, line-art icons,
   stripe circles and organic blobs from the brand card.
   ============================================================ */

:root {
  color-scheme: only light;
  --navy: #0E345C;
  --navy-deep: #081F3A;
  --blue: #1E8FD5;
  --blue-light: #7CC5EE;
  --ice: #EDF5FB;
  --ink: #1C2733;
  --muted: #55677A;
  --white: #FFFFFF;
  --display: "Anton", "Arial Narrow", sans-serif;
  --accent-font: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 10px 30px rgba(8, 31, 58, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: #FFFFFF !important; }
body {
  font-family: var(--body);
  color: #1C2733;
  line-height: 1.65;
  background: #FFFFFF !important;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--blue); }

h1, h2, h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: 0.8px; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.section { padding: 5.5rem 0; background-color: #FFFFFF; position: relative; z-index: 1; }
.section-ice { background: #EDF5FB !important; }
.section-navy { background: linear-gradient(180deg, #081F3A 0%, #0E345C 100%) !important; color: #FFFFFF !important; }
.section-navy h2, .section-navy h3 { color: var(--white); }

/* ---------- Eyebrow with side rules, like the mockup ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--blue);
  opacity: 0.7;
}
.section-head p { color: var(--muted); margin-top: 0.9rem; }
.section-navy .section-head p { color: #C9DFF0; }
.section-navy .eyebrow { color: var(--blue-light); }
.section-navy .section-head .eyebrow::before,
.section-navy .section-head .eyebrow::after { background: var(--blue-light); }

/* accent word inside headings */
h1 em, h2 em { font-style: italic; color: var(--blue); }
.section-navy h2 em, .hero h1 em { color: var(--blue); }

/* headline underline rule + sparkle, like "CLEAN DONE RIGHT." */
.head-rule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.1rem 0 1.3rem;
}
.head-rule::before { content: ""; height: 2px; width: 150px; background: var(--navy); opacity: 0.85; }
.head-rule::after { content: ""; height: 2px; width: 44px; background: var(--blue); }
.head-rule .spark {
  width: 18px; height: 18px; flex: none;
  background: var(--blue);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 8px 20px rgba(30,143,213,0.35); }
.btn-primary:hover { background: #1878B4; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-light { background: #FFFFFF; color: var(--navy); }
.btn-light:hover { background: #EDF5FB; }
.btn-ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-ghost:hover { background: var(--blue); color: var(--white); }
.section-navy .btn-ghost, .hero .btn-ghost { border-color: var(--blue-light); color: var(--blue-light); }
.section-navy .btn-ghost:hover { background: var(--blue-light); color: var(--navy-deep); }
.cta-band .btn-ghost { border-color: #FFFFFF; color: #FFFFFF; }
.cta-band .btn-ghost:hover { background: #FFFFFF; color: #0E345C; }

/* text link with arrow, like "VIEW OUR SERVICES →" */
.text-link {
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.text-link::after { content: " \2192"; color: var(--blue); }
.text-link:hover { border-bottom-color: var(--blue); }

/* ---------- Header: white bar, nav center, quote button ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #FFFFFF !important;
  box-shadow: 0 2px 14px rgba(8,31,58,0.08);
}
.topbar { display: none; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.45rem 0;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex: none; }
.brand img { width: 92px; height: 92px; }
.brand-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.brand-text span { display: block; font-size: 0.62rem; letter-spacing: 3px; color: var(--blue); font-family: var(--accent-font); font-style: normal; font-weight: 700; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover { color: var(--blue); border-bottom-color: var(--blue); }
.main-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  border-bottom: none;
  box-shadow: 0 6px 16px rgba(30,143,213,0.35);
}
.main-nav .nav-cta:hover { background: #1878B4; color: var(--white); }

/* dropdowns */
.has-drop { position: relative; }
.has-drop .drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  min-width: 230px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--blue);
  padding: 0.5rem 0;
  flex-direction: column;
  gap: 0;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { display: flex; }
.drop li { width: 100%; }
.drop a { display: block; padding: 0.55rem 1.1rem; border-bottom: none; font-size: 0.98rem; }
.drop a:hover { background: #EDF5FB; }

/* mobile nav */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; margin-left: auto; }
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block; width: 28px; height: 3px; background: var(--navy); border-radius: 2px; position: relative; content: "";
}
.nav-toggle-label span::before { position: absolute; top: -9px; }
.nav-toggle-label span::after { position: absolute; top: 9px; }

@media (max-width: 980px) {
  .nav-toggle-label { display: block; }
  .main-nav { display: none; width: 100%; margin: 0; }
  .nav-toggle:checked ~ .main-nav { display: block; }
  .header-inner { flex-wrap: wrap; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 1rem; }
  .main-nav a { display: block; padding: 0.7rem 0.3rem; border-bottom: 1px solid var(--ice); }
  .has-drop .drop { display: flex; position: static; transform: none; box-shadow: none; border-top: none; padding-left: 1rem; }
  .main-nav .nav-cta { text-align: center; margin-top: 0.6rem; }
}

/* ---------- Hero: full-width scene image, like the mockup ---------- */
/* HERO PHOTO
   Upload the photo as /images/hero.jpg and it appears automatically.
   The white overlay runs 100% on the left to 0% on the right so the
   headline stays readable. If hero.jpg is missing, the solid blue
   fallback color shows instead and everything still looks intentional. */
.hero {
  position: relative;
  background-color: #CFE6F6;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.92) 34%, rgba(255,255,255,0.45) 60%, rgba(255,255,255,0) 100%),
    url('/images/hero.jpg');
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
  padding: 5.5rem 0 9rem;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 560px; }
.hero h1 { color: var(--navy); font-size: clamp(3rem, 7.5vw, 5.2rem); }
.hero h1 em { color: var(--blue); }
.hero-sub { font-size: 1.12rem; margin: 0 0 1.8rem; color: #33475B; max-width: 460px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.2rem; }
.hero-chips a {
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(14,52,92,0.22);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
}
.hero-chips a:hover { border-color: var(--blue); color: var(--blue); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 900px) {
  .hero { padding: 3.5rem 0 8rem; background-position: 70% bottom; }
  .hero-copy { max-width: 100%; }
}
@media (max-width: 640px) {
  .hero { padding: 2.8rem 0 7rem; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.4rem); }
  .hero-sub { font-size: 1rem; }
}

/* ---------- Wave dividers ---------- */
.wave-divider { display: block; width: 100%; height: auto; line-height: 0; position: relative; z-index: 2; margin: -1px 0; font-size: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: auto; margin-bottom: -2px; transform: translateY(1px); }
.hero .wave-divider { position: absolute; bottom: -2px; left: 0; right: 0; }

/* ---------- Line-art icon services row ---------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.5rem;
}
.icon-card { text-align: center; text-decoration: none; color: inherit; display: block; }
.icon-art { display: block; width: 96px; height: 96px; margin: 0 auto 1.1rem; transition: transform 0.2s ease; }
.icon-art svg { display: block; width: 96px; height: 96px; stroke: #0E345C; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.icon-card:hover .icon-art { transform: translateY(-6px); }
.icon-card:hover h3 { color: var(--blue); }
.icon-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; transition: color 0.15s ease; }
.icon-card p { font-size: 0.92rem; color: var(--muted); }
@media (max-width: 980px) { .icon-grid { grid-template-columns: repeat(3, 1fr); gap: 2.2rem 1.4rem; } }
@media (max-width: 700px) {
  .icon-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 460px; margin: 0 auto; }
  .icon-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-align: left;
    background: #FFFFFF !important;
    border: 1px solid rgba(14,52,92,0.10);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow);
  }
  .icon-card .icon-art { width: 58px; height: 58px; margin: 0; flex: none; }
  .icon-card .icon-art svg { width: 58px; height: 58px; }
  .icon-card h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
  .icon-card p { font-size: 0.88rem; }
}

/* ---------- Split sections (about / why) ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }
.split-head h2 { margin-bottom: 0; }
.split-head h2 span { display: block; }
.art-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  border: 1px solid rgba(14,52,92,0.08);
}
.art-card svg { display: block; width: 100%; height: auto; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: #FFFFFF;
  border: 1px solid rgba(14,52,92,0.10);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
}
.section-ice .card { border-color: rgba(14,52,92,0.08); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card .card-link {
  margin-top: 1.1rem;
  font-family: var(--accent-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: var(--blue);
  font-size: 1rem;
}
.card .card-link::after { content: " \2192"; }
.card .card-link:hover { color: var(--navy); }

/* ---------- Checklist ---------- */
.check-list { list-style: none; display: grid; gap: 0.9rem; }
.check-list li { padding-left: 2rem; position: relative; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.35em;
  width: 1.1rem; height: 1.1rem;
  background: var(--blue);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.section-navy .check-list li::before { background: var(--blue-light); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(124,197,238,0.25);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.step p { color: #C9DFF0; font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq-list details {
  background: #FFFFFF;
  border: 1px solid rgba(14,52,92,0.12);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
}
.faq-list summary {
  font-family: var(--body);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--blue);
}
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { margin-top: 0.8rem; color: var(--muted); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: #D6E9F7; max-width: 640px; margin-top: 0.8rem; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 1rem; color: #9FC4DE; }
.breadcrumbs a { color: var(--blue-light); text-decoration: none; }

/* ---------- Content pages / sidebar ---------- */
.content-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; padding: 3.5rem 0; }
@media (max-width: 900px) { .content-wrap { grid-template-columns: 1fr; } }
.content-main h2 { margin: 2rem 0 0.8rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main p, .content-main li { color: #33475B; }
.content-main ul { padding-left: 1.3rem; margin: 0.8rem 0 1.2rem; }
.content-main li { margin-bottom: 0.5rem; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.side-card {
  background: #FFFFFF;
  border: 1px solid rgba(14,52,92,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.side-card h3 { margin-bottom: 0.8rem; }
.side-card ul { list-style: none; }
.side-card li { border-bottom: 1px solid var(--ice); }
.side-card li:last-child { border-bottom: none; }
.side-card a { display: block; padding: 0.5rem 0; text-decoration: none; color: #33475B; font-size: 0.95rem; }
.side-card a:hover { color: var(--blue); }
.side-cta {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
}
.side-cta h3 { color: var(--white); }
.side-cta p { color: #C9DFF0; font-size: 0.92rem; margin: 0.5rem 0 1rem; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  background: #FFFFFF;
  border: 1px solid rgba(14,52,92,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}
.post-card:hover { transform: translateY(-4px); }
.post-card-top {
  background: linear-gradient(120deg, var(--navy-deep), var(--blue));
  min-height: 110px;
  position: relative;
  overflow: hidden;
}
.post-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.post-card-body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.post-meta { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.article-body { max-width: 780px; }
.article-body h2 { margin: 2.2rem 0 0.8rem; }
.article-body p, .article-body li { color: #33475B; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin: 0.8rem 0 1.2rem; }
.article-body .callout {
  background: #EDF5FB;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  margin: 1.4rem 0;
}

/* ---------- Forms ---------- */
.quote-form { display: grid; gap: 1.1rem; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.quote-form label { font-weight: 600; font-size: 0.92rem; color: var(--navy); display: block; margin-bottom: 0.3rem; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(14,52,92,0.25);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,143,213,0.18);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; font-weight: 600; }
.form-msg.ok { background: #E7F6EC; color: #14602F; border: 1px solid #9ED8B2; }
.form-msg.err { background: #FBECEC; color: #8C1D1D; border: 1px solid #EBB4B4; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(180deg, #1E8FD5 0%, #0F6BB0 100%) !important;
  color: #FFFFFF;
  padding: 3.5rem 0;
  overflow: hidden;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #EAF5FD; margin-top: 0.4rem; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #081F3A !important;
  color: #B9CFE2 !important;
  position: relative;
}
.site-footer::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #1E8FD5, #7CC5EE 45%, #1E8FD5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--accent-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #FFFFFF !important;
  font-size: 1.02rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  background: #1E8FD5;
  border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: #C7DAEA !important; text-decoration: none; font-size: 0.93rem; }
.footer-col a:hover { color: #7CC5EE !important; }
.footer-brand img { width: 150px; height: 150px; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; color: #B9CFE2 !important; }
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.3rem !important;
  color: #7CC5EE !important;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-nap { margin-top: 1rem; line-height: 1.8; }
.footer-h4-stacked { margin-top: 1.6rem; }
.footer-nap { color: #B9CFE2 !important; line-height: 1.9; margin-top: 0; }
.footer-nap strong { color: #FFFFFF; }
.footer-nap a { color: #7CC5EE !important; text-decoration: none; font-weight: 600; }
.footer-hours-title { margin-top: 1rem; font-weight: 700; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(124,197,238,0.18);
  padding: 1.4rem 0;
  font-size: 0.85rem;
  color: #8FAECB !important;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer-owner { color: #7CC5EE !important; font-weight: 600; }

/* ---------- Decorative elements ---------- */
.deco { position: absolute; pointer-events: none; z-index: 1; }
.deco svg { display: block; width: 100%; height: 100%; }
.has-deco { position: relative; overflow: hidden; }


.dash-frame { position: relative; }
.dash-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 3px dashed rgba(124,197,238,0.30);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.stripe-divider { height: 0; }
.wash-edge { position: relative; }

@media (max-width: 640px) {
  .cta-band-inner { flex-direction: column; text-align: center; }
}


/* ---------- Mobile polish ---------- */
@media (max-width: 640px) {
  h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2.2rem; }
  .head-rule::before { width: 90px; }

  .brand img { width: 64px; height: 64px; }

  .grid-2 { gap: 1.8rem; }
  .grid-3 { gap: 1.1rem; }
  .card { padding: 1.3rem; }

  .steps { gap: 1.1rem; }
  .step { padding: 1.4rem; }

  .btn { font-size: 1.05rem; padding: 0.75rem 1.5rem; }
  .hero .cta-row, .cta-band .cta-row { gap: 0.9rem; }

  .content-wrap { padding: 2.5rem 0; gap: 2rem; }
  .footer-grid { padding: 2.5rem 0 1.8rem; gap: 1.8rem; }
  .footer-bottom { justify-content: center; text-align: center; }

  .wave-divider svg { min-height: 60px; }
  .page-hero { padding: 2.5rem 0 3.2rem; }
}

/* keep waves crisp on very wide screens */
.wave-divider svg { min-height: 70px; }

/* ============================================================
   DARK MODE LOCKOUT
   Every surface and text color is asserted with literal values
   so forced-dark browsers and webviews cannot repaint anything.
   ============================================================ */
html, body { background: #FFFFFF !important; }
body, p, li, span, td, th { color: #1C2733; }
h1, h2, h3 { color: #0E345C !important; }
h1 em, h2 em { color: #1E8FD5 !important; }
.section { background-color: #FFFFFF !important; }
.section p { color: #33475B; }
.section-ice, .section-ice.section { background: #EDF5FB !important; }
.section-ice p, .section-ice li { color: #33475B !important; }
.section-navy h2, .section-navy h3, .section-navy .step h3 { color: #FFFFFF !important; }
.section-navy p, .section-navy li, .section-navy .step p { color: #C9DFF0 !important; }
.section-navy .eyebrow { color: #7CC5EE !important; }
.eyebrow { color: #1E8FD5; }
.muted, .card p, .icon-card p, .post-card-body p { color: #55677A !important; }
.card, .faq-list details, .side-card, .post-card, .art-card { background: #FFFFFF !important; }
.card h3, .icon-card h3, .post-card-body h3, .side-card h3, .faq-list summary { color: #0E345C !important; }
.side-cta { background: linear-gradient(180deg, #081F3A, #0E345C) !important; }
.side-cta h3 { color: #FFFFFF !important; }
.side-cta p { color: #C9DFF0 !important; }
.step { background: rgba(255,255,255,0.06) !important; }
.quote-form input, .quote-form select, .quote-form textarea { background: #FFFFFF !important; color: #1C2733 !important; }
.quote-form label { color: #0E345C !important; }
.site-header { background: #FFFFFF !important; }
.main-nav a { color: #0E345C; }
.main-nav .nav-cta { color: #FFFFFF !important; background: #1E8FD5 !important; }
.has-drop .drop { background: #FFFFFF !important; }
.hero h1 { color: #0E345C !important; }
.hero-sub { color: #33475B !important; }
.hero-chips a { color: #0E345C !important; background: rgba(255,255,255,0.85) !important; }
.page-hero { background: linear-gradient(180deg, #081F3A, #0E345C) !important; }
.page-hero h1 { color: #FFFFFF !important; }
.page-hero p { color: #D6E9F7 !important; }
.cta-band { background: linear-gradient(180deg, #1E8FD5 0%, #0F6BB0 100%) !important; }
.cta-band h2 { color: #FFFFFF !important; }
.cta-band p { color: #EAF5FD !important; }
.btn-primary { background: #1E8FD5 !important; color: #FFFFFF !important; }
.btn-navy { background: #0E345C !important; color: #FFFFFF !important; }
.btn-light { background: #FFFFFF !important; color: #0E345C !important; }
.content-main p, .content-main li, .article-body p, .article-body li { color: #33475B !important; }
.breadcrumbs, .breadcrumbs a { color: #9FC4DE !important; }
.article-body .callout { background: #EDF5FB !important; }

/* Re-assert inside a dark-scheme media query for engines that key off it */
@media (prefers-color-scheme: dark) {
  html, body { background: #FFFFFF !important; }
  body { color: #1C2733 !important; }
  .section { background-color: #FFFFFF !important; }
  .section-ice { background: #EDF5FB !important; }
  .site-header { background: #FFFFFF !important; }
  .site-footer { background: #081F3A !important; }
  .card, .faq-list details, .side-card, .post-card { background: #FFFFFF !important; }
  .icon-card { background: #FFFFFF; }
}
