:root {
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #f4f1eb;
  --soft-blue: #eef4f7;
  --gold: #c9a66b;
  --gold-dark: #9b7a3f;
  --navy: #172033;
  --navy-2: #222d44;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus { top: 12px; }
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,224,232,0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
.brand {
  text-decoration: none;
  letter-spacing: 0.12em;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
}
.brand-mark {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}
.brand-subtitle {
  margin-top: 5px;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.33em;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }
.section-pad { padding: 92px 0; }
.hero {
  background:
    radial-gradient(circle at 80% 15%, rgba(201,166,107,0.24), transparent 32%),
    linear-gradient(135deg, #fff, #f7f4ef 74%, #efe7da);
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  color: var(--gold-dark);
  font-size: 0.79rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow.on-dark { color: #e5c98c; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.lead {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: #303a4c;
  max-width: 760px;
}
.hero-copy p:not(.eyebrow):not(.lead) {
  max-width: 760px;
  color: #364154;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  font-family: Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.button-primary {
  background: var(--ink);
  color: #fff;
}
.button-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 1px solid rgba(23,32,51,0.2);
}
.profile-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 360px;
  justify-self: center;
}
.portrait-wrap {
  padding: 18px 18px 0;
  background: transparent;
  display: block;
}
.portrait {
  width: 86%;
  max-width: 290px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 22px;
}
.profile-content { padding: 28px; }
.profile-name {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.1;
}
.profile-tags {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 16px;
}
.alt-section { background: var(--soft-blue); }
.split-grid,
.two-col,
.quote-grid,
.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}
.body-copy p { color: #3a4557; font-size: 1.04rem; }
.check-list,
.bullet-card-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  position: relative;
  padding: 15px 16px 15px 48px;
  margin: 10px 0;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(217,224,232,0.8);
  border-radius: 18px;
}
.check-list li::before {
  content: "•";
  position: absolute;
  left: 20px;
  top: 14px;
  color: var(--gold-dark);
  font-size: 1.4rem;
  line-height: 1;
}
.compact-list li { padding-top: 13px; padding-bottom: 13px; }
.dark-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}
.dark-section p { color: #d7dee8; }
.bullet-card-list {
  display: grid;
  gap: 14px;
  margin: 0;
}
.bullet-card-list li {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 16px 18px 16px 46px;
  color: #f6f8fb;
}
.bullet-card-list li::before {
  content: "•";
  position: absolute;
  left: 22px;
  top: 15px;
  color: #e5c98c;
  font-size: 1.25rem;
}
.section-heading { max-width: 820px; }
.section-heading.centred {
  text-align: center;
  margin: 0 auto 44px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.area-card {
  min-height: 300px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}
.area-card-wide { grid-column: span 2; }
.area-number {
  display: inline-block;
  font-family: Arial, sans-serif;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.area-card p { color: var(--muted); }
blockquote {
  margin: 26px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,0.78);
  border-radius: 0 18px 18px 0;
  font-size: 1.26rem;
  line-height: 1.42;
}
.recognition-section { background: var(--soft); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
figure {
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(217,224,232,0.9);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(23,32,51,0.07);
}
figure blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 1.08rem;
}
figcaption {
  margin-top: 18px;
  color: var(--gold-dark);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-section {
  background: linear-gradient(135deg, #f7f4ef, #ffffff);
}
.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: 30px;
  padding: clamp(28px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow);
}
.contact-card p { color: #d7dee8; }
.contact-links {
  display: grid;
  gap: 12px;
  font-family: Arial, sans-serif;
}
.contact-links a {
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 999px;
  padding: 13px 16px;
}
.contact-links a:hover { background: rgba(255,255,255,0.14); }
.small-print {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}
.site-footer {
  background: #101725;
  color: #d7dee8;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}
.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-inner p { margin: 0; }
.footer-inner a { color: #fff; text-decoration: none; }

@media (max-width: 940px) {
  .nav { display: none; }
  .hero-grid,
  .split-grid,
  .two-col,
  .quote-grid,
  .approach-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .areas-grid,
  .quotes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .area-card-wide { grid-column: span 1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 66px 0; }
  .hero { padding-top: 36px; }
  .areas-grid,
  .quotes-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(2.55rem, 17vw, 4.6rem); }
  h2 { font-size: 2.25rem; }
  .area-card { min-height: auto; }
  .footer-inner { flex-direction: column; justify-content: center; }
}
