/* Kriton Advisors — shared styles for interior pages.
   Tokens mirror the homepage's inline styles; keep the two in sync. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:  #0d2040;
  --navy2: #163254;
  --gold:  #c8a84b;
  --gold2: #e6c97a;
  --mid:   #2d5382;
  --light: #f4f7fb;
  --grey:  #64748b;
  --border:#dde4ef;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(13,32,64,.10);
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1c2b3a;
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── Navigation ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(13,32,64,.25);
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.site-nav .nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.site-nav .nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a[aria-current="page"] { color: var(--gold2); }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 600;
  transition: all .2s;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); }
.btn-outline-navy { border: 1px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── Page hero band ── */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.breadcrumbs {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255,255,255,.75); }
.breadcrumbs a:hover { color: var(--gold2); }
.breadcrumbs .sep { margin: 0 8px; color: rgba(255,255,255,.35); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 820px;
}
.page-hero .lede {
  margin-top: 18px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 640px;
}

/* ── Content sections ── */
.page-section { padding: 64px 0; }
.page-section.alt { background: var(--light); }
.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.page-section p { color: #3c4c60; margin-bottom: 16px; max-width: 72ch; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Cards (services hub) ── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.hub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.hub-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.hub-card p { font-size: .95rem; }
.hub-card ul {
  list-style: none;
  margin-top: 14px;
}
.hub-card ul li {
  font-size: .9rem;
  color: var(--grey);
  padding: 4px 0 4px 20px;
  position: relative;
}
.hub-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── About page ── */
.headshot-frame img { border-radius: 12px; height: auto; }
.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.cred-item {
  background: var(--light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
}
.cred-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}
.cred-value { font-size: .95rem; font-weight: 600; color: var(--navy); margin-top: 2px; }

/* ── Contact page ── */
address {
  font-style: normal;
  line-height: 2;
  font-size: 1rem;
  color: #3c4c60;
}
address a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 48px 0 32px;
  margin-top: 24px;
}
.site-footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-footer nav a { font-size: .88rem; color: rgba(255,255,255,.6); }
.site-footer nav a:hover { color: rgba(255,255,255,.95); }
.site-footer .copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Responsive ── */
@media (max-width: 820px) {
  .content-grid, .card-grid, .credentials { grid-template-columns: 1fr; }
  .site-nav .nav-links { display: none; }
  .page-hero { padding: 48px 0 40px; }
  .page-section { padding: 48px 0; }
}
