
:root {
  --navy: #08284a;
  --navy-2: #123d66;
  --slate: #627892;
  --teal: #78aaa4;
  --teal-dark: #4d8881;
  --gold: #c79a3d;
  --gold-dark: #a77c24;
  --cream: #f8f7f3;
  --cream-2: #f0ede6;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5b6679;
  --border: #d7dde5;
  --shadow: 0 16px 38px rgba(8, 40, 74, .10);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
a { color: var(--navy-2); }
a:hover { color: var(--gold-dark); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--navy);
  color: white;
  padding: .5rem .75rem;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 243, .96);
  border-bottom: 1px solid rgba(8,40,74,.12);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img {
  display: block;
  width: 172px;
  height: auto;
  mix-blend-mode: multiply;
}
.site-nav { display: flex; align-items: center; }
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  padding: .55rem .8rem;
  border-radius: 999px;
  font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a, .dropdown-toggle {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  padding: .55rem .62rem;
  border-radius: 999px;
  font-size: .92rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active, .dropdown-toggle:hover {
  background: rgba(199,154,61,.16);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: .45rem;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; border-radius: 10px; padding: .7rem .85rem; }

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(120,170,164,.22), transparent 32%),
    linear-gradient(135deg, rgba(8,40,74,.96), rgba(18,61,102,.90)),
    var(--navy);
  color: white;
  padding: 6.2rem 1.25rem 5.2rem;
}
.home-hero { padding: 6.8rem 1.25rem 5.8rem; }
.hero-compact { padding: 4.75rem 1.25rem 4.1rem; }
.hero-content { max-width: var(--max); margin: 0 auto; }
.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: center;
  gap: 2rem;
}
.hero-logo-card, .branch-hero-logo {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
}
.hero-logo-card img, .branch-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.eyebrow, .section-kicker, .branch-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  font-weight: 800;
  margin: 0 0 .8rem;
}
.hero h1 {
  margin: 0;
  max-width: 960px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.1vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero-subtitle {
  max-width: 820px;
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  color: rgba(255,255,255,.90);
  margin: 1.25rem 0 0;
}
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.button-row.center { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: .82rem 1.15rem;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(199,154,61,.25);
}
.button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.70); }
.button.light { background: white; color: var(--navy); }

.section { padding: 4.1rem 1.25rem; }
.muted-section { background: var(--cream-2); }
.container { max-width: var(--max); margin: 0 auto; }
.section-header { max-width: 840px; margin-bottom: 2rem; }
.section-header h2, .text-image-row h2, .founder-row h2, .form-wrap h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.section-header p, .text-image-row p, .founder-row p { font-size: 1.05rem; color: var(--muted); }
.text-image-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 2rem;
  align-items: center;
}
.side-logo, .stat-panel, .wide-graphic {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.side-logo { margin: 0; padding: 1.4rem; }
.side-logo img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.stat-panel { padding: 2rem; border-top: 6px solid var(--gold); }
.stat-panel h3 {
  margin: 0 0 .7rem;
  color: var(--navy);
  font-size: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
}
.wide-graphic { margin: 0; overflow: hidden; padding: 1rem; }
.wide-graphic img { width: 100%; height: auto; display: block; border-radius: 16px; }

.branch-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.branch-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 1.1rem;
  align-items: center;
}
.branch-card img {
  width: 100%;
  border-radius: 16px;
  mix-blend-mode: multiply;
}
.branch-card h3 {
  margin: 0 0 .25rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}
.meaning { color: var(--navy-2); font-weight: 800; margin: 0 0 .5rem; }
.text-link {
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.text-link:hover { color: var(--gold-dark); }

.card-grid { display: grid; gap: 1rem; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .contact-card, .person-card, .mini-card, .involvement-card, .list-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.card, .contact-card, .person-card, .mini-card { padding: 1.45rem; }
.card h3, .contact-card h2, .person-card h2 {
  color: var(--navy);
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.mini-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199,154,61,.18);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: .8rem;
}
.mini-card p { margin: 0; font-weight: 800; color: var(--navy); }

.branch-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 2rem;
  align-items: center;
}
.branch-hero-logo { padding: 1.2rem; }
.branch-hero-logo img { max-height: 360px; object-fit: contain; }

