:root {
  --navy: #1B4332;
  --navy-light: #2D6A4F;
  --gold: #B8912F;
  --gold-light: #C9A44D;
  --bg: #FDFBF3;
  --text: #3A3A34;
  --muted: #746F5E;
  --on-dark: #DCE3D7;
  --hair: #E4DFCF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; }

/* Header */
header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid var(--hair);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo span { color: var(--gold-light); }
.logo-img { height: 52px; width: auto; display: block; }
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav a {
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding-bottom: 4px;
}
nav a:hover { color: var(--gold); }
nav a.active {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  font-weight: bold;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero (home) */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
  padding: 90px 24px 100px;
}
.hero .eyebrow {
  color: var(--gold-light);
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto 22px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--on-dark);
  max-width: 620px;
  margin: 0 auto 34px;
}
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: bold;
  padding: 14px 34px;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(201,151,31,0.15); }

/* Page hero (internal pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.page-hero .eyebrow {
  color: var(--gold-light);
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero h1 { font-size: 2rem; }
.page-hero p {
  color: var(--on-dark);
  max-width: 620px;
  margin: 12px auto 0;
}

/* Section generic */
section { padding: 80px 24px; }
.section-title {
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 2rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}
.rule {
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 40px;
}

/* About */
.about { background: #fff; }
.about-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
  font-size: 1.1rem;
}
.about-inner p { margin-bottom: 20px; }

