/* ==========================================================================
   Value Window Washing — styles
   Palette: navy #0A1A4F · blue #1E6FD9 · sky tint #EEF4FC · ink #1B2437
   Type:    headings match the logo font ("Horizon - Wide Sans Serif" by
   Alberto Fontense, the font Canva calls Horizon). Until the purchased file
   is added, Archivo Expanded Black (Google Fonts) stands in — nearly the
   same extra-wide heavy look. Body: Manrope.

   TO USE THE REAL LOGO FONT: buy "Horizon - Wide Sans Serif" on Creative
   Market, save it as fonts/Horizon.otf, then uncomment this block:

   @font-face {
     font-family: "Horizon";
     src: url("fonts/Horizon.otf") format("opentype");
     font-weight: 400 900;
     font-style: normal;
     font-display: swap;
   }
   ========================================================================== */

:root {
  --navy: #0A1A4F;
  --navy-deep: #071238;
  --logo-navy: #000042;
  --blue: #1E6FD9;
  --blue-dark: #1858AC;
  --sky: #EEF4FC;
  --ink: #1B2437;
  --slate: #4B5871;
  --line: #D9E2EF;
  --white: #FFFFFF;
  --radius: 10px;
  --font-display: "Horizon", "Archivo", "Arial Black", sans-serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h2 { font-size: clamp(1.15rem, 3vw, 1.6rem); color: var(--navy); }
h3, h4 { font-family: var(--font-body); font-weight: 800; line-height: 1.3; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: var(--blue-dark); }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
html { scroll-padding-top: 5.5rem; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 0.5rem; top: -3.5rem; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius); text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  min-height: 44px;
}
.btn-solid { background: var(--blue); color: #fff; }
.btn-solid:hover { background: var(--blue-dark); }
.btn-lg { padding: 0.9rem 1.7rem; font-size: 1.05rem; }
.btn-outline { border-color: var(--blue); color: var(--blue-dark); background: transparent; }
.btn-outline:hover { background: var(--sky); }

/* ---- Eyebrow label ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin: 0 0 0.75rem;
}
/* small window-pane mark before every eyebrow */
.eyebrow::before {
  content: "";
  width: 12px; height: 12px;
  flex: none;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 2px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.eyebrow-light { color: #9FC2F2; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-mark { width: 74px; height: auto; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--logo-navy);
  line-height: 1.15;
}
.brand-name span { color: inherit; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  min-height: 44px;
}
.nav-toggle-bar {
  width: 18px; height: 2px; background: currentColor; position: relative;
}
.nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle-bar::before { top: -5px; }
.nav-toggle-bar::after { top: 5px; }

/* narrow phones: the house mark alone keeps the header on one clean row
   (the full logo lockup sits right below in the hero) */
@media (max-width: 500px) {
  .brand-name {
    position: absolute; width: 1px; height: 1px;
    clip-path: inset(50%); overflow: hidden; white-space: nowrap;
  }
  .brand-mark { width: 64px; }
}

.nav-menu {
  display: none;
  width: 100%;
  padding-bottom: 0.75rem;
}
.nav-menu.is-open { display: block; }
.nav-links {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 0.7rem 0.25rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-links a:hover { color: var(--blue-dark); }
.nav-cta { text-align: center; display: block; }

/* ---- Social icon links (nav + footer) ---- */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--navy);
}
.social-link:hover { color: var(--blue-dark); background: var(--sky); }
.nav-social {
  display: flex;
  gap: 0.15rem;
  margin: 0.35rem 0 0.85rem;
}

@media (min-width: 800px) {
  .nav { flex-wrap: nowrap; }
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    width: auto;
    padding-bottom: 0;
  }
  .nav-links {
    display: flex;
    gap: 1.5rem;
    margin: 0;
  }
  .nav-links a { border-bottom: none; padding: 0.5rem 0; }
  .nav-cta { display: inline-block; }
  .nav-social { margin: 0; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  gap: 2.5rem;
}
.hero-logo {
  width: min(240px, 55%);
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: #fff;
  max-width: 18ch;
}
.hero-sub {
  font-size: 1.1rem;
  color: #C9D6EE;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 1.75rem 0 2.5rem;
}
/* temporary $99 promo badge pinned to the hero CTA */
.cta-wrap { position: relative; display: inline-block; }
.promo-badge {
  position: absolute;
  top: -0.85rem;
  right: -1rem;
  background: #C8102E;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  transform: rotate(4deg);
  box-shadow: 0 2px 8px rgba(7, 18, 56, 0.35);
  pointer-events: none;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0;
  min-height: 44px;
}
.hero-phone svg { color: #7FA9E8; }
.hero-phone:hover strong { text-decoration: underline; }
.hero-photo {
  align-self: center;
}
.hero-photo img {
  border-radius: var(--radius);
  border: 6px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 30%;
  max-height: 480px;
}

@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3.5rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust {
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}
.trust-items {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}
.trust-items li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.trust-items svg { color: var(--blue); flex: none; margin-top: 0.15rem; }
.trust-items h3 { margin: 0 0 0.2rem; color: var(--navy); font-size: 1.02rem; }
.trust-items p { margin: 0; color: var(--slate); font-size: 0.95rem; }

@media (min-width: 700px) {
  .trust-items { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 3.5rem 0; }
.section-tint { background: var(--sky); }
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-lead { color: var(--slate); max-width: 55ch; }

@media (min-width: 800px) {
  .section { padding: 5rem 0; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid { display: grid; gap: 2.5rem; }

.service-core {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.1rem;
  margin: 1.25rem 0 2.25rem;
}
.service-core h3 { color: #fff; font-size: 1.15rem; }
.service-core p { color: #C9D6EE; margin-bottom: 0.25rem; }

.addons-title { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.25rem; }
.addons-lead { color: var(--slate); margin-bottom: 1.25rem; }
.addon-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.addon-cards li {
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem 0.85rem;
}
.addon-cards h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.3rem; }
.addon-cards p { color: var(--slate); font-size: 0.95rem; margin: 0; }

.services-photo { margin: 0; }
.services-photo img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 12%;
}
.services-photo figcaption {
  font-size: 0.9rem;
  color: var(--slate);
  margin-top: 0.6rem;
}

@media (min-width: 800px) {
  .services-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ==========================================================================
   How to count
   ========================================================================== */
.count-grid { display: grid; gap: 2.5rem; }
.count-rule {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  max-width: 30ch;
  line-height: 1.4;
}
.count-copy p:not(.count-rule):not(.eyebrow) { color: var(--slate); max-width: 50ch; }

.count-figure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  align-content: center;
}
.count-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 0.75rem 0.75rem;
  text-align: center;
}
.count-card svg { width: 100%; max-width: 110px; margin: 0 auto 0.5rem; }
.count-card p { margin: 0; line-height: 1.35; }
.count-card strong { display: block; color: var(--navy); font-size: 0.95rem; }
.count-card span { display: block; color: var(--slate); font-size: 0.8rem; margin-top: 0.15rem; }

@media (max-width: 560px) {
  .count-figure { grid-template-columns: 1fr; max-width: 260px; margin-inline: auto; }
}
@media (min-width: 800px) {
  .count-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-cards {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review-card .stars {
  color: #E8A716;
  letter-spacing: 0.15em;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
.review-card blockquote { margin: 0 0 1rem; }
.review-card blockquote p { margin: 0; color: var(--ink); }
.review-card cite {
  font-style: normal;
  font-weight: 800;
  color: var(--navy);
}
/* third slot: link card to the Google Business Profile reviews */
.review-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  text-decoration: none;
  background: var(--navy);
  border-color: var(--navy);
}
.review-cta .stars { color: #F4C34E; }
.review-cta-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
.review-cta-link {
  color: #9FC2F2;
  font-weight: 700;
  font-size: 0.9rem;
}
.review-cta:hover { background: var(--navy-deep); }
.review-cta:hover .review-cta-link { text-decoration: underline; }

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

/* ==========================================================================
   Before & after
   ========================================================================== */
.ba-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.ba-pair { margin: 0; }
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.ba-shot { position: relative; }
/* all four photos share one crop ratio so the grid reads as a matched set */
.ba-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: var(--radius);
}
.ba-label {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.ba-label-after { background: var(--blue); }

@media (min-width: 700px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
}

/* ==========================================================================
   Crew strip
   ========================================================================== */
.crew { background: var(--navy-deep); }
.crew-strip {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}
.crew-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.crew-strip img:first-child { object-position: 70% 25%; }
.crew-strip img:last-child { object-position: 50% 30%; }
@media (min-width: 700px) {
  .crew-strip img { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Referral program
   ========================================================================== */
.referral-tiers {
  list-style: none;
  margin: 2rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.referral-tiers li {
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tier-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.tier-reward {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--blue-dark);
  margin: 0.25rem 0 0.1rem;
}
.tier-detail { color: var(--ink); font-weight: 500; }
.referral-fineprint {
  font-size: 0.85rem;
  color: var(--slate);
  max-width: 72ch;
  margin: 0;
}

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

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  background: var(--navy);
  color: #fff;
}
.contact-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  display: grid;
  gap: 2.5rem;
}
.contact h2 { color: #fff; max-width: 26ch; }
.contact-copy p { color: #C9D6EE; max-width: 50ch; }
.contact-area strong { color: #fff; font-weight: 700; }

.contact-actions {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: #fff;
}
.contact-card:hover { background: rgba(255, 255, 255, 0.12); }
.contact-card svg { grid-row: span 2; color: #7FA9E8; }
.contact-card-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9FC2F2;
  font-weight: 700;
}
.contact-card-value {
  font-size: 1.25rem;
  font-weight: 800;
}
.contact-card-email { font-size: 0.92rem; overflow-wrap: anywhere; word-break: normal; }

@media (min-width: 800px) {
  .contact-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding: 5rem 1.25rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: #A9B8D8;
  font-size: 0.95rem;
}
.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}
.site-footer p { margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.35rem 0 !important;
  font-weight: 700;
}
.footer-links span { color: #5A6B96; }
@media (max-width: 500px) {
  .footer-links { flex-direction: column; gap: 0.35rem; }
  .footer-links span { display: none; }
}
.footer-copyright { margin-top: 1.25rem !important; font-size: 0.85rem; color: #7787AF; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0;
}
.footer-social .social-link { color: #A9B8D8; }
.footer-social .social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