.founder-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: center;
}
.headshot {
  width: 100%;
  max-width: 270px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.1rem;
}
.featured-person {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.4rem;
  align-items: center;
}
.person-card h2 { white-space: nowrap; font-size: 1.6rem; }
.role { color: var(--navy-2); font-weight: 800; }

.involvement-list { display: grid; gap: 1.2rem; }
.involvement-card {
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1.4rem;
  align-items: center;
  scroll-margin-top: 110px;
}
.involvement-card img { width: 100%; border-radius: 16px; mix-blend-mode: multiply; }
.involvement-card h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 .5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.contact-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: .8rem;
  mix-blend-mode: multiply;
}
.form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: .35rem;
  font-weight: 800;
  color: var(--navy);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .8rem .9rem;
  font: inherit;
  background: white;
}

.list-card { padding: 1.4rem; }
.columns ul {
  columns: 2;
  column-gap: 2rem;
}
.small-note { font-size: .95rem; color: var(--muted); }

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  text-align: center;
  padding: 4rem 1.25rem;
}
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: white;
}
.cta-band p {
  max-width: 760px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
}

.site-footer {
  background: var(--navy);
  color: white;
  padding: 3rem 1.25rem 1.25rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr .8fr .8fr 1fr;
  gap: 1.4rem;
}
.footer-brand {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: .9rem;
  align-items: start;
}
.footer-brand img {
  width: 90px;
  background: white;
  border-radius: 14px;
  padding: .4rem;
}
.site-footer h2, .site-footer h3 { margin: 0 0 .6rem; color: white; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.78); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 1rem;
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: .6rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border-radius: 12px; margin-top: .2rem; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .split-hero, .branch-hero-content, .text-image-row, .founder-row, .form-wrap {
    grid-template-columns: 1fr;
  }
  .branch-card-grid, .card-grid.three, .card-grid.two, .contact-grid, .people-grid, .icon-grid {
    grid-template-columns: 1fr;
  }
  .branch-card, .involvement-card, .featured-person {
    grid-template-columns: 1fr;
  }
  .branch-card img, .involvement-card img { max-width: 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand img { width: 145px; }
  .hero { padding: 4.3rem 1rem 3.8rem; }
  .section { padding: 3rem 1rem; }
  .columns ul { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-template-columns: 70px 1fr; }
  .footer-brand img { width: 70px; }
  .person-card h2 { white-space: normal; }
}


/* Refinements added after first site review */
.home-hero h1 {
  font-size: clamp(1.85rem, 3.55vw, 3.45rem);
  max-width: 900px;
}

.nav-links a, .dropdown-toggle {
  font-size: .88rem;
  padding-left: .5rem;
  padding-right: .5rem;
}

.insight-list {
  display: grid;
  gap: 1.2rem;
}

.insight-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.insight-date {
  border-radius: 18px;
  background: rgba(199,154,61,.15);
  color: var(--navy);
  padding: 1rem;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

.insight-card h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 .5rem;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.insight-meta {
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 .8rem;
}

.article-body {
  max-width: 850px;
}

.article-body p {
  font-size: 1.08rem;
  color: var(--ink);
}

.article-placeholder {
  border-left: 6px solid var(--gold);
  background: white;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 640px) {
  .insight-card {
    grid-template-columns: 1fr;
  }
}


.post-format-guide {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.article-body {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.article-body p {
  margin: 0 0 1.2rem;
}

.article-body .insight-meta {
  color: var(--navy-2);
  font-weight: 800;
  margin-bottom: 1.6rem;
}


.profile-photo {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.person-card.with-photo {
  display: block;
}


.footer-support-button {
  display: inline-flex;
  margin-top: .55rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 900;
}

.footer-support-button:hover {
  background: #ffffff;
  color: var(--navy) !important;
}


.footer-support-center {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-support-center .footer-support-button {
  margin-top: 0;
}
