:root {
  --black: #111110;
  --white: #fafaf8;
  --gray-50: #f7f7f5;
  --gray-100: #f0f0ed;
  --gray-200: #e3e3de;
  --gray-400: #a8a8a0;
  --gray-600: #6b6b64;
  --gray-800: #2d2d2a;
  --gold: #b8862a;
  --gold-bg: #fdf6e8;
  --gold-border: #e8d4a0;
  --blue: #1c4ed8;
  --blue-bg: #eff4ff;
  --green: #16803a;
  --green-bg: #f0fdf4;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

a { color: inherit; }
nav {
  position: fixed; inset: 0 0 auto; z-index: 10;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; border-bottom: 1px solid var(--gray-200);
  background: rgba(250,250,248,.9); backdrop-filter: blur(16px);
}
.nav-logo { font-weight: 600; font-size: .95rem; text-decoration: none; }
.nav-links { list-style: none; display: flex; align-items: center; gap: .25rem; }
.nav-links a { display: block; padding: .4rem .85rem; color: var(--gray-600); font-size: .82rem; font-weight: 500; text-decoration: none; border-radius: 100px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--black); background: var(--gray-100); }
.nav-links .nav-cta { margin-left: .5rem; color: var(--white); background: var(--black); }
.nav-links .nav-cta:hover { color: var(--white); background: var(--gray-800); }

.shell { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 5rem; padding: 7rem 2rem 4rem; }
.hero.single { grid-template-columns: minmax(0, 1fr); max-width: 870px; padding-top: 9rem; padding-bottom: 5.5rem; }
.hero h1, .section-title, .choice-card h2, .statement h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; letter-spacing: -.025em; }
.hero h1 { max-width: 650px; margin-bottom: 1.35rem; font-size: clamp(3rem, 5.5vw, 4.55rem); line-height: 1.04; }
.hero-sub { max-width: 540px; margin-bottom: 2rem; color: var(--gray-600); font-size: 1rem; line-height: 1.8; }
.hero-sub strong { color: var(--black); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .72rem 1.35rem; border: 1px solid transparent; border-radius: 100px; font-size: .86rem; font-weight: 600; text-decoration: none; transition: transform .16s, background .16s, border-color .16s; }
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-800); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { filter: brightness(.95); }
.btn-ghost { border-color: var(--gray-200); background: transparent; color: var(--black); }
.btn-ghost:hover { border-color: var(--gray-400); }

