:root {
  --ink: #0b1521;
  --ink-2: #152333;
  --muted: #617082;
  --muted-2: #8793a0;
  --paper: #fffaf3;
  --paper-2: #f4eee4;
  --line: rgba(19, 36, 50, .12);
  --brand: #173e3a;
  --brand-2: #0d2c28;
  --accent: #d2a365;
  --accent-2: #b87b42;
  --white: #ffffff;
  --shadow: 0 26px 90px rgba(11, 21, 33, .14);
  --shadow-small: 0 16px 40px rgba(11, 21, 33, .09);
  --radius: 28px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 85% -10%, rgba(210, 163, 101, .26), transparent 34rem),
    radial-gradient(circle at 10% 5%, rgba(23, 62, 58, .12), transparent 30rem),
    linear-gradient(180deg, #fffaf3 0%, #fff 36rem);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
img { max-width: 100%; display: block; }
a { color: var(--brand); }
.skip-link { position: absolute; left: -999px; top: 1rem; background: var(--ink); color: white; padding: .7rem 1rem; border-radius: 999px; z-index: 20; }
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); text-decoration: none; font-weight: 820; letter-spacing: -.03em; }
.brand-mark { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 15px; background: linear-gradient(135deg, var(--brand), var(--ink)); color: var(--paper); font-weight: 920; letter-spacing: -.08em; box-shadow: 0 14px 36px rgba(23,62,58,.18); }
.brand-text small { display: block; color: var(--muted); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .62rem; margin-top: -.2rem; }
.site-nav { display: flex; align-items: center; gap: .35rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); padding: .25rem; box-shadow: 0 10px 30px rgba(11,21,33,.04); }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 760; padding: .55rem .85rem; border-radius: 999px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--brand); background: white; }
.nav-toggle { display: none; }
main { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem 5rem; }
.hero { min-height: 76vh; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 2rem; align-items: center; padding: 4.6rem 0 5rem; }
.eyebrow { margin: 0; color: var(--accent-2); font-size: .78rem; text-transform: uppercase; font-weight: 880; letter-spacing: .18em; }
h1, h2, h3 { text-wrap: balance; }
.hero h1, .page-hero h1 { font-size: clamp(3rem, 7vw, 6.45rem); line-height: .88; letter-spacing: -.085em; margin: .55rem 0 1.3rem; }
.page-hero { padding: 5.4rem 0 3.2rem; }
.lead { max-width: 760px; font-size: clamp(1.13rem, 2vw, 1.38rem); color: var(--muted); margin: 0 0 2rem; }
.lead.narrow { max-width: 790px; }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.button-row.vertical { flex-direction: column; align-items: stretch; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; min-height: 50px; padding: .82rem 1.18rem; border-radius: 999px; font-weight: 860; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--brand), var(--ink)); color: var(--paper); box-shadow: 0 18px 42px rgba(23,62,58,.20); }
.button.secondary { background: rgba(255,255,255,.78); color: var(--brand); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(11,21,33,.05); }
.hero-visual { position: relative; align-self: stretch; min-height: 520px; }
.hero-visual::before { content: ""; position: absolute; inset: 32px 28px 22px 28px; border-radius: 40px; background: linear-gradient(135deg, rgba(23,62,58,.16), rgba(210,163,101,.14)); filter: blur(8px); transform: rotate(-2deg); }
.visual-card { position: absolute; inset: 0; padding: 1.55rem; border: 1px solid rgba(255,255,255,.55); border-radius: 36px; background: linear-gradient(160deg, rgba(255,255,255,.88), rgba(255,250,243,.68)); box-shadow: var(--shadow); overflow: hidden; }
.visual-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: -120px; border-radius: 999px; background: radial-gradient(circle, rgba(210,163,101,.45), transparent 70%); }
.visual-top { position: relative; display: flex; justify-content: space-between; align-items: start; gap: 1rem; z-index: 1; }
.logo-tile { width: 102px; height: 102px; border-radius: 30px; background: linear-gradient(135deg, var(--brand), var(--ink)); color: var(--paper); display: grid; place-items: center; font-size: 2.5rem; font-weight: 950; letter-spacing: -.08em; box-shadow: 0 20px 50px rgba(11,21,33,.2); }
.status-pill { border: 1px solid var(--line); background: rgba(255,255,255,.7); color: var(--brand); border-radius: 999px; padding: .52rem .75rem; font-weight: 820; font-size: .82rem; }
.visual-main { position: relative; z-index: 1; margin-top: 5.2rem; }
.visual-main h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1; letter-spacing: -.065em; margin: 0 0 .8rem; }
.visual-main p { color: var(--muted); margin: 0; font-size: 1.02rem; }
.matrix { position: relative; z-index: 1; margin-top: 2rem; display: grid; gap: .7rem; }
.matrix-row { display: grid; grid-template-columns: 120px 1fr; gap: .8rem; align-items: center; padding: .78rem; border-radius: 18px; background: rgba(255,255,255,.58); border: 1px solid var(--line); }
.matrix-row span:first-child { color: var(--muted); font-size: .82rem; font-weight: 780; }
.bar { height: 10px; border-radius: 999px; background: rgba(23,62,58,.11); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.trust-line { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; color: var(--muted); font-size: .95rem; }
.trust-line span { padding: .45rem .65rem; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px; }
.section { padding: 4.4rem 0; }
.soft-panel { padding: 3rem; background: linear-gradient(180deg, rgba(244,238,228,.96), rgba(255,250,243,.86)); border-radius: calc(var(--radius) + 12px); border: 1px solid var(--line); box-shadow: 0 20px 70px rgba(11,21,33,.06); }
.section h2 { font-size: clamp(2.2rem, 4.3vw, 3.85rem); line-height: .96; letter-spacing: -.072em; margin: .5rem 0 1rem; }
.section-intro { max-width: 790px; color: var(--muted); font-size: 1.12rem; }
.grid { display: grid; gap: 1rem; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .mini-card, .contact-card, .contact-details { background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.card, .mini-card { padding: 1.45rem; }
.card { transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-small); }
.card h3, .mini-card h3, .large-card h2 { margin: 0 0 .65rem; line-height: 1.08; letter-spacing: -.045em; }
.card p, .mini-card p { color: var(--muted); margin: 0; }
.card::before { content: ""; display: block; width: 38px; height: 4px; background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius: 999px; margin-bottom: 1rem; }
.large-card { padding: 1.7rem; }
.large-card p { color: var(--muted); }
ul { padding-left: 1.2rem; color: var(--muted); }
li + li { margin-top: .35rem; }
.split { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); gap: 2rem; align-items: start; }
.stack p { margin-top: 0; color: var(--muted); font-size: 1.08rem; }
.proof-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.proof-strip div { padding: 1.55rem; background: linear-gradient(135deg, var(--ink), var(--brand-2)); color: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-small); position: relative; overflow: hidden; }
.proof-strip div::after { content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 999px; background: rgba(210,163,101,.15); }
.proof-number { display: block; font-size: 1.9rem; font-weight: 940; letter-spacing: -.06em; }
.proof-label { display: block; color: rgba(255,250,243,.72); }
.cta { margin-top: 2rem; padding: 3.2rem; background: radial-gradient(circle at 90% 0, rgba(210,163,101,.28), transparent 42%), linear-gradient(135deg, var(--brand), var(--ink)); color: var(--paper); border-radius: calc(var(--radius) + 12px); box-shadow: var(--shadow); }
.cta h2 { color: var(--paper); max-width: 900px; }
.cta p { color: rgba(255,250,243,.78); max-width: 740px; font-size: 1.1rem; }
.cta .button.primary { background: var(--paper); color: var(--brand); }
.about-hero { align-items: center; }
.portrait-placeholder { min-height: 390px; border-radius: calc(var(--radius) + 12px); border: 1px solid rgba(255,255,255,.32); background: radial-gradient(circle at 80% 8%, rgba(210,163,101,.34), transparent 32%), linear-gradient(135deg, var(--brand), var(--ink)); color: var(--paper); display: grid; place-items: center; text-align: center; box-shadow: var(--shadow); }
.portrait-placeholder span { font-size: 4.2rem; font-weight: 950; letter-spacing: -.09em; display: block; }
.portrait-placeholder small { color: rgba(255,250,243,.7); }
.contact-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1rem; align-items: stretch; }
.contact-card, .contact-details { padding: 1.7rem; }
.contact-card h2, .contact-details h2 { margin-top: 0; letter-spacing: -.05em; line-height: 1.08; }
.small-note { font-size: .92rem; color: var(--muted); }
.check-list { list-style: none; padding: 0; }
.check-list li { padding-left: 1.75rem; position: relative; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 940; }
.narrow-page { max-width: 780px; }
.prose h2 { font-size: 1.45rem; margin-top: 2rem; }
.prose p { color: var(--muted); }
.site-footer { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem 3rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); border-top: 1px solid var(--line); }
.site-footer p { margin: 0; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--brand); }
.not-found { min-height: 100vh; display: grid; place-content: center; text-align: center; padding: 1.5rem; }
.not-found h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.06em; margin-bottom: .2rem; }

