/* style.css — Direct Point Benefits
   Mobile-first, senior-friendly (19px+ base), high contrast, no frameworks,
   no external fonts or CDNs. Single stylesheet for the whole site. */

:root {
  --navy: #1b2a4a;
  --navy-dark: #10192e;
  --navy-mid: #2e4270;
  --white: #ffffff;
  --off-white: #f6f7fb;
  --accent: #c1652f;
  --accent-dark: #9c4e21;
  --text: #1b2333;
  --text-muted: #4a5468;
  --border: #d7dbe6;
  --success-bg: #e6f4ea;
  --success-text: #1d5e2a;
  --focus-ring: #2e6bd6;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --content-max: 780px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --white: #12172a;
    --off-white: #1a2036;
    --text: #eef0f7;
    --text-muted: #b7bdd2;
    --border: #333c58;
    --success-bg: #17351f;
    --success-text: #8fd39c;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 19px;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-mid);
}

@media (prefers-color-scheme: dark) {
  a {
    color: #9fb4ea;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.25;
}

@media (prefers-color-scheme: dark) {
  h1, h2, h3 {
    color: #dfe6f7;
  }
}

h1 { font-size: 2rem; margin: 0 0 0.6em; }
h2 { font-size: 1.5rem; margin: 1.4em 0 0.6em; }
h3 { font-size: 1.2rem; margin: 1.2em 0 0.4em; }

p { margin: 0 0 1em; }

/* ---------------------------------------------------------------- */
/* Header */
/* ---------------------------------------------------------------- */

.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
}

.site-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  order: 3;
  width: 100%;
}

.site-nav a {
  color: #dfe6f7;
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.header-phone {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  min-height: 44px;
  justify-content: center;
}

.header-phone-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.header-phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 700px) {
  .site-nav {
    order: 2;
    width: auto;
  }
  .site-header-inner {
    flex-wrap: nowrap;
  }
}

/* ---------------------------------------------------------------- */
/* Main / sections */
/* ---------------------------------------------------------------- */

main {
  display: block;
}

.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px 20px;
}

/* ---------------------------------------------------------------- */
/* Hero (home page) */
/* ---------------------------------------------------------------- */

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 56px 20px;
}

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 1.9rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: #dbe2f5;
  max-width: 620px;
  margin: 0 auto 1.6em;
}

/* ---------------------------------------------------------------- */
/* Landing page (minimal nav) */
/* ---------------------------------------------------------------- */

.landing-hero {
  background: var(--off-white);
  padding: 40px 20px 60px;
}

.landing-hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.landing-hero h1 {
  font-size: 1.7rem;
}

.benefit-list {
  padding-left: 1.3em;
  margin: 1.4em 0;
}

.benefit-list li {
  margin-bottom: 0.8em;
  font-size: 1.05rem;
}

.landing-form-wrap {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  margin-top: 30px;
}

/* ---------------------------------------------------------------- */
/* Why-me planks */
/* ---------------------------------------------------------------- */

.plank {
  border-left: 5px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin-bottom: 26px;
}

/* ---------------------------------------------------------------- */
/* Buttons */
/* ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 14px 24px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-large {
  font-size: 1.2rem;
  padding: 16px 30px;
}

/* ---------------------------------------------------------------- */
/* Forms */
/* ---------------------------------------------------------------- */

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 460px;
}

.lead-form label {
  font-weight: 600;
  margin-top: 12px;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form textarea {
  font-size: 1.05rem;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  min-height: 48px;
  width: 100%;
  background: var(--white);
  color: var(--text);
}

.lead-form textarea {
  min-height: 90px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  margin-top: 16px;
  font-size: 0.98rem;
}

.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-required span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.consent-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.lead-form button {
  margin-top: 18px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.form-success {
  background: var(--success-bg);
  color: var(--success-text);
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 600;
}

/* Honeypot field: hidden from sighted users, still present for bots. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}

/* ---------------------------------------------------------------- */
/* Embeds (booking / video placeholders) */
/* ---------------------------------------------------------------- */

.embed-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 20px 0;
}

.embed-placeholder-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

@media (prefers-color-scheme: dark) {
  .embed-placeholder-title {
    color: #dfe6f7;
  }
}

.embed-video-frame {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 20px;
}

.embed-video-frame .embed-placeholder-title {
  color: var(--white);
}

/* ---------------------------------------------------------------- */
/* About page */
/* ---------------------------------------------------------------- */

.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.about-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}

.about-title {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.about-disclosure {
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 20px;
}

/* ---------------------------------------------------------------- */
/* Contact page */
/* ---------------------------------------------------------------- */

.contact-phone-big {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
}

.contact-phone-big a {
  color: var(--accent);
  text-decoration: none;
}

.contact-email a {
  font-size: 1.1rem;
}

/* ---------------------------------------------------------------- */
/* FAQ / guide article */
/* ---------------------------------------------------------------- */

.guide-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.guide-cta {
  text-align: center;
  margin: 30px 0;
}

.faq-list {
  margin-top: 10px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

/* ---------------------------------------------------------------- */
/* Legal pages */
/* ---------------------------------------------------------------- */

.legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-address {
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 30px;
}

/* ---------------------------------------------------------------- */
/* Footer */
/* ---------------------------------------------------------------- */

.site-footer {
  background: var(--navy-dark);
  color: #cfd6ea;
  margin-top: 40px;
}

.site-footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 30px 20px 40px;
  font-size: 0.9rem;
}

.site-footer a {
  color: #b7c6ee;
}

.footer-agency {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-links {
  margin: 16px 0;
}

.footer-disclaimer {
  color: #a9b2cc;
  font-size: 0.85rem;
}

.footer-copyright {
  color: #7e88a8;
  font-size: 0.8rem;
  margin-top: 16px;
}