.profile-card { display: flex; align-items: center; gap: 1.3rem; padding: 1.55rem; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); }
.profile-photo { flex: 0 0 auto; width: 78px; height: 78px; border: 3px solid var(--gray-200); border-radius: 50%; object-fit: cover; }
.profile-card h2 { margin-bottom: .18rem; font-size: 1rem; }
.profile-card p { color: var(--gray-600); font-size: .82rem; line-height: 1.55; }
.profile-status { display: inline-flex; align-items: center; gap: .4rem; margin-top: .5rem; color: var(--green); font-size: .72rem; font-weight: 600; }
.profile-status::before { width: 6px; height: 6px; border-radius: 50%; background: var(--green); content: ""; }
.profile-details { display: grid; gap: .55rem; margin-top: 1.25rem; }
.detail-line { display: flex; gap: .65rem; align-items: center; padding: .75rem .9rem; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--gray-50); color: var(--gray-600); font-size: .78rem; }
.detail-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.2rem; }
.choice-card { display: flex; flex-direction: column; min-height: 310px; padding: 2rem; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.choice-card:hover { transform: translateY(-3px); border-color: var(--gray-400); box-shadow: 0 15px 32px rgba(0,0,0,.06); }
.choice-mark { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 2rem; border-radius: 50%; background: var(--gold-bg); color: var(--gold); font-size: 1.4rem; }
.choice-card h2 { margin-bottom: .7rem; font-size: 1.75rem; line-height: 1.15; }
.choice-card p { color: var(--gray-600); font-size: .84rem; line-height: 1.7; }
.choice-link { margin-top: auto; padding-top: 1.7rem; color: var(--gold); font-size: .84rem; font-weight: 700; }

section { padding: 5.6rem 0; }
.band { border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.section-head { max-width: 620px; margin-bottom: 2.8rem; }
.section-title { margin-bottom: .75rem; font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.1; }
.section-sub { color: var(--gray-600); font-size: .95rem; line-height: 1.8; }
.about-grid, .statement { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.copy p { margin-bottom: 1rem; color: var(--gray-600); font-size: .94rem; line-height: 1.82; }
.copy strong { color: var(--black); }
.skill-list { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; }
.skill-item { padding: 1.1rem; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); }
.skill-item h3 { margin-bottom: .35rem; font-size: .85rem; }
.skill-item p { color: var(--gray-600); font-size: .76rem; line-height: 1.6; }
.statement { padding: 3rem; border-radius: var(--radius-lg); background: var(--black); color: var(--white); }
.statement h2 { margin-bottom: .8rem; font-size: 2.1rem; line-height: 1.14; }
.statement p { color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.8; }
.statement-list { display: grid; align-content: center; gap: .75rem; list-style: none; }
.statement-list li { color: rgba(255,255,255,.78); font-size: .84rem; }
.statement-list li::before { margin-right: .6rem; color: var(--gold); content: "•"; }

.page-hero { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 4rem; padding-top: 9.2rem; padding-bottom: 4rem; }
.page-hero h1 { font-size: clamp(2.9rem, 5vw, 4.2rem); }
.page-hero .hero-sub { margin-bottom: 1.6rem; }
.page-side { padding: 1.8rem; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--gray-50); }
.page-side h2 { margin-bottom: .85rem; font-size: .96rem; }
.page-side ul { display: grid; gap: .8rem; list-style: none; }
.page-side li { color: var(--gray-600); font-size: .82rem; line-height: 1.55; }
.page-side li::before { margin-right: .6rem; color: var(--gold); content: "•"; }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.process-item { padding: 1.4rem; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); }
.process-number { display: block; margin-bottom: 1rem; color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.process-item h3 { margin-bottom: .4rem; font-size: .9rem; }
.process-item p { color: var(--gray-600); font-size: .78rem; line-height: 1.6; }
.markets { display: flex; flex-wrap: wrap; gap: .55rem; }
.market { padding: .42rem .8rem; border: 1px solid var(--gold-border); border-radius: 100px; background: var(--gold-bg); color: #876119; font-size: .75rem; font-weight: 600; }
.evidence-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.3rem; }
.evidence-image { min-height: 310px; overflow: hidden; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--gray-50); }
.evidence-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.evidence-copy { padding: 2rem; border-radius: var(--radius-lg); background: var(--gray-50); }
.evidence-copy h3 { margin-bottom: .8rem; font-family: "DM Serif Display", Georgia, serif; font-size: 1.75rem; font-weight: 400; line-height: 1.12; }
.evidence-copy p { margin-bottom: 1rem; color: var(--gray-600); font-size: .85rem; line-height: 1.75; }
.evidence-copy ul { display: grid; gap: .6rem; list-style: none; }
.evidence-copy li { color: var(--gray-600); font-size: .78rem; }
.evidence-copy li::before { margin-right: .5rem; color: var(--gold); content: "•"; }
.documents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.document { padding: 1.45rem; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); }
.document h3 { margin-bottom: .45rem; font-size: .9rem; }
.document p { color: var(--gray-600); font-size: .78rem; line-height: 1.6; }
.document a { display: inline-block; margin-top: 1rem; color: var(--black); font-size: .78rem; font-weight: 700; text-decoration: none; }
.document a:hover { color: var(--gold); }
.contact-box { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--gray-50); }
.contact-box h2 { margin-bottom: .35rem; font-family: "DM Serif Display", Georgia, serif; font-size: 1.65rem; font-weight: 400; }
.contact-box p { color: var(--gray-600); font-size: .84rem; }

footer { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 2rem; border-top: 1px solid var(--gray-200); color: var(--gray-400); font-size: .76rem; }
footer a { text-decoration: none; }
footer a:hover { color: var(--black); }

@media (max-width: 900px) {
  nav { padding: 0 1.25rem; }
  .nav-links a { padding: .4rem .55rem; }
  .hero, .page-hero, .about-grid, .statement, .evidence-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: auto; padding-top: 7.5rem; }
  .page-hero { padding-top: 7.5rem; }
  .process, .documents { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  nav { height: auto; min-height: 60px; gap: .6rem; padding: .7rem 1rem; }
  .nav-logo { white-space: nowrap; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; gap: .1rem; }
  .nav-links a { padding: .28rem .4rem; font-size: .7rem; }
  .nav-links .nav-cta { margin-left: 0; }
  .shell, .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero, .page-hero { padding-top: 8.2rem; }
  .choice-grid, .skill-list, .process, .documents { grid-template-columns: 1fr; }
  .choice-card { min-height: 245px; }
  .profile-card, .contact-box { flex-direction: column; align-items: flex-start; }
  section { padding: 4rem 0; }
  .statement { padding: 2rem; }
  footer { flex-direction: column; padding: 1.25rem; }
}