/* Home highlights */
.highlights { background: #fff; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.highlight-card {
  text-align: center;
  padding: 34px 24px;
  border: 1px solid #eee2;
  border-radius: 6px;
  background: var(--bg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.highlight-card h3 { color: var(--navy); margin: 10px 0 10px; font-size: 1.2rem; }
.highlight-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.highlight-card .num {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  align-items: center; justify-content: center;
  font-weight: bold;
}
.link-arrow { color: var(--gold); font-weight: bold; font-size: 0.9rem; }

/* Pillars */
.pillars { background: #fff; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
.pillar-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
}
.pillar-item:nth-last-child(2), .pillar-item:last-child { border-bottom: none; }
.pillar-icon {
  flex: none;
  width: 58px;
  height: 58px;
  color: var(--navy);
}
.pillar-item.gold .pillar-icon { color: var(--gold); }
.pillar-item h4 { color: var(--navy-light); font-size: 1.05rem; margin-bottom: 4px; }
.pillar-item.gold h4 { color: var(--gold); }
.pillar-item p { color: var(--text); font-size: 0.92rem; }

/* Services */
.services { background: var(--bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 30px 28px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.97rem; }

.engagement-note {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 28px 32px;
  max-width: 1000px;
  margin: 0 auto 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.engagement-note-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}
.engagement-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.engagement-option { text-align: center; }
.engagement-option h5 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.engagement-option p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.engagement-note-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}

/* Why section */
.why { background: var(--navy); color: #fff; text-align: center; }
.why .section-title { color: #fff; }
.why-inner { max-width: 720px; margin: 0 auto; color: var(--on-dark); font-size: 1.08rem; }

/* Contact */
.contact { background: #fff; text-align: center; }
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid #e8e4da;
  border-radius: 6px;
  padding: 44px 36px;
}
.contact-card p { margin-bottom: 8px; color: var(--muted); }
.contact-email {
  display: inline-block;
  margin-top: 18px;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: bold;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}
.contact-email:hover { color: var(--gold); }
.contact-details {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #e8e4da;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FAQ section */
.faq-section {
  background: var(--bg);
  padding: 70px 24px;
}
.faq-section .container { max-width: 860px; }
.faq-section .section-tag {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.faq-section h2 {
  color: var(--navy);
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 36px;
}
.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 22px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.faq-item h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* CTA band */
.cta-band {
  background: var(--gold);
  text-align: center;
  padding: 50px 24px;
}
.cta-band h2 { color: var(--navy); font-size: 1.6rem; margin-bottom: 18px; }
.cta-band .btn { background: var(--navy); color: #fff; }
.cta-band .btn:hover { background: var(--navy-light); }

/* Footer */
footer {
  background: var(--navy);
  color: var(--on-dark);
  text-align: center;
  padding: 40px 24px 30px;
  font-size: 0.85rem;
}
footer .foot-tagline {
  color: var(--gold-light);
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer .foot-name { color: #fff; font-weight: bold; margin-bottom: 6px; }
footer nav { margin-top: 16px; }
footer nav ul { justify-content: center; }
footer nav a { color: var(--on-dark); font-size: 0.85rem; }
footer nav a:hover { color: var(--gold-light); }

/* Founder page */
.founder-intro { background: #fff; padding: 70px 24px 20px; }
.founder-flex {
  display: flex;
  align-items: center;
  gap: 46px;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-photo-wrap { flex: none; }
.founder-photo {
  width: 230px;
  height: 230px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.founder-intro-text { color: var(--text); font-size: 1.1rem; }
.founder-intro-text p { margin: 0; }

.founder-chapter { background: #fff; padding: 60px 24px; }
.founder-chapter.alt { background: var(--bg); }
.founder-chapter-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-chapter-flex.reverse { flex-direction: row-reverse; }
.founder-chapter-text { flex: 1.3; color: var(--text); font-size: 1.02rem; }
.founder-chapter-text-solo { flex: none; max-width: 780px; margin: 0 auto; text-align: center; }
.founder-chapter-text p { margin-bottom: 14px; }
.founder-list { list-style: none; padding: 0; }
.founder-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.98rem;
}
.founder-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Photo frame (real photograph) */
.photo-frame {
  flex: 1;
  min-width: 220px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Why grid (differentiation points) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}
.why-grid-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(220,227,215,0.25);
  border-radius: 6px;
  padding: 22px 24px;
}
.why-grid-item h4 { color: var(--gold-light); font-size: 1.02rem; margin-bottom: 8px; }
.why-grid-item p { color: var(--on-dark); font-size: 0.94rem; margin: 0; }

/* Mission section */
.mission { background: var(--bg); text-align: center; }
.mission-inner {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.75;
}

/* Homepage founder feature */
.founder-feature { background: #fff; padding: 20px 24px 70px; }
.founder-feature-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 40px 46px;
}
.founder-feature-text { flex: 1.3; }
.founder-feature-text .eyebrow-small {
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.founder-feature-text h2 { color: var(--navy); font-size: 1.7rem; margin-bottom: 12px; }
.founder-feature-text p { color: var(--text); font-size: 1.02rem; margin-bottom: 16px; }
.founder-feature-photo { flex: none; }
.founder-feature-photo img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: block;
}

/* Homepage feature cards (Services / Approach / Why SKM) */
.feature-card {
  background: #fff;
  border: 1px solid #eee2;
  border-radius: 8px;
  padding: 32px 34px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}
.feature-card h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 8px; }
.feature-card > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 20px; }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.mini-tile {
  display: block;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: bold;
  transition: border-color 0.2s, transform 0.2s;
}
.mini-tile:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--navy); }
.mini-grid-5 { grid-template-columns: repeat(5, 1fr); }
.mini-grid-5 .mini-tile { font-size: 0.8rem; padding: 16px 10px; text-align: center; }
.mini-tile-icon-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mini-tile-icon { width: 30px; height: 30px; color: var(--gold); transition: color 0.2s; }
.mini-tile-icon-wrap:hover .mini-tile-icon { color: var(--navy); }
.why-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px;
  padding: 32px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.why-banner-text h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.why-banner-text p { color: var(--on-dark); font-size: 0.96rem; max-width: 560px; }
.why-banner-btn { background: var(--gold); color: var(--navy); border: none; white-space: nowrap; font-weight: bold; }
.why-banner-btn:hover { background: var(--gold-light); }
.two-col-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.two-col-cards .feature-card { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag-pill {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--text);
  font-size: 0.82rem;
  transition: border-color 0.2s, color 0.2s;
}
.tag-pill:hover { border-color: var(--gold); color: var(--gold); }

/* Get in touch modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,67,50,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 10px;
  max-width: 460px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-box h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 6px; }
.modal-box .modal-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.modal-privacy-note { color: var(--muted); font-size: 0.78rem; margin-top: -14px; margin-bottom: 18px; font-style: italic; line-height: 1.4; }
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.3rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.modal-close:hover { color: var(--gold); }
.modal-field { margin-bottom: 14px; }
.modal-field label { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 5px; font-weight: bold; }
.modal-field input, .modal-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
}
.modal-field textarea { resize: vertical; min-height: 70px; }
.modal-field input:focus, .modal-field textarea:focus { outline: 2px solid var(--gold-light); }
.modal-actions { margin-top: 22px; }
.modal-actions .btn { width: 100%; text-align: center; border: none; cursor: pointer; }
.modal-status { font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.modal-status p { margin-bottom: 10px; }
.modal-status p:first-child { color: var(--navy); }
.modal-skip {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}
.modal-skip:hover { color: var(--gold); }

@media (min-width: 721px) and (max-width: 900px) {
  .mini-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .why-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .nav-toggle { display: flex; }
  header nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    padding: 10px 24px 20px;
    gap: 4px;
    z-index: 200;
  }
  header nav ul.mobile-open { display: flex; }
  header nav li { width: 100%; }
  header nav a { display: block; padding: 12px 4px; }
  .hero h1 { font-size: 1.9rem; }
  .service-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-item:nth-last-child(2) { border-bottom: 1px solid var(--hair); }
  footer nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .founder-flex { flex-direction: column; text-align: center; }
  .founder-chapter-flex, .founder-chapter-flex.reverse { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .founder-feature-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-cards { grid-template-columns: 1fr; }
  .engagement-options { grid-template-columns: 1fr; gap: 20px; }
}
