/* ============================================================================
   Winter Springs Roof Cleaning — stylesheet
   Direction #5: airy, clinical-calm, education-first. Maximum white space,
   light-weight geometric sans, a modular grid instead of a hero-photo spine.
   No webfonts (no external requests): the geometric-sans feel comes from a
   system font stack (Century Gothic / Futura / Avenir Next ship on most
   Mac and Windows machines; ui-sans-serif covers everything else).
   ============================================================================ */

:root {
  --teal:        #3E7C82;
  --teal-dark:   #2A565B;
  --teal-deep:   #1E3D41;
  --teal-tint:   #EAF2F2;
  --teal-tint-2: #F3F8F7;
  --grey:        #93938B;
  --grey-line:   #E4E1D8;
  --grey-line-2: #DAD7CC;
  --off-white:   #FBFAF7;
  --white:       #FFFFFF;
  --ink:         #2B302E;
  --ink-soft:    #5C625E;
  --algae:       #3B4A2E;
  --algae-dark:  #232B1C;
  --radius-sm:   10px;
  --radius:      18px;
  --radius-lg:   28px;
  --shadow-sm:   0 1px 2px rgba(43,48,46,.06);
  --shadow:      0 12px 32px -16px rgba(43,48,46,.18);
  --wrap:        1180px;
  --font: "Century Gothic", "CenturyGothic", "AppleGothic", "Futura",
          "Avenir Next", ui-sans-serif, system-ui, -apple-system,
          "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--teal-deep);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.06; letter-spacing: -.01em; }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.16; }
h3 { font-size: 22px; line-height: 1.3; font-weight: 500; }
h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); font-weight: 500; }
p { margin: 0 0 1.1em; }
.lede { font-size: 22px; line-height: 1.55; color: var(--ink-soft); font-weight: 400; }
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin: 0 0 14px;
}
.small { font-size: 15px; color: var(--ink-soft); }
.center { text-align: center; }
strong { font-weight: 600; }
.need { color: #A65B2E; font-weight: 500; }

/* ---------------------------------------------------------------- topbar */
.topbar {
  background: var(--teal-deep); color: #DCEAE9; font-size: 14.5px;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 28px; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 500; }

/* ----------------------------------------------------------------- header */
.site-head { background: var(--off-white); border-bottom: 1px solid var(--grey-line); }
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; gap: 24px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--teal-tint); display: flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 24px; height: 24px; stroke: var(--teal-dark); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .name { font-size: 19px; color: var(--teal-deep); font-weight: 500; }
.brand-text .sub { font-size: 12.5px; color: var(--grey); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; gap: 26px; flex-wrap: wrap; }
.nav a { color: var(--ink); text-decoration: none; font-size: 15.5px; }
.nav a:hover { color: var(--teal-dark); }

.head-cta { display: flex; align-items: center; gap: 16px; }
.head-phone { text-align: right; line-height: 1.25; }
.head-phone span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); }
.head-phone a { font-size: 18px; font-weight: 500; color: var(--teal-deep); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  border-radius: 999px; font-size: 15.5px; font-weight: 500; text-decoration: none;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-teal { background: var(--teal-dark); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); color: #fff; }
.btn-line { background: transparent; border-color: var(--teal-dark); color: var(--teal-dark); }
.btn-line:hover { background: var(--teal-tint); color: var(--teal-deep); }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* mobile nav toggle-free: nav wraps, hidden on very small screens */
.nav-mobile-hide { }
@media (max-width: 760px) {
  .nav { display: none; }
  .head-phone { display: none; }
}

/* ------------------------------------------------------------------- hero */
.hero { padding: 72px 0 88px; background: var(--off-white); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-facts { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 40px; }
.hero-facts div { min-width: 130px; }
.hero-facts .num { display: block; font-size: 28px; color: var(--teal-deep); font-weight: 500; }
.hero-facts .lab { font-size: 13.5px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------- lens graphic */
.lens-wrap { display: flex; justify-content: center; }
.lens {
  width: 100%; max-width: 380px; aspect-ratio: 1/1; border-radius: 50%;
  border: 10px solid var(--white); box-shadow: 0 0 0 1px var(--grey-line-2), var(--shadow);
  overflow: hidden; position: relative; background: #C9C2A8;
}
.lens svg { width: 100%; height: 100%; display: block; }
.lens-caption { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }
.lens-crosshair { position: absolute; inset: 0; pointer-events: none; }

/* ------------------------------------------------------------- sections */
section { padding: 76px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); }
.section-tint { background: var(--teal-tint-2); }
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ------------------------------------------------------------ card grid */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--radius);
  padding: 32px 28px;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--teal-dark); }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin: 0; padding-left: 20px; }
.card li { margin-bottom: 6px; }

