/* ============================================
   Long Point Wealth Management
   Website Styles
   ============================================ */

:root {
  --lp-indigo: #2B2D72;
  --body-gray: #666666;
  --dark-text: #333333;
  --background: #FFFFFF;
  --cream: #FAF9F5;
  --charcoal: #30302E;
  --gold: #C9A227;
  --light-border: #E8E8E8;
}

/* ---- Reset & Base ---- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--body-gray);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--lp-indigo);
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: 34px;
  margin-bottom: 28px;
}

h2 {
  font-size: 26px;
  margin-bottom: 20px;
  margin-top: 40px;
}

h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 24px;
  text-align: justify;
}

a {
  color: var(--lp-indigo);
  text-decoration: none;
}

a:hover {
  color: var(--dark-text);
}

/* ---- Header ---- */

header {
  padding: 30px 40px;
  text-align: center;
  border-bottom: 1px solid var(--light-border);
}

.logo {
  margin-bottom: 20px;
}

.logo a {
  display: inline-block;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

nav {
  margin-top: 16px;
}

nav a {
  color: var(--body-gray);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin: 0 18px;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

nav a:hover,
nav a.current {
  color: var(--lp-indigo);
}

/* ---- Hero Image ---- */

.hero {
  width: 100%;
  text-align: center;
  background: var(--background);
}

.hero img {
  max-width: 780px;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  display: inline-block;
  margin: 0 auto;
}

/* Credit line beneath each hero, in the layout L.C. Schiffenhaus used on his own
   note cards: place name on the left, his name in script on the right. Added
   2026-08-05 so the provenance is visible rather than buried in alt text. */
.hero-credit {
  max-width: 780px;
  margin: 0.5rem auto 0;
  padding: 0 0.15rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: #6b6b6b;
}

.hero-credit .place {
  text-align: left;
}

.hero-credit .by {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .hero-credit {
    font-size: 0.7rem;
  }
}

/* ---- Content ---- */

.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ---- Divider ---- */

.divider {
  width: 60px;
  height: 1px;
  background: var(--lp-indigo);
  margin: 40px 0;
  opacity: 0.3;
}

/* ---- Contact Form ---- */

.contact-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--light-border);
}

.contact-info p {
  text-align: left;
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 40px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body-gray);
  margin-bottom: 6px;
  margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--light-border);
  color: var(--dark-text);
  background: var(--background);
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lp-indigo);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  margin-top: 28px;
  padding: 14px 40px;
  background: var(--lp-indigo);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: var(--dark-text);
}

/* ---- Insights / Blog List ---- */

.insight-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--light-border);
}

.insight-item:first-child {
  padding-top: 0;
}

.insight-date {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.insight-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  color: var(--lp-indigo);
  margin-bottom: 10px;
  font-weight: 400;
}

.insight-excerpt {
  text-align: left;
  margin-bottom: 0;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lp-indigo);
}

/* ---- Article Page ---- */

.article-meta {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.article h1 {
  margin-bottom: 36px;
}

.article h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: 24px;
}

.article h3 {
  margin-top: 32px;
  font-size: 19px;
  color: var(--dark-text);
}

.article p {
  margin-bottom: 22px;
}

.article ul, .article ol {
  margin-bottom: 22px;
  padding-left: 28px;
}

.article li {
  margin-bottom: 8px;
}

.article blockquote {
  margin: 28px 0 28px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--lp-indigo);
  color: var(--dark-text);
  font-style: italic;
}

.article strong {
  color: var(--dark-text);
  font-weight: 600;
}

.article-footer {
  font-size: 13px;
  color: #999;
  text-align: left;
  line-height: 1.6;
}

.article-back {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---- Footer ---- */

footer {
  background: var(--charcoal);
  color: #999;
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  line-height: 2;
}

footer a {
  color: #999;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  color: #ccc;
}

.footer-links {
  margin-top: 12px;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  header {
    padding: 24px 20px;
  }

  .logo img {
    height: 64px;
  }

  nav a {
    margin: 0 10px;
    font-size: 11px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .content {
    padding: 40px 20px 60px;
  }
}

@media (max-width: 480px) {
  nav a {
    margin: 0 6px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .logo img {
    height: 54px;
  }

  h1 {
    font-size: 24px;
  }

}


/* lpwm:site-build */
.hp { position: absolute; left: -5000px; }
.form-note { font-size: 0.85rem; color: #666; margin-top: 0.75rem; }
.contact-info .hours { font-size: 0.9rem; color: #666; }
footer .footer-firm { margin-bottom: 0.6rem; line-height: 1.6; }
footer .footer-note { font-size: 0.8rem; color: #8a8a8a; max-width: 60ch;
  margin: 0 auto 0.9rem; line-height: 1.5; }
footer a { color: inherit; }


/* lpwm:fixes */
.notice-block { border-left: 3px solid #C9A227; padding-left: 1.25rem; margin: 1.5rem 0; }
.risk-note { font-size: 0.9rem; color: #666; }

.cta { margin: 1.75rem 0 0.5rem; }
.cta-button { display: inline-block; background: #2B2D72; color: #fff; text-decoration: none;
  padding: 0.75rem 1.6rem; font-size: 0.95rem; letter-spacing: 0.03em; border-radius: 2px; }
.cta-button:hover { background: #23255e; }
.cta-or { font-size: 0.9rem; color: #666; margin-top: 0.5rem; }

/* lpwm:mobile */
html, body { max-width: 100%; overflow-x: hidden; }
nav { display: flex; flex-wrap: wrap; justify-content: center; row-gap: 8px; }
img, table { max-width: 100%; }
table { display: block; overflow-x: auto; }
.cta-button { display: inline-block; max-width: 100%; box-sizing: border-box; }
@media (max-width: 480px) {
  nav a { margin: 0 8px; }
  .cta-button { width: 100%; text-align: center; padding: 0.9rem 1rem; }
  footer .footer-firm, footer .footer-note { padding: 0 12px; }
}
