:root{
  --bg:#101112;
  --bg2:#131415;
  --panel:#161718;
  --text:#f3f0ea;
  --muted:#aaa59d;
  --gold:#c29f69;
  --line:rgba(243,240,234,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}
button{font:inherit}

.header{
  position:absolute;
  z-index:10;
  top:0;
  left:0;
  right:0;
  height:82px;
  padding:0 4.7vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.02);
}

.logo{
  color:var(--text);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:13px;
  font-weight:650;
}

nav{display:flex;gap:34px}
nav a{
  color:rgba(243,240,234,.82);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
}
nav a:hover{color:var(--gold)}

.menu-toggle{
  display:none;
  border:0;
  background:none;
  color:var(--text);
  font-size:19px;
}

.hero{
  min-height:650px;
  display:grid;
  grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--line);
}

.hero-copy{
  padding:132px 5vw 74px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.kicker,
.section-label{
  margin:0;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  line-height:1.6;
  font-weight:700;
}

h1{
  margin:22px 0 0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(64px,7vw,108px);
  line-height:.92;
  letter-spacing:-.052em;
  font-weight:500;
}

.short-rule,
.mini-rule{
  display:block;
  height:1px;
  background:var(--gold);
}

.short-rule{
  width:42px;
  margin:29px 0 28px;
}

.mini-rule{
  width:36px;
  margin:11px 0 25px;
}

.lead{
  max-width:590px;
  margin:0;
  color:rgba(243,240,234,.72);
  font-size:16px;
  line-height:1.68;
}

.location{
  margin:24px 0 0;
  color:var(--gold);
  font-size:12px;
}

.actions{
  margin-top:31px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.cta{
  min-height:48px;
  padding:0 17px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  border:1px solid rgba(243,240,234,.39);
  border-radius:2px;
  background:transparent;
  color:var(--text);
  text-decoration:none;
  cursor:pointer;
  font-size:12px;
  font-weight:600;
  transition:.15s ease;
}
.cta b{margin-left:7px;font-size:14px}
.cta:hover{transform:translateY(-2px);border-color:rgba(243,240,234,.7)}
.cta.primary{
  border-color:var(--gold);
  background:var(--gold);
  color:#111;
}
.li-mark{
  width:16px;height:16px;display:grid;place-items:center;
  border-radius:2px;background:#111;color:var(--gold);
  font-size:10px;font-weight:800;
}
.doc-mark{font-size:17px}

.hero-photo{
  min-height:650px;
  overflow:hidden;
  background:#ddd;
}
.hero-photo img{
  width:100%;height:100%;display:block;
  object-fit:cover;
  object-position:center 18%;
  filter:grayscale(1) contrast(1.02);
}

.section{
  padding:64px 4.8vw 42px;
  background:var(--bg);
}

.exp-list{
  margin-top:14px;
  border-top:1px solid var(--line);
}

.exp-row{
  padding:24px 0;
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:42px;
  border-bottom:1px solid var(--line);
}

.exp-title{
  display:grid;
  grid-template-columns:20px 1fr;
  gap:16px;
}
.dash{width:16px;height:1px;background:var(--gold);margin-top:11px}
.exp-title h2{
  margin:0;
  font-size:15px;
  font-weight:550;
  letter-spacing:-.01em;
}
.exp-title h2 small{font-size:11px;color:var(--muted);font-weight:400}
.exp-title p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:11px;
}
.exp-title p i{padding:0 8px;color:#6f6d69;font-style:normal}

.exp-copy{
  margin:0;
  color:rgba(243,240,234,.68);
  font-size:12px;
  line-height:1.75;
  max-width:630px;
}

.more{
  width:min(360px,100%);
  margin:26px auto 0;
}
.more summary{
  padding:13px 18px;
  border:1px solid rgba(243,240,234,.35);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:36px;
  cursor:pointer;
  font-size:11px;
}
.more summary::-webkit-details-marker{display:none}
.more-grid{
  margin-top:16px;
  padding:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  background:var(--panel);
  border:1px solid var(--line);
}
.more-grid div{display:grid;gap:4px}
.more-grid b{font-size:11px}
.more-grid span{color:var(--muted);font-size:10px}

.trio{
  padding:38px 4.8vw 45px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.trio-col{
  min-height:245px;
  padding-right:38px;
}
.trio-col + .trio-col{
  border-left:1px solid var(--line);
  padding-left:38px;
}
.about-text{
  max-width:430px;
  margin:0;
  color:rgba(243,240,234,.7);
  font-size:12px;
  line-height:1.8;
}
.trio ul{
  margin:0;
  padding:0;
  list-style:none;
  color:rgba(243,240,234,.74);
  font-size:11px;
  line-height:1.85;
}
.trio h3{
  margin:0 0 6px;
  font-size:15px;
  font-weight:540;
}
.school{margin:0 0 5px;color:var(--gold);font-size:12px}
.muted{margin:0;color:var(--muted);font-size:11px}

.contact-section{
  padding:64px 4.8vw 76px;
  background:var(--bg2);
  border-bottom:1px solid var(--line);
}
.contact-section h2{
  margin:14px 0 0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(58px,7vw,100px);
  line-height:.95;
  font-weight:500;
  letter-spacing:-.04em;
}
.contact-links{
  margin-top:34px;
  display:flex;
  gap:28px;
}
.contact-links a,
.contact-links button{
  border:0;
  border-bottom:1px solid rgba(243,240,234,.4);
  padding:0 0 7px;
  background:none;
  color:var(--text);
  text-decoration:none;
  cursor:pointer;
  font-size:12px;
  font-weight:650;
}

footer{
  min-height:62px;
  padding:0 4.8vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:rgba(243,240,234,.42);
  font-size:10px;
}
footer a{color:var(--gold);text-decoration:none}

@media(max-width:820px){
  .header{
    height:70px;
    padding:0 20px;
    background:rgba(16,17,18,.92);
  }
  .menu-toggle{display:block}
  nav{
    position:absolute;
    top:70px;
    right:14px;
    display:none;
    min-width:190px;
    padding:16px;
    flex-direction:column;
    gap:16px;
    background:#171819;
    border:1px solid var(--line);
  }
  nav.open{display:flex}
  .hero{
    grid-template-columns:1fr;
  }
  .hero-photo{
    min-height:390px;
    order:1;
    padding-top:70px;
  }
  .hero-copy{
    order:2;
    padding:48px 20px 58px;
  }
  h1{font-size:clamp(58px,18vw,90px)}
  .actions{display:grid;grid-template-columns:1fr}
  .cta{justify-content:center}
  .exp-row{grid-template-columns:1fr;gap:16px}
  .trio{grid-template-columns:1fr;padding:25px 20px}
  .trio-col{min-height:auto;padding:28px 0}
  .trio-col + .trio-col{
    border-left:0;
    border-top:1px solid var(--line);
    padding-left:0;
  }
  .section{padding:52px 20px 38px}
  .contact-section{padding:52px 20px 62px}
  footer{padding:20px;min-height:80px;flex-direction:column;align-items:flex-start;justify-content:center}
}

@media(max-width:430px){
  .hero-photo{min-height:360px}
  .lead{font-size:14px}
  .exp-copy{font-size:11px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{transition:none!important}
}