/* ---------------------------------------------------------------- module (education-first blocks) */
.module {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--grey-line);
}
.module:last-child { border-bottom: none; }
.module.reverse { grid-template-columns: 1.05fr .95fr; }
.module.reverse .module-media { order: 2; }
@media (max-width: 860px) {
  .module, .module.reverse { grid-template-columns: 1fr; }
  .module.reverse .module-media { order: 0; }
}
.module-media { display: flex; justify-content: center; }

/* -------------------------------------------------------------- streak module (signature) */
.streak-panel {
  background: var(--teal-deep); color: #EAF2F2; border-radius: var(--radius-lg);
  padding: 52px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center;
}
.streak-panel h2, .streak-panel h3 { color: #fff; }
.streak-panel p { color: #C7DBDA; }
.streak-panel .eyebrow { color: #8FD3CE; }
@media (max-width: 860px) { .streak-panel { grid-template-columns: 1fr; padding: 36px 26px; } }

/* --------------------------------------------------------------- table */
.table-wrap { overflow-x: auto; border: 1px solid var(--grey-line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 560px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--grey-line); vertical-align: top; }
thead th { background: var(--teal-tint-2); color: var(--teal-deep); font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
tbody tr:last-child td { border-bottom: none; }
td.good { color: var(--teal-dark); font-weight: 500; }
td.bad { color: #A65B2E; font-weight: 500; }

/* ----------------------------------------------------------------- FAQ */
.faq details {
  border-bottom: 1px solid var(--grey-line); padding: 20px 0;
}
.faq details:first-child { border-top: 1px solid var(--grey-line); }
.faq summary {
  cursor: pointer; font-size: 18px; font-weight: 500; color: var(--teal-deep);
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--teal); flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { margin: 14px 0 0; color: var(--ink-soft); font-size: 16.5px; }

/* --------------------------------------------------------------- lists */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { display: flex; gap: 12px; margin-bottom: 14px; }
.check-list svg { flex: none; width: 20px; height: 20px; stroke: var(--teal-dark); margin-top: 2px; }

/* ------------------------------------------------------------- neighborhoods */
.hood-card { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--radius); padding: 26px; }
.hood-card h3 { margin-bottom: 6px; font-size: 19px; }
.hood-tag { display: inline-block; font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--teal); background: var(--teal-tint); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
.hood-card p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 0; }

/* ------------------------------------------------------------------ CTA band */
.cta-band { background: var(--teal-dark); color: #fff; padding: 64px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D9EAE9; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .btn-teal { background: #fff; color: var(--teal-deep); }
.cta-band .btn-teal:hover { background: #EAF2F2; }
.cta-band .btn-line { border-color: #fff; color: #fff; }
.cta-band .btn-line:hover { background: rgba(255,255,255,.12); color: #fff; }

/* --------------------------------------------------------------- page head */
.page-head { padding: 56px 0 20px; background: var(--off-white); }
.crumbs { font-size: 14px; color: var(--grey); margin-bottom: 18px; }
.crumbs a { color: var(--grey); }

/* ------------------------------------------------------------------ prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.5em; }
.prose h3 { margin-top: 1.4em; color: var(--teal-dark); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.callout {
  background: var(--teal-tint-2); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px; margin: 28px 0; font-size: 16.5px; color: var(--ink-soft);
}
.callout strong { color: var(--teal-deep); }
.source-note { font-size: 13.5px; color: var(--grey); margin-top: 6px; }

/* --------------------------------------------------------------- testimonial-empty */
.empty-note {
  border: 1px dashed var(--grey-line-2); border-radius: var(--radius); padding: 32px;
  text-align: center; color: var(--ink-soft); background: var(--white);
}

/* -------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--grey-line); }
.info-row svg { flex: none; width: 22px; height: 22px; stroke: var(--teal-dark); margin-top: 2px; }
.info-row:last-child { border-bottom: none; }

/* ----------------------------------------------------------------- footer */
.site-foot { background: var(--teal-deep); color: #C7DBDA; padding: 64px 0 28px; }
.site-foot h4 { color: #8FD3CE; }
.site-foot a { color: #E5F0EF; }
.site-foot .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 860px) { .site-foot .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-foot .cols { grid-template-columns: 1fr; } }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot .brand-text .name { color: #fff; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; font-size: 14px; color: #A9C4C1; }
.foot-legal p { margin: 0 0 10px; }
.foot-legal a { color: #C7DBDA; }

/* -------------------------------------------------------------------- 404 */
.notfound { padding: 120px 0; text-align: center; }
.notfound .big { font-size: 96px; color: var(--teal-tint); font-weight: 500; }

/* --------------------------------------------------------------- utility */
.mt-0 { margin-top: 0; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
