/* ===== Smithson Growth Partners — site styles ===== */
:root {
  --navy: #1F3A5F;
  --teal: #2E8B8B;
  --gold: #C9A24B;
  --gray: #555555;
  --offwhite: #F7F6F2;
  --white: #FFFFFF;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--gray);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 14px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #b88f3a; text-decoration: none; }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); text-decoration: none; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #16293f; text-decoration: none; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--offwhite);
  border-bottom: 1px solid #e7e5dd;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.nav .logo img { height: 70px; width: auto; }
.nav .logo .logo-text {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
  color: var(--navy); font-size: 1.25rem; letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  color: var(--navy); font-size: 0.95rem; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-links a.active { color: var(--teal); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; color: var(--navy); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #1F3A5F 0%, #24496f 100%);
  color: var(--white); text-align: center;
  padding: 96px 24px;
}
.hero-logo {
  display: block; margin: 0 auto 34px;
  max-width: 580px; width: 90%; height: auto;
  background: var(--offwhite);
  border-radius: 16px;
  padding: 18px 26px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.28);
}
.hero h1 { color: var(--white); font-size: 2.6rem; max-width: 880px; margin: 0 auto 20px; }
.hero p { font-size: 1.2rem; max-width: 720px; margin: 0 auto 34px; color: #e8edf3; }
.hero .btn { margin: 6px 8px; }

/* ===== Sections ===== */
.section { padding: 76px 0; }
.section.alt { background: var(--offwhite); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head h2 { font-size: 2rem; margin-bottom: 14px; }
.section-head .rule { width: 64px; height: 3px; background: var(--gold); margin: 16px auto 0; border: 0; }
.section-head p { font-size: 1.08rem; }

.lead { font-size: 1.15rem; }

/* ===== Highlight cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border: 1px solid #ececec; border-radius: 10px;
  padding: 34px 28px; text-align: center;
  box-shadow: 0 4px 16px rgba(31,58,95,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(31,58,95,0.10); }
.card .icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--offwhite); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.5rem; font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 2px solid var(--gold);
}
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }

/* ===== Service blocks ===== */
.service { max-width: 820px; margin: 0 auto 40px; padding-bottom: 32px; border-bottom: 1px solid #ececec; }
.service:last-child { border-bottom: 0; }
.service h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 12px; }
.service h3 span { color: var(--teal); }
.service ul { margin: 14px 0 0 22px; }
.service ul li { margin-bottom: 6px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.pill {
  background: var(--offwhite); border: 1px solid var(--gold);
  color: var(--navy); border-radius: 30px; padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: 0.9rem;
}

/* ===== About ===== */
.about-intro { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; max-width: 980px; margin: 0 auto; }
.about-photo img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(31,58,95,0.18);
  border: 4px solid var(--white);
}
.about-intro h2 { font-size: 1.9rem; margin-bottom: 16px; }
.about-intro .rule { width: 64px; height: 3px; background: var(--gold); border: 0; margin: 0 0 18px; }
@media (max-width: 760px) {
  .about-intro { grid-template-columns: 1fr; gap: 26px; }
  .about-photo { max-width: 280px; margin: 0 auto; }
}
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 18px; }
.prose h3 { margin: 34px 0 14px; font-size: 1.3rem; }
.award-list { list-style: none; max-width: 760px; margin: 0 auto; }
.award-list li {
  padding: 14px 18px; margin-bottom: 12px; background: var(--offwhite);
  border-left: 4px solid var(--gold); border-radius: 4px;
}

/* ===== CTA band ===== */
.cta-band { background: var(--navy); color: var(--white); text-align: center; padding: 64px 24px; }
.cta-band h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 14px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 28px; color: #e8edf3; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; max-width: 980px; margin: 0 auto; }
.contact-info h3 { margin-bottom: 8px; }
.contact-info .item { margin-bottom: 22px; }
.contact-info .label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: var(--navy); display: block; }
form label { display: block; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; color: var(--navy); margin: 16px 0 6px; font-size: 0.95rem; }
form input, form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cfcdc5; border-radius: 6px;
  font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; color: var(--gray);
}
form input:focus, form textarea:focus { outline: none; border-color: var(--teal); }
form textarea { min-height: 130px; resize: vertical; }
form .btn { margin-top: 22px; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #cdd6e0; padding: 48px 24px 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.site-footer h4 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; }
.site-footer a { color: var(--gold); }
.footer-bottom { text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid #2f4a6b; font-size: 0.85rem; color: #9fb0c2; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0;
    border-top: 1px solid #e7e5dd; box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 16px; width: 100%; border-bottom: 1px solid #f0eee7; }
  .nav-links a.active { border-bottom: 1px solid #f0eee7; }
}
