:root {
  --navy: #0b1c2c;
  --navy-2: #123251;
  --gold: #c7a56a;
  --gold-soft: #e6d3ad;
  --ivory: #f6f2ea;
  --paper: #fdfcf9;
  --ink: #142231;
  --muted: #5f6d7b;
  --line: rgba(20, 34, 49, 0.12);
  --shadow: 0 16px 50px rgba(6, 18, 32, 0.1);
  --radius: 24px;
  --shell: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: linear-gradient(180deg, #faf8f3 0%, #f5efe4 100%);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; padding: 8px 12px; background: var(--navy); color: #fff; border-radius: 10px; z-index: 999; }
.shell { width: min(calc(100% - 32px), var(--shell)); margin: 0 auto; }
.section { padding: 68px 0; }
.section-head { display: grid; gap: 10px; margin-bottom: 26px; }
.section-index, .kicker {
  color: #8a704a;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.kicker { display: inline-flex; align-items: center; gap: 12px; }
.kicker span { width: 48px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { color: var(--ink); }
h1, h2, .card-title, .article-card h3, .service-card h3, .milestone-card h3 { font-family: var(--serif); }
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.utility-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 13px;
}
.utility-inner a { color: #fff; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,243,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-seal {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-seal b { font-family: var(--serif); font-size: 27px; line-height: 1; }
.brand-copy strong { display: block; font-size: 16px; line-height: 1.1; }
.brand-copy small { display: block; margin-top: 4px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
.site-nav a.active, .site-nav a:hover { color: var(--navy); }
.menu-button { display: none; border: 1px solid var(--line); background: #fff; border-radius: 14px; padding: 10px 12px; cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px 0; }
.menu-button em { display: none; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px; border-radius: 999px; text-decoration: none; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--navy); color: #fff; }
.button-gold { background: linear-gradient(135deg, var(--gold), #e6c68d); color: var(--navy); }
.button-light { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.hero {
  background: radial-gradient(circle at top right, rgba(199,165,106,.22), transparent 22%), linear-gradient(135deg, #091623 0%, #0f2740 55%, #163955 100%);
  color: #fff; padding: 72px 0 44px; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
  color: #fff;
  margin: 16px 0 16px;
}
.hero-copy h1 em { color: var(--gold-soft); font-style: normal; }
.hero-lead { color: rgba(255,255,255,.84); font-size: 18px; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-visual {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px; padding: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.2);
}
.portrait-card {
  display: grid; gap: 16px;
}
.portrait-frame {
  background: #fff; border-radius: 24px; padding: 16px; min-height: 420px; display: grid; place-items: center;
}
.portrait-frame img {
  width: 100%; max-width: 360px; height: auto; border-radius: 18px; box-shadow: 0 12px 30px rgba(20,34,49,.12);
}
.portrait-meta strong { display: block; font-size: 34px; color: #fff; font-family: var(--serif); line-height: 1; }
.portrait-meta span { display: block; color: rgba(255,255,255,.76); margin-top: 6px; }
.metric-band { margin-top: 22px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.metric-card {
  background: #fff; border: 1px solid rgba(20,34,49,.08); border-radius: 20px; padding: 16px; box-shadow: var(--shadow);
}
.metric-card strong { display: block; font-size: 34px; font-family: var(--serif); color: var(--navy); line-height: 1; }
.metric-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.profile-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 24px; }
.panel {
  background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: var(--shadow);
}
.panel p + p { margin-top: 14px; color: var(--muted); }
.panel h2 { font-size: clamp(34px, 4vw, 48px); line-height: 1; margin-bottom: 14px; }
.quick-facts { display: grid; gap: 14px; }
.fact-item { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(20,34,49,.08); }
.fact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-item strong { color: #8a704a; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.trajectory-wrap { position: relative; }
.trajectory-line {
  position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--gold), rgba(199,165,106,.18));
}
.trajectory-grid { display: grid; gap: 18px; position: relative; }
.milestone-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 86px 1fr 150px; gap: 18px; align-items: stretch; padding: 18px;
}
.milestone-year {
  position: relative; padding-left: 22px; color: #8a704a; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.milestone-year::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(199,165,106,.18);
}
.milestone-card h3 { font-size: 28px; line-height: 1.05; margin-bottom: 6px; }
.milestone-card p { color: var(--muted); }
.milestone-thumb {
  border-radius: 18px; overflow: hidden; background: #f2efe8; border: 1px solid rgba(20,34,49,.08);
  align-self: stretch; display: flex; align-items: center; justify-content: center;
}
.milestone-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px;
}
.photo-card {
  margin: 0; background: #fff; border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.photo-card button { border: 0; background: none; padding: 0; width: 100%; cursor: zoom-in; display: block; }
.photo-card img {
  width: 100%; height: auto; object-fit: contain; background: #f2efe8;
}
.photo-card figcaption { padding: 11px 12px 14px; font-size: 13px; color: var(--muted); }
.photo-note { color: var(--muted); font-size: 14px; margin-top: 14px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-points { display: grid; gap: 12px; margin-top: 18px; }
.contact-points a, .contact-points div {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px; text-decoration: none; box-shadow: var(--shadow);
}
.contact-points span { display: block; color: #8a704a; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; font-weight: 700; }
.contact-points strong { display: block; margin-top: 4px; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 700; margin-bottom: 14px; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(20,34,49,.16); background: #fff; border-radius: 14px; padding: 13px 14px;
}
textarea { min-height: 128px; resize: vertical; }
.check-option { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.form-note { color: var(--muted); font-size: 13px; margin-top: 12px; }
.page-hero {
  padding: 56px 0 30px;
  background: linear-gradient(135deg, #091623 0%, #0f2740 100%);
  color: #fff;
}
.page-shell { width: min(calc(100% - 32px), 950px); margin: 0 auto; }
.page-hero h1 { font-size: clamp(38px, 5vw, 64px); line-height: .96; color: #fff; margin-top: 12px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 66ch; }
.filters { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-button { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 700; color: var(--muted); }
.filter-button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.search-box { min-width: 240px; }
.journal-grid, .services-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.article-card, .service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: var(--shadow);
}
.article-card h3, .service-card h3 { font-size: 26px; line-height: 1.15; margin: 10px 0 12px; }
.article-card p, .service-card p { color: var(--muted); margin-bottom: 16px; }
.article-meta { display: flex; justify-content: space-between; gap: 10px; color: #8a704a; font-weight: 800; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.article-hero { padding: 54px 0 28px; background: linear-gradient(135deg, #091623 0%, #0f2740 100%); color: #fff; }
.article-shell { width: min(calc(100% - 32px), 900px); margin: 0 auto; }
.article-header h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin: 12px 0; line-height: .98; }
.article-header p, .back-link { color: rgba(255,255,255,.82); }
.back-link { text-decoration: none; }
.article-body-wrap { padding: 36px 0 56px; }
.article-body {
  width: min(calc(100% - 32px), 900px); margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: var(--shadow);
}
.article-body p + p { margin-top: 14px; }
.timeline-page-grid { display: grid; gap: 18px; }
.timeline-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden;
  display: grid; grid-template-columns: 140px 1fr 180px;
}
.timeline-card .year-block {
  background: linear-gradient(180deg, var(--navy), var(--navy-2)); color: #fff; display: flex; align-items: center; justify-content: center; padding: 24px; font-family: var(--serif); font-size: 34px;
}
.timeline-card .story-block { padding: 22px; }
.timeline-card .story-block h3 { font-size: 28px; margin-bottom: 8px; }
.timeline-card .story-block p { color: var(--muted); }
.timeline-card .visual-block { background: #f2efe8; }
.timeline-card .visual-block img { width: 100%; height: 100%; object-fit: cover; }
.site-footer { margin-top: 50px; background: var(--navy); color: rgba(255,255,255,.82); padding: 30px 0 24px; }
.footer-top, .footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-top { margin-bottom: 16px; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; color: rgba(255,255,255,.84); }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand p { color: rgba(255,255,255,.68); }
.quick-connect {
  position: fixed; right: 10px; bottom: 10px; z-index: 150; display: grid; gap: 8px;
}
.quick-connect a {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 112px;
  padding: 10px 12px; border-radius: 14px; text-decoration: none; color: #fff;
  background: rgba(11,28,44,.95); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 14px 28px rgba(8,20,32,.18);
}
.quick-connect small { display: block; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.quick-connect b { font-size: 13px; color: var(--gold-soft); }
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 180; background: rgba(4,11,19,.88); display: grid; place-items: center; padding: 18px;
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-panel { width: min(1000px, 100%); background: #0a1723; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.lightbox-image-wrap { background: #06111a; }
.lightbox-image-wrap img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 16px; color: #fff; }
.lightbox-meta p { color: rgba(255,255,255,.78); }
.lightbox-close { width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; }
@media (max-width: 1100px) {
  .hero-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
  .milestone-card { grid-template-columns: 86px 1fr; }
  .milestone-thumb { grid-column: 2; height: 180px; }
  .timeline-card { grid-template-columns: 120px 1fr; }
  .timeline-card .visual-block { grid-column: 2; height: 200px; }
}
@media (max-width: 900px) {
  .site-nav {
    position: fixed; top: 84px; right: 12px; left: 12px; display: none; flex-direction: column; align-items: flex-start; gap: 12px;
    background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .menu-button { display: inline-block; }
  .metric-band, .journal-grid, .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .utility-inner, .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .shell, .page-shell, .article-shell { width: min(calc(100% - 22px), var(--shell)); }
  .hero { padding-top: 52px; }
  .hero-copy h1 { font-size: 46px; }
  .hero-lead { font-size: 16px; }
  .portrait-frame { min-height: 320px; }
  .metric-band { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .panel, .article-card, .service-card, .contact-form, .article-body, .timeline-card .story-block { padding: 18px; }
  .gallery-grid { gap: 10px; }
  .photo-card figcaption { font-size: 12px; padding: 9px 10px 12px; }
  .field-row { grid-template-columns: 1fr; }
  .timeline-card { grid-template-columns: 1fr; }
  .timeline-card .year-block { font-size: 28px; padding: 18px; }
  .timeline-card .visual-block { grid-column: auto; height: auto; }
  .timeline-card .visual-block img { height: auto; object-fit: contain; }
  .journal-grid, .services-grid { grid-template-columns: 1fr; }
}

/* Core strengths: resilient cards with no label/text collision at zoom or tablet widths */
body { overflow-x: hidden; }
.profile-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
.profile-grid > * { min-width: 0; }
.strengths-panel { overflow: hidden; }
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.strength-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(20,34,49,.09);
  background: linear-gradient(145deg, #ffffff 0%, #faf7f0 100%);
}
.strength-number {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.strength-card strong {
  display: block;
  color: #8a704a;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.strength-card p {
  margin-top: 7px !important;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
/* Keep the contact controls unobtrusive and clear of content */
.quick-connect a {
  min-width: 94px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
}
.quick-connect small { font-size: 8px; }
@media (max-width: 1180px) {
  .quick-connect a {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  .quick-connect a span { display: none; }
  .quick-connect b { font-size: 16px; }
}
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .strength-card { padding: 14px; }
}
