/* ============================================
   Aurora Window Washing — Design Tokens
   Palette: clear sky-blue + slate + icy frost paper (glass/hard-water theme)
   Type: Plus Jakarta Sans (display) + Inter (body)
   Signature: sparkle/diamond mark evoking streak-free glass shine
   ============================================ */

:root {
  --ink: #1c2b36;
  --paper: #f2f7fa;
  --paper-dim: #e4eef3;
  --slate: #24384a;
  --slate-2: #35516a;
  --sky: #2f8fd1;
  --sky-dark: #1f6ba3;
  --frost: #bfe3f2;
  --line: #d3e4ec;
  --white: #ffffff;

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 6px;
  --max-w: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sky-dark); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--slate);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 0.6em;
  display: inline-block;
}

/* ---------- Sparkle signature motif ---------- */
.sparkle-mark {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
}
.sparkle-mark::before, .sparkle-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(0deg);
}
.sparkle-mark::after { transform: translate(-50%, -50%) rotate(90deg); }

.sparkle-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 3.2em 0 2.2em;
  color: var(--sky);
}
.sparkle-divider::before, .sparkle-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.sparkle-divider .sparkle-mark { width: 20px; height: 20px; }

/* ---------- Header ---------- */
header.site {
  background: var(--slate);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--sky);
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.brand .sparkle-mark { color: var(--frost); }

nav.primary { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.9rem; }
nav.primary a { color: var(--white); opacity: 0.88; text-decoration: none; }
nav.primary a:hover { opacity: 1; text-decoration: underline; }

.call-btn {
  background: var(--sky);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95rem;
}
.call-btn:hover { background: var(--sky-dark); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--slate) 0%, var(--slate-2) 100%);
  color: var(--white);
  padding: 60px 0 72px;
}
.hero .container { max-width: 820px; }
.hero h1 { color: var(--white); }
.hero p.lede { font-size: 1.15rem; color: #dcedf5; max-width: 62ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6em; }
.btn { display: inline-block; padding: 13px 24px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 0.98rem; }
.btn-primary { background: var(--sky); color: var(--white); }
.btn-primary:hover { background: var(--sky-dark); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ---------- Photo banner ---------- */
.photo-banner { background: var(--paper); }
.photo-banner img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

/* ---------- Sections ---------- */
main { display: block; }
.section { padding: 58px 0; }
.section.alt { background: var(--paper-dim); }
.section.dark { background: var(--slate); color: var(--white); }
.section.dark h2 { color: var(--white); }
.lead-copy { max-width: 74ch; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 2em; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.card h3 { margin-bottom: 0.4em; }
.card a.card-link { font-weight: 700; font-size: 0.92rem; text-decoration: none; }

/* FAQ */
details.faq { border-bottom: 1px solid var(--line); padding: 16px 0; }
details.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate);
  cursor: pointer;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before { content: "+ "; color: var(--sky); font-weight: 700; }
details.faq[open] summary::before { content: "\2212 "; }
details.faq p { margin-top: 0.8em; }

/* Info callout */
.callout {
  border-left: 4px solid var(--sky);
  background: var(--paper-dim);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.6em 0;
}
.callout p:last-child { margin-bottom: 0; }

/* Footer */
footer.site { background: var(--ink); color: #c2d3dc; padding: 46px 0 30px; font-size: 0.92rem; }
footer.site h3 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
footer.site a { color: #c2d3dc; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; margin-bottom: 30px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #2a3b47; padding-top: 20px; font-size: 0.82rem; color: #869aa5; }

/* CTA band */
.cta-band { background: var(--sky); color: var(--white); padding: 40px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.3em; }
.cta-band .btn-primary { background: var(--slate); color: var(--white); }
.cta-band .btn-primary:hover { background: #16222c; }

/* Utility */
.text-center { text-align: center; }
.small { font-size: 0.85rem; color: #566873; }

@media (max-width: 720px) {
  nav.primary { display: none; }
  .hero { padding: 46px 0 54px; }
}
