/* Achour Healthcare Growth Advisors — shared stylesheet */

:root {
  --navy: #1B3A5F;
  --teal: #0FA3B1;
  --gold: #B8963E;
  --white: #FFFFFF;
  --light-gray: #F5F6F8;
  --text-dark: #1F2A33;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: 2.4rem; margin: 0 0 1rem; }
h2 { font-size: 1.9rem; margin: 0 0 1rem; }
h3 { font-size: 1.3rem; margin: 0 0 0.75rem; }

p { margin: 0 0 1rem; }

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section backgrounds */
.section { padding: 72px 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--white); }
.section--gray { background: var(--light-gray); }
.section--white { background: var(--white); }

.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section--navy .label,
.section--teal .label { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.88; text-decoration: none; }

.btn--teal { background: var(--teal); color: var(--white); }
.btn--navy-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--navy-outline:hover { background: rgba(255,255,255,0.1); }
.btn--white-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--white { background: var(--white); color: var(--navy); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Header / Nav */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo-text {
  color: var(--white);
  font-family: Georgia, serif;
  line-height: 1.1;
}
.logo-text a { color: var(--white); text-decoration: none; }
.logo-text .logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
}
.logo-text .logo-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: block;
  color: var(--gold);
}
.logo-img { height: 48px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--teal); }
.main-nav a.active { color: var(--teal); border-bottom: 2px solid var(--teal); padding-bottom: 4px; }
.main-nav .btn { margin-left: 6px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 14px;
  }
  .main-nav.open { display: flex; }
  .main-nav .btn { margin-left: 0; }
}

/* Hero */
.hero { padding: 96px 0 80px; }
.hero p.subtitle { font-size: 1.15rem; max-width: 720px; }

.hero-flex {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-flex .hero-copy { flex: 1 1 480px; }
.hero-flex .hero-image { flex: 1 1 380px; min-width: 280px; }
.hero-image img {
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  border: 4px solid rgba(255,255,255,0.08);
}

/* Split image/text sections (used throughout for imagery) */
.split {
  display: flex;
  gap: 44px;
  align-items: center;
  flex-wrap: wrap;
}
.split.reverse { flex-direction: row-reverse; }
.split .split-copy { flex: 1 1 440px; min-width: 280px; }
.split .split-image { flex: 1 1 380px; min-width: 260px; }
.split-image img {
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(27,58,95,0.18);
}

.section-image-banner {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(27,58,95,0.18);
  margin-bottom: 2rem;
}

@media (max-width: 700px) {
  .section-image-banner { height: 220px; }
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2rem;
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border: 1px solid #E3E7EC;
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  padding: 28px;
}
.card h3 { color: var(--navy); }
.card .learn-more { font-weight: 700; }

/* Two-card grid (workshops) */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .card-grid-2 { grid-template-columns: 1fr; }
}

/* Strategy strip / quote */
.strip-quote {
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  max-width: 820px;
  margin: 0 auto;
}
.strip-quote p:last-child { font-style: normal; font-size: 1rem; margin-top: 1rem; }

/* Scan list */
.scan-list {
  padding-left: 1.2rem;
}
.scan-list li { margin-bottom: 0.6rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 1.5rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
}
.step h4 { margin: 0 0 0.5rem; color: var(--navy); }

/* Callout box */
.callout {
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 24px 28px;
  background: var(--white);
}

/* Credentials list */
.credentials-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .credentials-list { grid-template-columns: 1fr; } }
.credentials-list li {
  background: var(--white);
  border-left: 4px solid var(--teal);
  padding: 14px 18px;
}

/* About headshot layout */
.about-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-flex .headshot {
  flex: 0 0 240px;
  border-radius: 6px;
  overflow: hidden;
}
.about-flex .about-copy { flex: 1 1 420px; min-width: 280px; }

/* Forms */
.contact-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #C9D0D9;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.section--navy .contact-form label { color: var(--white); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 24px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: var(--white); font-size: 0.92rem; }
.footer-nav a:hover { color: var(--teal); }
.footer-contact p { margin: 0 0 6px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-bottom a { color: rgba(255,255,255,0.75); }

/* Bottom CTA strip */
.bottom-cta { text-align: center; }
.bottom-cta h2 { font-size: 1.5rem; }
.bottom-cta .btn-row { justify-content: center; margin-top: 1.5rem; }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }

/* Legal pages (Terms, Privacy) */
.legal-content { max-width: 800px; }
.legal-content h2 { margin-top: 2.25rem; font-size: 1.25rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; }
.legal-content .legal-updated { color: #5b6b7a; font-size: 0.9rem; margin-bottom: 2rem; }