/* Profile photography */
.photo-tile { padding: 0; overflow: hidden; background: var(--ink); }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; object-position: 34% 42%; display: block; }
.portrait-photo {
  min-height: 430px;
  margin: 0;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid rgba(255,255,255,.56);
  background: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.portrait-photo img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: 34% 45%; display: block; }
.portrait-photo::after { content: ""; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(to top, rgba(11,21,33,.62), transparent); pointer-events: none; }
.portrait-photo figcaption { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1rem; z-index: 1; margin: 0; color: var(--paper); font-weight: 760; text-shadow: 0 2px 18px rgba(0,0,0,.32); }

/* Contact page refinement */
.contact-panel { margin-bottom: 2.5rem; }
.contact-card, .contact-details { position: relative; overflow: hidden; }
.contact-card::before, .contact-details::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.contact-card p, .contact-details p { color: var(--muted); }
.contact-card .button.primary { justify-content: center; word-break: break-word; }
.check-list li + li { margin-top: .85rem; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .brand-text { max-width: 190px; line-height: 1.1; }
  .nav-toggle { display: inline-flex; border: 1px solid var(--line); background: rgba(255,255,255,.86); border-radius: 999px; padding: .65rem .9rem; color: var(--brand); font-weight: 850; }
  .site-nav { display: none; position: absolute; top: 72px; left: 1.25rem; right: 1.25rem; background: white; border: 1px solid var(--line); border-radius: 22px; padding: .8rem; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; z-index: 20; }
  .site-nav.open { display: flex; }
  .hero, .split, .contact-panel, .grid.two { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 2.6rem 0 3.3rem; }
  .hero-visual { min-height: 480px; }
  .grid.three, .proof-strip { grid-template-columns: 1fr; }
  .soft-panel, .cta { padding: 1.6rem; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 560px) {
  main, .site-header, .site-footer { padding-left: 1rem; padding-right: 1rem; }
  .hero h1, .page-hero h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero-visual { min-height: 430px; }
  .visual-main { margin-top: 3.6rem; }
  .matrix-row { grid-template-columns: 92px 1fr; }
  .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .card { transition: none; }
  .button:hover, .card:hover { transform: none; }
}
