/* Prestige Pools — v1 landing page. Mobile-first, no framework, no build step.
   Single accent color, system font stack, big above-the-fold call button. */

:root {
  --accent: #1CA3DE;       /* brand aqua (matches logo) */
  --accent-dark: #0B3C5D;  /* brand navy (matches logo) */
  --ink: #14202a;
  --muted: #5b6b76;
  --bg: #f4fafc;
  --card: #ffffff;
  --max: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

.site-header {
  background: var(--accent-dark);
  color: #fff;
  padding: 0.75rem 1.25rem;
}
.brand-logo {
  display: block;
  height: 2.5rem;
  width: auto;
}

main { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}
.hero h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 auto 1.75rem;
  max-width: 36rem;
}

/* The whole point of v1: a big, thumb-friendly click-to-call button. */
.call-button {
  display: inline-block;
  width: 100%;
  max-width: 26rem;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(10, 126, 164, 0.35);
}
.call-button:active { background: var(--accent-dark); }
.call-hint { color: var(--muted); font-size: 0.9rem; margin: 0.6rem 0 0; }

section.services, section.area {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 0 0 1.5rem;
  box-shadow: 0 1px 4px rgba(20, 32, 42, 0.06);
}
section h2 { font-size: 1.3rem; margin: 0 0 0.75rem; }
.services ul { margin: 0; padding-left: 1.25rem; }
.services li { margin: 0.3rem 0; }

/* v2: quote/contact form. Same card treatment as the other sections. */
section.contact {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 0 0 1.5rem;
  box-shadow: 0 1px 4px rgba(20, 32, 42, 0.06);
}
section.contact > p { color: var(--muted); margin: 0 0 1.25rem; }
#quote-form { display: flex; flex-direction: column; gap: 1rem; }
#quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}
#quote-form .optional { font-weight: 400; color: var(--muted); }
#quote-form input,
#quote-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.8rem;
  border: 1px solid #c7d3dc;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--ink);
}
#quote-form input:focus,
#quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(28, 163, 222, 0.2);
}
.submit-button {
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  padding: 0.9rem 1.25rem;
  cursor: pointer;
}
.submit-button:active { background: var(--accent-dark); }
.submit-button:disabled { opacity: 0.6; cursor: progress; }
.form-status { margin: 0; font-weight: 600; font-size: 0.95rem; }
.form-status[data-state="pending"] { color: var(--muted); }
.form-status[data-state="success"] { color: #1a7f37; }
.form-status[data-state="error"] { color: #c0392b; }

.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 2rem 1.25rem 2.5rem;
}
.site-footer a { color: var(--accent-dark); }

@media (min-width: 600px) {
  .hero h1 { font-size: 2.4rem; }
}
