:root {
  --cream: #F4ECD8;
  --cream-soft: #FAF5E8;
  --gold: #B89262;
  --gold-deep: #8C6A3E;
  --brown: #5A4530;
  --brown-dark: #3A2A1C;
  --charcoal: #2A2218;
  --rule: #D8C9A8;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Source Sans 3", "Helvetica Neue", -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow {
  max-width: 760px;
}

section {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  background: var(--cream);
  backdrop-filter: blur(6px);
  z-index: 100;
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown-dark);
}
.nav-brand img {
  height: 38px;
  width: auto;
}
.nav-brand-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--brown);
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.current {
  color: var(--brown-dark);
  border-bottom-color: var(--gold);
}

/* ---------- Hero (home page) ---------- */
.hero {
  padding: 120px 0 96px;
  text-align: center;
  border-top: none;
}
.hero-logo {
  width: 240px;
  height: auto;
  margin: 0 auto 48px;
  display: block;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 auto 28px;
  color: var(--brown-dark);
  max-width: 880px;
}
.hero .lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--brown);
}
.hero .cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-dark);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--brown-dark);
  transition: all 0.2s ease;
}
.hero .cta:hover {
  background: var(--brown-dark);
  color: var(--cream);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 96px 0 64px;
  border-top: none;
  text-align: left;
}
.page-hero .eyebrow {
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  color: var(--brown-dark);
  max-width: 820px;
}
.page-hero p.intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
  color: var(--brown);
  max-width: 720px;
  margin: 0;
}

/* ---------- Section headings ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 16px;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 56px;
  color: var(--brown-dark);
  max-width: 820px;
}
h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--brown-dark);
}

/* ---------- Narrative (front page body) ---------- */
.narrative h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
}
.narrative .block + .block {
  margin-top: 72px;
}
.narrative p {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--brown);
  margin: 0 0 16px;
}
.narrative p.link {
  margin-top: 24px;
  margin-bottom: 0;
}
.narrative p.link a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.narrative p.link a:hover {
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}

/* ---------- Callout (front page first-time CEOs block) ---------- */
.callout {
  background: var(--cream-soft);
  text-align: center;
}
.callout .eyebrow {
  margin-bottom: 14px;
}
.callout h2 {
  margin: 0 auto 20px;
  max-width: 720px;
  font-size: clamp(28px, 3.6vw, 38px);
}
.callout p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--brown);
  font-size: 17px;
  line-height: 1.65;
}
.callout .cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-dark);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--brown-dark);
  transition: all 0.2s ease;
}
.callout .cta:hover {
  background: var(--brown-dark);
  color: var(--cream);
}

/* ---------- Closing CTA (front page) ---------- */
.closing-cta {
  text-align: center;
}
.closing-cta h2 {
  margin: 0 auto 24px;
  max-width: none;
}
.closing-cta p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--brown);
}
.closing-cta .cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-dark);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--brown-dark);
  transition: all 0.2s ease;
}
.closing-cta .cta:hover {
  background: var(--brown-dark);
  color: var(--cream);
}

/* ---------- Approach (three pillars) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.pillar p {
  margin: 0 0 16px;
  color: var(--brown);
}
.pillar p.note {
  font-style: italic;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 17px;
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service:last-child { border-bottom: none; }
.service-meta {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.service h3 { margin-bottom: 16px; }
.service p {
  margin: 0 0 16px;
  color: var(--brown);
}
.service ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.service ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--brown);
  border-top: 1px solid var(--rule);
}
.service ul li:last-child { border-bottom: 1px solid var(--rule); }
.service ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.person-aside {
  padding-top: 16px;
}
.person-aside .role {
  margin-top: 8px;
}
.person-mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold-deep);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  margin: 0 0 24px;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Leadership page (Ben profile layout) ---------- */
.team-leadership {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.person-card {
  text-align: center;
}
.person-photo-large {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 24px;
  object-fit: cover;
  object-position: center top;
}
.person-card h3 {
  font-size: 30px;
  margin: 0 0 12px;
}
.linkedin-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  font-weight: 600;
  display: inline-block;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.linkedin-link:hover {
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}
.person-text {
  display: grid;
  gap: 48px;
}
.role-block .role {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 16px;
}
.role-block p {
  color: var(--brown);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.role-block p:last-child {
  margin-bottom: 0;
}
.person h3 { font-size: 22px; margin-bottom: 4px; }
.person .role {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.person p {
  margin: 0;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.55;
}

/* ---------- Contact ---------- */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-content p {
  color: var(--brown);
  margin: 0 0 16px;
}
.contact-email {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--brown-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-email:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}
.contact-meta {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  background: var(--cream-soft);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { height: 32px; }
.footer-brand-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}
.footer-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.compliance {
  max-width: 760px;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--brown);
  opacity: 0.75;
  line-height: 1.5;
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; }
  .pillars { grid-template-columns: 1fr; gap: 40px; }
  .service { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .team { grid-template-columns: 1fr; gap: 40px; }
  .team-leadership { grid-template-columns: 1fr; gap: 48px; }
  .contact-content { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .page-hero { padding: 64px 0 40px; }
  .narrative .block + .block { margin-top: 56px; }
}
@media (max-width: 540px) {
  .nav-brand-text { display: none; }
  .container { padding: 0 24px; }
  .nav { padding: 14px 24px; }
}
