@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Montserrat:wght@500;600;700&display=swap');

:root {
  --ink: #15171a;
  --charcoal: #20242b;
  --bg: #f5f3ef;
  --paper: #ffffff;
  --grey: #5c616b;
  --line: #e4e0d8;
  --taupe: #b7a890;
  --blue: #23456e;
  --burgundy: #7a2233;
  --gold: #c39a5b;
  --gold-bright: #d8b16e;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 18px;
}
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ===== Header ===== */
header.site {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 10;
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px;
}
.brand { color: #fff; }
.brand .logo { height: 75px; width: auto; display: block; }
.brand .name {
  font-family: var(--display);
  font-size: 24px; letter-spacing: 3px; font-weight: 800; text-transform: uppercase;
}
.brand .tagline {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--taupe); margin-top: 3px;
}
nav.site ul {
  list-style: none; display: flex; gap: 30px;
  font-family: var(--display);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
nav.site a { color: #d7d4cc; transition: color .15s ease; }
nav.site a:hover, nav.site a.active { color: var(--gold-bright); text-decoration: none; }

/* ===== Profile hero ===== */
.profile-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: stretch;
  min-height: 460px;
}
.profile-id {
  padding: 72px 0 72px 0;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1140px;
}
.profile-id-inner {
  padding-left: max(32px, calc((100vw - 1140px) / 2 + 32px));
  padding-right: 48px;
}
.profile-eyebrow {
  font-family: var(--display);
  font-size: 12px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  border-left: 3px solid var(--gold); padding-left: 14px;
}
.profile-id h1 {
  font-family: var(--display);
  font-size: 76px; line-height: 0.95; letter-spacing: -2.5px; font-weight: 900;
  margin-bottom: 18px;
}
.profile-title {
  font-family: var(--display);
  font-size: 17px; font-weight: 600; letter-spacing: 0.5px;
  color: #d9d6ce; text-transform: none;
}
.profile-contact {
  margin-top: 26px;
  font-family: var(--sans); font-size: 15px; color: #b9bcc2;
}
.profile-contact a { color: var(--gold-bright); }
.profile-photo {
  position: relative;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  animation: swoopIn 1.05s cubic-bezier(.18,.7,.2,1) both;
}
.profile-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
@keyframes swoopIn {
  from { transform: translateX(14%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ===== Section / bio ===== */
section { padding: 80px 0; }
.kicker {
  font-family: var(--display);
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 14px;
}
h2 {
  font-family: var(--display);
  font-size: 38px; line-height: 1.0; letter-spacing: -1.2px; color: var(--ink); font-weight: 800;
}
.rule { width: 72px; height: 4px; background: var(--gold); margin: 18px 0 30px; border-radius: 2px; }
p { margin-bottom: 18px; }
.lead { font-size: 22px; color: var(--ink); max-width: 760px; line-height: 1.5; }

.two-col { display: grid; grid-template-columns: 1.65fr 1fr; gap: 56px; align-items: start; }

/* ===== Sidebar ===== */
.sidebar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 30px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 15px;
}
.sidebar h4 {
  font-family: var(--display);
  color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.sidebar ul { list-style: none; }
.sidebar li { padding: 8px 0; border-bottom: 1px solid var(--line); line-height: 1.5; }
.sidebar li:last-child { border-bottom: none; }

/* ===== Credentials band ===== */
.creds-band {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 3px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 56px;
}
.cred-group h4 {
  font-family: var(--display);
  color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.cred-group ul { list-style: none; }
.cred-group li {
  font-size: 16px; line-height: 1.5; color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.cred-group li:last-child { border-bottom: none; }

/* ===== Footer ===== */
footer.site {
  background: var(--ink); color: #bcbfc6;
  font-family: var(--sans); font-size: 14px;
  padding: 56px 0 40px; border-top: 3px solid var(--gold);
}
.footer-grid { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-logo { height: 58px; width: auto; }
.footer-brand a { color: var(--gold-bright); font-size: 15px; }
.footer-offices { display: flex; gap: 30px; flex-wrap: wrap; }
.office { width: 152px; }
.office img { width: 100%; height: 84px; object-fit: cover; border-radius: 3px; border-bottom: 2px solid var(--gold); margin-bottom: 10px; display: block; }
.office strong { display: block; font-family: var(--display); color: #fff; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; margin-bottom: 5px; }
.office span { color: #9aa0a8; font-size: 13px; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-copy { font-family: var(--display); letter-spacing: 1px; color: #9aa0a8; font-size: 13px; }
.disclaimer { font-size: 12px; color: #84888f; max-width: 660px; line-height: 1.6; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .profile-hero { grid-template-columns: 1fr; min-height: 0; }
  .profile-photo { clip-path: none; height: 380px; animation: none; order: -1; }
  .profile-photo img { object-position: center top; }
  .profile-id { padding: 44px 0; }
  .profile-id-inner { padding: 0 32px; }
  .profile-id h1 { font-size: 50px; letter-spacing: -1.5px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .creds-band { grid-template-columns: 1fr; gap: 30px; }
  h2 { font-size: 30px; }
  .footer-grid { flex-direction: column; gap: 32px; }
  .brand .logo { height: 65px; }
  header.site .container { flex-direction: column; gap: 16px; text-align: center; }
  nav.site ul { flex-wrap: wrap; justify-content: center; gap: 18px; }
}
